{"info":{"_postman_id":"9455541d-0ac5-245d-9daa-ed3dc6fc7323","name":"Cezanne HR API","description":"<html><head></head><body><p>The Cezanne HR API (Application Programming Interface) has been created to allow integration with other products and services, along with enabling clients and third parties to integrate data with their own internal applications or create new ones.</p>\n<h4>How has the API been developed?</h4>\n\n<p>The API has been developed based on the Open Data Protocol (oData), which is built on web technologies such as HTTP and popular methodologies such as REST (Representational State Transfer). The API can return data either in XML (Extensible Markup Language) or JSON (JavaScript Object Notation).</p>\n<p>Access to the API can also be restricted to specific users, with access to data matching the main application. For example, if Joe Bloggs can only see people in the UK through the main application, the same restrictions will apply when using an application via the API.</p>\n<h1 id=\"authentication\">Authentication</h1>\n\n<p>The Cezanne API uses the oAuth 2.0 protocol to manage authentication and authorisation.</p>\n<p>As HR data can be confidential, the API is secured and you must request an access token before being able to retrieve and / or modify any data.</p>\n<p><strong>1. Generate the Client ID and Client Secret within Cezanne.</strong></p>\n<ul>\n<li><p>Navigate to: <strong>Administration</strong> &gt;&gt; <strong>Security Settings</strong> &gt;&gt; <strong>Authorised Applications</strong></p>\n</li>\n<li><p>Add a new API application and choose the scopes you require. For more information, see: <a href=\"https://knowledge-base.cezannehr.com/15000057470\">Add / Enable API Access (Generate Client ID and Secret)</a>.</p>\n</li>\n</ul>\n<p><b>2. Generate an Access Token from the Cezanne Authorisation Server.</b><br>- In order to access data, you must request an access token. A single access token can be granted different scopes to access the API. A scope controls the set of resources and operations that an access token permits. During the access-token request, your application sends one or more values in the scope parameter.<br>- Using the application details, you can request an access token using a browser redirect. The request requires an<br>authentication step where the user logs in with their Cezanne HR credentials.<br>- After logging in, the user is asked whether they are willing to grant the permissions that your application is requesting.<br>- If the user grants permission, the authorisation server sends your application an access token (or<br>an authorisation code that can be used to obtain an access token).<br>- If the user does not grant the permission, the server returns an error.<br><br></p>\n\n<p><b>3. Use the Token to access Cezanne APIs.</b><br>- Once you have generated the access token, you should send it to the API in an HTTP authorisation header.<br>- An access token can only be used for the scope of the application. E.g. If an access token is issued read-only permission, you cannot insert / update data against an API.<br>- Access tokens can be used multiple times for operations requiring the same level of permissions.<br><br></p>\n\n<p><b>4. Refresh the token if necessary.</b><br>- Access tokens have limited lifespans. If your application needs access to an API beyond the expiry of a single access token, it can obtain a refresh token.<br>- A refresh token allows your application to obtain new access tokens.<br>- Refresh tokens should be saved in secure long-term storage as they generally remain valid for long periods of time.<br><br></p>\n\n<h2>Generate Token Using Client ID and Secret</h2>\n\n<p>If you are building an app which simply queries or writes to the API with no additional user authorisation required, you should use an encoded Client ID and Secret to generate an access token.</p>\n<p>The Token can be generated by running a POST request to the Token Endpoint:</p>\n<h4>Token Endpoint</h4>\n\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://w3.cezanneondemand.com/CezanneOnDemand/OAuth/Token\n\n</code></pre><p>The request should include a Basic Authorisation header with the encoded Client ID and Secret and it should include the following parameters in the body:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Value(s)</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>grant_type</td>\n<td>client_credentials</td>\n<td>As you are just using Id and Secret, this should be set to client_credentials.</td>\n</tr>\n<tr>\n<td>scope</td>\n<td>should be set to the scope value that the support team has set up for you</td>\n<td><a href=\"http://www.cezannehr.com/auth-scope/APIRead\">http://www.cezannehr.com/auth-scope/APIRead</a> <a href=\"http://www.cezannehr.com/auth-scope/APIWrite\">http://www.cezannehr.com/auth-scope/APIWrite</a></td>\n</tr>\n</tbody>\n</table>\n</div><p>The actual request might look like:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>POST https://w3.cezanneondemand.com/CezanneOnDemand/OAuth/Token HTTP/1.2\nContent-Type: application/x-www-form-urlencoded\nHost: w3.cezanneondemand.com\nAuthorization: Basic [ENCODED_CREDENTIALS]\ngrant_type=client_credentials&amp;\nscope=http://www.cezannehr.com/auth-scope/APIRead\n\n</code></pre><h2>Using Authorisation Process Flow</h2>\n\n<p>If you are building an app which requires user's to authorise their scope (e.g. Mobile Application, SSO Application), you should use the Authorisation Process Flow described below:</p>\n<img src=\"https://s3.amazonaws.com/screensteps_live/attachment_assets/assets/000/858/053/original/API3.png\">\n\n<ol>\n<li><p>The authorisation process begins by redirecting a browser (popup, or full page if needed) to the Authorisation Endpoint with a set of query parameters that indicate the type of access the application requires (scopes).</p>\n</li>\n<li><p>The user logs in and grants permission, this results in an authorisation code.</p>\n</li>\n<li><p>The caller receives the authorisation code in the query string.</p>\n</li>\n<li><p>After receiving the authorisation code, the application can exchange the code for an access token and a refresh token.</p>\n</li>\n<li><p>The application presents its Client ID and Client Secret (obtained during application registration) along with the authorisation code to obtain an access token and refresh token.</p>\n</li>\n<li><p>Once the application receives an access token, it can then access the API. If a refresh token is present in the<br> authorisation code exchange, then it may be used to obtain new access tokens at any time.</p>\n</li>\n</ol>\n<h2>Authorisation Request</h2>\n\n<p>The authorisation request is performed by invoking the Cezanne HR authorisation endpoint.</p>\n<p>The endpoint is accessible over SSL only.</p>\n<h4>Authorisation Endpoint</h4>\n\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://w3.cezanneondemand.com/CezanneOnDemand/OAuth/Authorize\n\n</code></pre><p>This endpoint manages the authorisation process, authenticating the user and handling user consent.</p>\n<p>The query string parameters supported by Cezanne are:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Value(s)</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>response_type</td>\n<td>code</td>\n<td>Determines if the Cezanne OAuth 2.0 endpoint returns an authorisation code.</td>\n</tr>\n<tr>\n<td>client_id</td>\n<td>The client_id value sent from the Support team when registering your application.</td>\n<td>Indicates the client application performing the request. This value is case sensitive.</td>\n</tr>\n<tr>\n<td>redirect_uri*</td>\n<td>One of the redirect_uri values registered for the application by the Support team.</td>\n<td>The address that the response is sent to by the authorisation server. This value is case sensitive and must match the configured one, including the trailing '/'.</td>\n</tr>\n<tr>\n<td>scope</td>\n<td>A space delimited string representing the permissions requested by the application.</td>\n<td>The permissions used to access the API. THe user has to grant the application permission to use the requested set of permissions in the user consent page.</td>\n</tr>\n<tr>\n<td>auto_approve**</td>\n<td>A boolean value: It can be 'true' or 'false' (without quotes)</td>\n<td>This is an optional parameter which is defined by the Support team when registering your application.</td>\n</tr>\n<tr>\n<td>state</td>\n<td>Any string value.</td>\n<td>A string that is sent to the server representing the state of the application. This string is then returned in the response. Usage of this parameter can be preventing cross-site-request forgery or preserving some application state. This parameter is not mandatory and can be omitted.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>*Redirect URI</strong></p>\n<p>When you ask the Support team to register an application, you will need to specify your redirect URIs. They are used to return the authorisation code to your application.<br><br></p>\n\n<p>The authorisation code is always returned as a query string parameter on the client. To receive the<br>authorisation code on this URL, your application must be listening on the local web server.<br><br></p>\n\n<p>For your application you can use:<br><br></p>\n\n<p>x-cez://oauth-callback/<br><br></p>\n\n<p>When this value is used, your application may intercept the navigating event of the browser control,<br>disable the current navigation and get the authentication code available on the query string.<br><br><br></p>\n\n<p>**<strong>Auto Approve</strong></p>\n<p>The auto_approve parameter is an optional parameter which is configured when the application is registered by the Support team.</p>\n<p>The available options for the “Auto approve mode” are:</p>\n<ul>\n<li><p><strong>Disabled</strong> - The authorisation page is always displayed to the final user and the auto_approve parameter is ignored.</p>\n</li>\n<li><p><strong>Automatic</strong> - The authorisation page is displayed only the first time the user authorises the application and<br>  the auto_approve parameter is ignored.</p>\n</li>\n<li><p><strong>OnDemand</strong> - The authorisation page is displayed at least the first time the user authorises the application. For subsequent authorisations the auto_approve parameter specifies whether the authorisation page should be displayed. By default the auto_approve parameter is false.</p>\n</li>\n</ul>\n<h4>Authorisation Request Example</h4>\n\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://w3.cezanneondemand.com/CezanneOnDemand/OAuth/Authorize?\nclient_id=[Your Client ID]&amp;scope=http://www.cezannehr.com/auth-scope/APIRead http://www.cezannehr.com/auth-scope/APIWrite&amp;redirect_uri=x-cez://oauthcallback/&amp;response_type=code\n\n</code></pre><h2>Authorisation Response and Token Exchange</h2>\n\n<p>After the application receives the authorisation code, it may exchange it for an access token and a refresh token. This request is an HTTP post to the token endpoint.</p>\n<p>The endpoint is accessible over SSL only.</p>\n<h4>Token Endpoint</h4>\n\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://w3.cezanneondemand.com/CezanneOnDemand/OAuth/Token\n\n</code></pre><p>The request can include the following parameters in the body:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Value(s)</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>client_id</td>\n<td>The client_id value sent from the Support team when registering your application.</td>\n<td>Indicates the client application performing the request. This value is case sensitive.</td>\n</tr>\n<tr>\n<td>client_secret</td>\n<td>The client_secret value sent from the Support team when registering your application.</td>\n<td>A secret for the client ID. Given the nature of the installed applications flow, the client secret cannot be considered confidential.</td>\n</tr>\n<tr>\n<td>redirect_uri</td>\n<td>One of the redirect_uri values registered for the application by the Support team.</td>\n<td>The address that the response is sent to by the authorisation server. This value is case sensitive and must match the configured one, including the trailing '/'.</td>\n</tr>\n<tr>\n<td>grant_type</td>\n<td>authorization_code</td>\n<td>As defined in the OAuth 2.0 specification, this field must contain a value of <strong>authorization_code</strong>.</td>\n</tr>\n<tr>\n<td>code</td>\n<td>A string value.</td>\n<td>The authorisation code returned from the initial request.</td>\n</tr>\n</tbody>\n</table>\n</div><p>The actual request might look like:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>POST https://w3.cezanneondemand.com/CezanneOnDemand/OAuth/Token HTTP/1.2\nContent-Type: application/x-www-form-urlencoded\nHost: w3.cezanneondemand.com\nclient_id=[Your Client ID]&amp;\nclient_secret=[Your Client Secret]&amp;\nredirect_uri=x-cez://oauth-callback/&amp;\ngrant_type=authorization_code&amp;\ncode=[Your Authorisation Code (from previous response)]\n\n</code></pre><p>A successful response to this request contains the following fields:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Value(s)</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>access_token</td>\n<td>A string.</td>\n<td>The access token.</td>\n</tr>\n<tr>\n<td>token_type</td>\n<td>bearer</td>\n<td>The token type. This value is used when invoking an API (see next section).</td>\n</tr>\n<tr>\n<td>scope</td>\n<td>A space delimited string representing the permissions granted by the user.</td>\n<td>The scope string, as specified in the request.</td>\n</tr>\n<tr>\n<td>expires_in</td>\n<td>An integer value.</td>\n<td>The number of seconds the access token is valid. This value can be used to understand in advance that the access token is expiring and refresh the token to get a new one.</td>\n</tr>\n<tr>\n<td>refresh_token</td>\n<td>A string.</td>\n<td>A token that may be used to obtain a new access token, and are included by default for installed applications. Refresh tokens are valid until the user revokes access.</td>\n</tr>\n</tbody>\n</table>\n</div><p>A successful response is returned as a JSON array, similar to the following:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n \"access_token\": \"[Your Generated Token]\",\n \"token_type\":\"bearer\",\n \"expires_in\":600,\n \"refresh_token\":\"[Your Refresh Token]\",\n}\n\n</code></pre><p><strong>Notes:</strong></p>\n<ul>\n<li><p>Other fields may be included in the response. Your application should allow additional fields to be returned in the response. The set shown above is the minimum set.</p>\n</li>\n<li><p>The actual values of code, access_token and refresh_token parameters have been<br>  truncated for readability; real codes are quite longer.</p>\n</li>\n</ul>\n<h2>Using a Refresh Token</h2>\n\n<p>Requesting a new access token is simple. To request a new access token, make HTTPs POST to the token endpoint.</p>\n<h4>Token Endpoint</h4>\n\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://w3.cezanneondemand.com/CezanneOnDemand/OAuth/Token\n\n</code></pre><p>These requests must include the following parameters in the body:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Value(s)</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>client_id</td>\n<td>The client_id value sent from the Support team when registering your application.</td>\n<td>Indicates the client application performing the request. This value is case sensitive.</td>\n</tr>\n<tr>\n<td>client_secret</td>\n<td>The client_secret value sent from the Support team when registering your application.</td>\n<td>A secret for the client ID. Given the nature of the installed applications flow, the client secret cannot be considered confidential.</td>\n</tr>\n<tr>\n<td>refresh_token</td>\n<td>A string value.</td>\n<td>The refresh token returned from the authorisation code exchange.</td>\n</tr>\n<tr>\n<td>grant_type</td>\n<td>refresh_token</td>\n<td>As defined in the OAuth 2.0 specification, this field must contain a value of <strong>refresh_token</strong>.</td>\n</tr>\n</tbody>\n</table>\n</div><p>Such a request will look similar to the following:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>POST https://w3.cezanneondemand.com/CezanneOnDemand/OAuth/Token HTTP/1.2\nContent-Type: application/x-www-form-urlencoded\nHost: w3.cezanneondemand.com\nclient_id=[Your Client ID]&amp;\nclient_secret=[Your Client Secret]&amp;\ngrant_type=refresh_token&amp;\nrefresh_token=[Your Refresh Token]\n\n</code></pre><p>As long as the user has not revoked the access granted to your application, the response includes a new access token. A response from such a request is shown below:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n \"access_token\":\"[Your Generated Token]\",\n \"token_type\":\"bearer\",\n \"expires_in\":600,\n \"refresh_token\":\"[Your Refresh Token]\",\n}\n\n</code></pre><p><strong>Notes:</strong></p>\n<ul>\n<li><p>Other fields may be included in the response. Your application should allow additional fields to be returned in the response. The set shown above is the minimum set.</p>\n</li>\n<li><p>You should save refresh tokens in long-term storage and continue to use them as long as they remain valid.</p>\n</li>\n</ul>\n<h1 id=\"invoking-cezanne-apis\">Invoking Cezanne APIs</h1>\n\n<p>Once your application has obtained an access token, your application can access a Cezanne API by including it in either an access_token query parameter or an Authorization: Bearer HTTP header.</p>\n<p>For example, a call to the OData API using the Authorization header looks like the following:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>GET https://w3.cezanneondemand.com/CezanneOnDemand/DataService.svc/People?$format=json\nHTTP/1.1\nAuthorization: Bearer\n[Your Generated Token]\nHost: w3.cezanneondemand.com\n\n</code></pre><h1 id=\"using-the-flow-for-single-sign-on-ss0\">Using the flow for Single Sign-On (SS0)</h1>\n\n<p>The previous authentication examples are typical use cases of OAuth2 that allow you to invoke Cezanne APIs to access data like reports, photos or update data.</p>\n<p>We have a further specific API named TokenInfo which can be used to identify users and link them to previously registered accounts without having to manage their identities. The Tokeninfo endpoint provides base information related to the logged in user like first name, last name, e-mail address and the UserGuid which uniquely identifies the account.</p>\n<p>An example of using this could be setting up users in your application in advance and assigning privileges in that application. Then you can create a relationship between the user in your application and the Cezanne user account using the UserGuid. This means that a user who has already logged in to Cezanne, the application invoking the TokenInfo endpoint can discover the user identity and grant them the required access to your application.</p>\n<p>For example, a call to the TokenInfo API using the Authorization header looks like the following:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>GET https://w3.cezanneondemand.com/CezanneOnDemand/OAuth/TokenInfo\nHTTP/1.1\nAuthorization: Bearer [Your Generated Token]\nHost: w3.cezanneondemand.com\n\n</code></pre><p>This will provide a json result that includes the following information:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"PersonGuid\" : \"7ab6ef7a-43cd-472f-852a-bbee3992ad19\",\n    \"TenantGuid\" : \"00000000-0000-0000-0000-000000000000\",\n    \"RoleGuid\" : \"00000000-0000-0000-0000-000000000111\",\n    \"UserGuid\" : \"85feff6b-4d94-47c3-b429-6713ac346196\",\n    \"Username\" : \"hrprof@cezannesw.com\",\n    \"CountryId\" : 1,\n    \"CountryName\" : \"United Kingdom\",\n    \"EmailAddress\" : \"hrprof@cezannesw.com\",\n    \"FirstName\" : \"HR Professional\",\n    \"FormattedName\" : \"Cheryl Abrahams\",\n    \"LastName\" : \"HR Professional\",\n    \"LocaleId\" : 2057,\n    \"LocaleName\" : \"en-GB\",\n    \"RoleHierarchy\" : [\"00000000-0000-0000-0000-000000000111\"],\n    \"TimeZone\" : \"Greenwich Standard Time\"\n}\n\n</code></pre><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PersonGuid</td>\n<td>The unique identifier of the people record in Cezanne linked to the user (if an internal user).</td>\n</tr>\n<tr>\n<td>TenantGuid</td>\n<td>The unique identifier of the tenant (Organisation).</td>\n</tr>\n<tr>\n<td>RoleGuid</td>\n<td>The identifier of the user role in Cezanne.</td>\n</tr>\n<tr>\n<td>UserGuid</td>\n<td>The unique identifier of the user account in Cezanne.</td>\n</tr>\n<tr>\n<td>Username</td>\n<td>The identifier of the user in Cezanne.</td>\n</tr>\n<tr>\n<td>CountryId</td>\n<td>The Country Code of the user.</td>\n</tr>\n<tr>\n<td>CountryName</td>\n<td>The Country Name of the user.</td>\n</tr>\n<tr>\n<td>FirstName</td>\n<td>The first name of the person associated to the user account.</td>\n</tr>\n<tr>\n<td>FormattedName</td>\n<td>The full name of the person associated to the user account.</td>\n</tr>\n<tr>\n<td>LastName</td>\n<td>The last name of the person associated to the user account.</td>\n</tr>\n<tr>\n<td>LocaleId</td>\n<td>The Locale Code of the user.</td>\n</tr>\n<tr>\n<td>LocaleName</td>\n<td>The Locale Name of the user.</td>\n</tr>\n<tr>\n<td>RoleHierarchy</td>\n<td>The identifier of the base user role for the user role.</td>\n</tr>\n<tr>\n<td>TimeZone</td>\n<td>The Time Zone of the user in Cezanne.</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"webhooks\">Webhooks</h1>\n\n<p>Webhooks in Cezanne allow you to integrate key information with other platforms in real time. When an event happens in Cezanne (e.g. a change to an Address record), a webhook will automatically notify the connected platform (sometimes known as an endpoint). Events include adding new records, editing records, and deleting records. These events are split into categories based on the record type and are known as triggers in the system.</p>\n<p>To use webhooks, you must set up a webhook for each platform or endpoint and activate it by enabling specific triggers which will set the webhook off.</p>\n<p>For more information, see:</p>\n<p><a href=\"https://knowledge-base.cezannehr.com/15000047758\">Webhooks</a></p>\n<h1 id=\"google-calendar-sample\">Google Calendar Sample</h1>\n\n<p>We have developed a sample application using v2 of the API which can extract all employee Absences, based on a configured list of Absence Types and Companies and import them into a Google Calendar. This can then be shared within your organisation providing an overall picture of all absences.</p>\n<img src=\"https://s3.amazonaws.com/screensteps_live/images/cezannehr/392070/1/rendered/media_1418317411606_display.png\">\n\n<p>To download the sample code, click <a href=\"https://media.screensteps.com/attachment_assets/assets/004/956/836/original/Cezanne_Google_Calendar_Sample_Source_Code_February_2020.zip\">here</a>.</p>\n<p>To download the sample application, click <a href=\"https://s3.amazonaws.com/screensteps_live/attachment_assets/assets/003/134/785/original/Cezanne_Google_Calendar_Sample_(February_2020).zip\">here</a>.</p>\n<h1 id=\"power-query\">Power Query</h1>\n\n<p>You can use the Power Query Excel add-on to access the Cezanne API and produce reports using multiple queries.</p>\n<img src=\"https://s3.amazonaws.com/screensteps_live/images/cezannehr/652474/1/rendered/7cbd6924-fdf1-4e6c-880f-66469bb27260_display.png\">\n\n<p>For more information about setting this up, see:</p>\n<p><a href=\"https://cezannehr.screenstepslive.com/s/help/m/39017/l/652474\">Setting Up Power Query</a></p>\n<h1 id=\"response-codes\">Response Codes</h1>\n\n<p>When using the API, the following list of response codes will be returned:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>200 OK</td>\n<td>A request that does not create a resource returns 200 OK if it is completed successfully and the value of the resource is not null. In this case, the response body MUST contain the value of the resource specified in the request URL.</td>\n</tr>\n<tr>\n<td>201 Created</td>\n<td>The request has been fulfilled and resulted in a new resource being created.</td>\n</tr>\n<tr>\n<td>202 Accepted</td>\n<td>The request has been accepted for processing, but the processing has not been completed. The request may or may not eventually be acted upon, as it may be disallowed when processing actually takes place.</td>\n</tr>\n<tr>\n<td>204 No Content</td>\n<td>The server successfully processed the request, but is not returning any content. This is the most likely response to a successful delete request.</td>\n</tr>\n<tr>\n<td>401 Unauthorised</td>\n<td>Authentication has failed or not been provided. Your token may have expired or you may have not yet generated a token.</td>\n</tr>\n<tr>\n<td>404 Not Found</td>\n<td>The requested resource could not be found</td>\n</tr>\n<tr>\n<td>405 Method Not Allowed</td>\n<td>The request cannot be used for this record</td>\n</tr>\n<tr>\n<td>500 Internal Server Error</td>\n<td>A generic error message used when there is no other specific message. The most likely scenarios for this message is that you are trying to retrieve / delete a record that doesn't exist or you are trying to insert data that is not supported in a particular field.</td>\n</tr>\n</tbody>\n</table>\n</div></body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Authentication","slug":"authentication"},{"content":"Invoking Cezanne APIs","slug":"invoking-cezanne-apis"},{"content":"Using the flow for Single Sign-On (SS0)","slug":"using-the-flow-for-single-sign-on-ss0"},{"content":"Webhooks","slug":"webhooks"},{"content":"Google Calendar Sample","slug":"google-calendar-sample"},{"content":"Power Query","slug":"power-query"},{"content":"Response Codes","slug":"response-codes"}],"owner":"2420781","collectionId":"9455541d-0ac5-245d-9daa-ed3dc6fc7323","publishedId":"6fbRhCt","public":true,"customColor":{"top-bar":"0083D3","right-sidebar":"303030","highlight":"0083D3"},"publishDate":"2026-01-12T10:15:31.000Z"},"item":[{"name":"Table Based APIs","item":[{"name":"Employee Record","item":[{"name":"Personal Information","item":[{"name":"People","item":[{"name":"List of Employees","id":"d39287c3-aad6-7501-e169-e7c512966cb9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"tokenName":"<token-name>","clientSecret":"{{client_secret}}","clientId":"{{client_id}}","scope":"<scope>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>","accessTokenUrl":"<access-token-url>","accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/People?$format=json","description":"<p>This request will return a list of people in the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["People"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"65bb8fae-7601-6503-e743-0abd6c68c8fd","name":"Return Active Employees","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Accept","value":"application/json"}],"url":{"raw":"{{url}}/People?$filter=ActiveEmployee eq 1","host":["{{url}}"],"path":["People"],"query":[{"key":"$filter","value":"ActiveEmployee eq 1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"no-cache","description":""},{"name":"connection","key":"connection","value":"keep-alive","description":""},{"name":"content-length","key":"content-length","value":"1833","description":""},{"name":"content-type","key":"content-type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","description":""},{"name":"dataserviceversion","key":"dataserviceversion","value":"3.0;","description":""},{"name":"date","key":"date","value":"Tue, 18 Jul 2017 17:16:41 GMT","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"623","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#People\",\n    \"value\": [\n        {\n            \"PersonGUID\": \"db162c7c-7526-40a1-a4a3-ebbb5043a6fe\",\n            \"PersonCode\": \"0590\",\n            \"FamilyName\": \"Edwards\",\n            \"FirstName\": \"Lawrence\",\n            \"Salutation\": null,\n            \"Gender\": \"Male\",\n            \"ActiveEmployee\": 1,\n            \"DateOfBirth\": \"1973-08-08T00:00:00\",\n            \"AdditionalFamilyNames\": \"\",\n            \"FamilyNamePrefix\": null,\n            \"FullName\": \"Lawrence Edwards\",\n            \"LegalName\": \"Lawrence Edwards\",\n            \"KnownAs\": \"Larry\",\n            \"SuffixTitle\": null,\n            \"CountyOfBirth\": null,\n            \"CountyOfBirthCode\": null,\n            \"CountryOfBirth\": null,\n            \"CountryOfResidence\": null,\n            \"AgeMonths\": 11,\n            \"AgeYears\": 43,\n            \"CityOfBirth\": null,\n            \"Comments\": null,\n            \"EthnicOrigin\": null,\n            \"MiddleName\": null,\n            \"MilitaryStatus\": null,\n            \"Nationality\": \"French\",\n            \"PrimaryLanguage\": null,\n            \"Race\": null,\n            \"Picture\": null,\n            \"TobaccoUser\": 0,\n            \"DeceasedDate\": null,\n            \"Deceased\": 0,\n            \"Student\": 0,\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2011-07-28T14:48:25.757Z\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"PersonPronouns\": \"he/him\",\n            \"BirthMonth\": \"August\",\n            \"BirthYear\": 1973,\n            \"FreeCheckbox1\": null,\n            \"FreeCheckbox2\": null,\n            \"FreeDate1\": null,\n            \"FreeDate2\": null,\n            \"FreeNumber1\": null,\n            \"FreeNumber2\": null,\n            \"FreeNumericUpDown1\": null,\n            \"FreeNumericUpDown2\": null,\n            \"FreeRichText1\": null,\n            \"FreeText1\": null,\n            \"FreeText2\": null,\n            \"FreeText3\": null,\n            \"FreeText4\": null,\n            \"FreeText5\": null,\n            \"FreeTextMultiLine1\": null,\n            \"FreeTextMultiLine2\": null\n        },\n        {\n            \"PersonGUID\": \"e5f1b2e7-d6ed-4f2b-9ed8-8c58a3824b74\",\n            \"PersonCode\": \"0593\",\n            \"FamilyName\": \"Waterhouse\",\n            \"FirstName\": \"Laura\",\n            \"Salutation\": null,\n            \"Gender\": \"Female\",\n            \"ActiveEmployee\": 1,\n            \"DateOfBirth\": \"1968-04-11T00:00:00\",\n            \"AdditionalFamilyNames\": \"\",\n            \"FamilyNamePrefix\": null,\n            \"FullName\": \"Laura Waterhouse\",\n            \"LegalName\": \"Laura Waterhouse\",\n            \"KnownAs\": \"Laura\",\n            \"SuffixTitle\": null,\n            \"CountyOfBirth\": null,\n            \"CountyOfBirthCode\": null,\n            \"CountryOfBirth\": null,\n            \"CountryOfResidence\": null,\n            \"AgeMonths\": 3,\n            \"AgeYears\": 49,\n            \"CityOfBirth\": null,\n            \"Comments\": null,\n            \"EthnicOrigin\": null,\n            \"MiddleName\": null,\n            \"MilitaryStatus\": null,\n            \"Nationality\": \"British\",\n            \"PrimaryLanguage\": null,\n            \"Race\": null,\n            \"Picture\": null,\n            \"TobaccoUser\": 0,\n            \"DeceasedDate\": null,\n            \"Deceased\": 0,\n            \"Student\": 0,\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2011-07-28T14:46:28.407Z\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"PersonPronouns\": \"she/her\",\n            \"BirthMonth\": \"April\",\n            \"BirthYear\": 1968,\n            \"FreeCheckbox1\": null,\n            \"FreeCheckbox2\": null,\n            \"FreeDate1\": null,\n            \"FreeDate2\": null,\n            \"FreeNumber1\": null,\n            \"FreeNumber2\": null,\n            \"FreeNumericUpDown1\": null,\n            \"FreeNumericUpDown2\": null,\n            \"FreeRichText1\": null,\n            \"FreeText1\": null,\n            \"FreeText2\": null,\n            \"FreeText3\": null,\n            \"FreeText4\": null,\n            \"FreeText5\": null,\n            \"FreeTextMultiLine1\": null,\n            \"FreeTextMultiLine2\": null\n        }\n    ]\n}"},{"id":"9fc5765b-425b-e20a-f86b-4f15a7426243","name":"Return Top 5 People","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Accept","value":"application/json"}],"url":{"raw":"{{url}}/People?$top=5","host":["{{url}}"],"path":["People"],"query":[{"key":"$top","value":"5"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"no-cache","description":""},{"name":"connection","key":"connection","value":"keep-alive","description":""},{"name":"content-length","key":"content-length","value":"4364","description":""},{"name":"content-type","key":"content-type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","description":""},{"name":"dataserviceversion","key":"dataserviceversion","value":"3.0;","description":""},{"name":"date","key":"date","value":"Tue, 18 Jul 2017 17:18:35 GMT","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"755","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#People\",\n    \"value\": [\n        {\n            \"PersonGUID\": \"db162c7c-7526-40a1-a4a3-ebbb5043a6fe\",\n            \"PersonCode\": \"0590\",\n            \"FamilyName\": \"Edwards\",\n            \"FirstName\": \"Lawrence\",\n            \"Salutation\": null,\n            \"Gender\": \"Male\",\n            \"ActiveEmployee\": 1,\n            \"DateOfBirth\": \"1973-08-08T00:00:00\",\n            \"AdditionalFamilyNames\": \"\",\n            \"FamilyNamePrefix\": null,\n            \"FullName\": \"Lawrence Edwards\",\n            \"LegalName\": \"Lawrence Edwards\",\n            \"KnownAs\": \"Larry\",\n            \"SuffixTitle\": null,\n            \"CountyOfBirth\": null,\n            \"CountyOfBirthCode\": null,\n            \"CountryOfBirth\": null,\n            \"CountryOfResidence\": null,\n            \"AgeMonths\": 11,\n            \"AgeYears\": 43,\n            \"CityOfBirth\": null,\n            \"Comments\": null,\n            \"EthnicOrigin\": null,\n            \"MiddleName\": null,\n            \"MilitaryStatus\": null,\n            \"Nationality\": \"French\",\n            \"PrimaryLanguage\": null,\n            \"Race\": null,\n            \"Picture\": null,\n            \"TobaccoUser\": 0,\n            \"DeceasedDate\": null,\n            \"Deceased\": 0,\n            \"Student\": 0,\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2011-07-28T14:48:25.757Z\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"PersonPronouns\": \"he/him\",\n            \"BirthMonth\": \"August\",\n            \"BirthYear\": 1973,\n            \"FreeCheckbox1\": null,\n            \"FreeCheckbox2\": null,\n            \"FreeDate1\": null,\n            \"FreeDate2\": null,\n            \"FreeNumber1\": null,\n            \"FreeNumber2\": null,\n            \"FreeNumericUpDown1\": null,\n            \"FreeNumericUpDown2\": null,\n            \"FreeRichText1\": null,\n            \"FreeText1\": null,\n            \"FreeText2\": null,\n            \"FreeText3\": null,\n            \"FreeText4\": null,\n            \"FreeText5\": null,\n            \"FreeTextMultiLine1\": null,\n            \"FreeTextMultiLine2\": null\n        },\n        {\n            \"PersonGUID\": \"e5f1b2e7-d6ed-4f2b-9ed8-8c58a3824b74\",\n            \"PersonCode\": \"0593\",\n            \"FamilyName\": \"Waterhouse\",\n            \"FirstName\": \"Laura\",\n            \"Salutation\": null,\n            \"Gender\": \"Female\",\n            \"ActiveEmployee\": 1,\n            \"DateOfBirth\": \"1968-04-11T00:00:00\",\n            \"AdditionalFamilyNames\": \"\",\n            \"FamilyNamePrefix\": null,\n            \"FullName\": \"Laura Waterhouse\",\n            \"LegalName\": \"Laura Waterhouse\",\n            \"KnownAs\": \"Laura\",\n            \"SuffixTitle\": null,\n            \"CountyOfBirth\": null,\n            \"CountyOfBirthCode\": null,\n            \"CountryOfBirth\": null,\n            \"CountryOfResidence\": null,\n            \"AgeMonths\": 3,\n            \"AgeYears\": 49,\n            \"CityOfBirth\": null,\n            \"Comments\": null,\n            \"EthnicOrigin\": null,\n            \"MiddleName\": null,\n            \"MilitaryStatus\": null,\n            \"Nationality\": \"British\",\n            \"PrimaryLanguage\": null,\n            \"Race\": null,\n            \"Picture\": null,\n            \"TobaccoUser\": 0,\n            \"DeceasedDate\": null,\n            \"Deceased\": 0,\n            \"Student\": 0,\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2011-07-28T14:46:28.407Z\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"PersonPronouns\": \"she/her\",\n            \"BirthMonth\": \"April\",\n            \"BirthYear\": 1968,\n            \"FreeCheckbox1\": null,\n            \"FreeCheckbox2\": null,\n            \"FreeDate1\": null,\n            \"FreeDate2\": null,\n            \"FreeNumber1\": null,\n            \"FreeNumber2\": null,\n            \"FreeNumericUpDown1\": null,\n            \"FreeNumericUpDown2\": null,\n            \"FreeRichText1\": null,\n            \"FreeText1\": null,\n            \"FreeText2\": null,\n            \"FreeText3\": null,\n            \"FreeText4\": null,\n            \"FreeText5\": null,\n            \"FreeTextMultiLine1\": null,\n            \"FreeTextMultiLine2\": null\n        },\n        {\n            \"PersonGUID\": \"c5c7176a-0901-4621-84a5-49e1f9048cfa\",\n            \"PersonCode\": \"098907\",\n            \"FamilyName\": \"Middleton\",\n            \"FirstName\": \"Joan\",\n            \"Salutation\": null,\n            \"Gender\": \"Female\",\n            \"ActiveEmployee\": 1,\n            \"DateOfBirth\": \"1964-09-07T00:00:00\",\n            \"AdditionalFamilyNames\": \"\",\n            \"FamilyNamePrefix\": null,\n            \"FullName\": \"Joan Middleton\",\n            \"LegalName\": \"Joan Middleton\",\n            \"KnownAs\": \"Joan\",\n            \"SuffixTitle\": null,\n            \"CountyOfBirth\": null,\n            \"CountyOfBirthCode\": null,\n            \"CountryOfBirth\": null,\n            \"CountryOfResidence\": null,\n            \"AgeMonths\": 10,\n            \"AgeYears\": 52,\n            \"CityOfBirth\": null,\n            \"Comments\": null,\n            \"EthnicOrigin\": null,\n            \"MiddleName\": null,\n            \"MilitaryStatus\": null,\n            \"Nationality\": \"British\",\n            \"PrimaryLanguage\": null,\n            \"Race\": null,\n            \"Picture\": null,\n            \"TobaccoUser\": 0,\n            \"DeceasedDate\": null,\n            \"Deceased\": 0,\n            \"Student\": 0,\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2011-07-28T14:45:28.48Z\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"PersonPronouns\": \"they/them\",\n            \"BirthMonth\": \"September\",\n            \"BirthYear\": 1964,\n            \"FreeCheckbox1\": null,\n            \"FreeCheckbox2\": null,\n            \"FreeDate1\": null,\n            \"FreeDate2\": null,\n            \"FreeNumber1\": null,\n            \"FreeNumber2\": null,\n            \"FreeNumericUpDown1\": null,\n            \"FreeNumericUpDown2\": null,\n            \"FreeRichText1\": null,\n            \"FreeText1\": null,\n            \"FreeText2\": null,\n            \"FreeText3\": null,\n            \"FreeText4\": null,\n            \"FreeText5\": null,\n            \"FreeTextMultiLine1\": null,\n            \"FreeTextMultiLine2\": null\n        },\n        {\n            \"PersonGUID\": \"285942c1-c5fc-4125-a466-b8471cbec638\",\n            \"PersonCode\": \"100\",\n            \"FamilyName\": \"Benson\",\n            \"FirstName\": \"Harold\",\n            \"Salutation\": null,\n            \"Gender\": \"Male\",\n            \"ActiveEmployee\": 1,\n            \"DateOfBirth\": \"1955-11-17T00:00:00\",\n            \"AdditionalFamilyNames\": \"\",\n            \"FamilyNamePrefix\": null,\n            \"FullName\": \"Harold Benson\",\n            \"LegalName\": \"Harold Benson\",\n            \"KnownAs\": \"Howard\",\n            \"SuffixTitle\": null,\n            \"CountyOfBirth\": null,\n            \"CountyOfBirthCode\": null,\n            \"CountryOfBirth\": null,\n            \"CountryOfResidence\": null,\n            \"AgeMonths\": 8,\n            \"AgeYears\": 61,\n            \"CityOfBirth\": null,\n            \"Comments\": null,\n            \"EthnicOrigin\": null,\n            \"MiddleName\": null,\n            \"MilitaryStatus\": null,\n            \"Nationality\": \"British\",\n            \"PrimaryLanguage\": null,\n            \"Race\": null,\n            \"Picture\": null,\n            \"TobaccoUser\": 0,\n            \"DeceasedDate\": null,\n            \"Deceased\": 0,\n            \"Student\": 0,\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2016-02-01T15:30:28.593Z\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"PersonPronouns\": \"he/him\",\n            \"BirthMonth\": \"November\",\n            \"BirthYear\": 1955,\n            \"FreeCheckbox1\": null,\n            \"FreeCheckbox2\": null,\n            \"FreeDate1\": null,\n            \"FreeDate2\": null,\n            \"FreeNumber1\": null,\n            \"FreeNumber2\": null,\n            \"FreeNumericUpDown1\": null,\n            \"FreeNumericUpDown2\": null,\n            \"FreeRichText1\": null,\n            \"FreeText1\": null,\n            \"FreeText2\": null,\n            \"FreeText3\": null,\n            \"FreeText4\": null,\n            \"FreeText5\": null,\n            \"FreeTextMultiLine1\": null,\n            \"FreeTextMultiLine2\": null\n        },\n        {\n            \"PersonGUID\": \"fb7146b5-86cb-4a28-9e7e-787433080aed\",\n            \"PersonCode\": \"101\",\n            \"FamilyName\": \"Brown\",\n            \"FirstName\": \"Heather\",\n            \"Salutation\": null,\n            \"Gender\": \"Female\",\n            \"ActiveEmployee\": 1,\n            \"DateOfBirth\": \"1968-11-11T00:00:00\",\n            \"AdditionalFamilyNames\": \"\",\n            \"FamilyNamePrefix\": null,\n            \"FullName\": \"Heather Brown\",\n            \"LegalName\": \"Heather Brown\",\n            \"KnownAs\": \"Heather\",\n            \"SuffixTitle\": null,\n            \"CountyOfBirth\": null,\n            \"CountyOfBirthCode\": null,\n            \"CountryOfBirth\": null,\n            \"CountryOfResidence\": null,\n            \"AgeMonths\": 8,\n            \"AgeYears\": 48,\n            \"CityOfBirth\": null,\n            \"Comments\": null,\n            \"EthnicOrigin\": null,\n            \"MiddleName\": null,\n            \"MilitaryStatus\": null,\n            \"Nationality\": \"German\",\n            \"PrimaryLanguage\": null,\n            \"Race\": null,\n            \"Picture\": null,\n            \"TobaccoUser\": 0,\n            \"DeceasedDate\": null,\n            \"Deceased\": 0,\n            \"Student\": 0,\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2016-02-01T15:30:36.297Z\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"PersonPronouns\": \"they/them\",\n            \"BirthMonth\": \"November\",\n            \"BirthYear\": 1968,\n            \"FreeCheckbox1\": null,\n            \"FreeCheckbox2\": null,\n            \"FreeDate1\": null,\n            \"FreeDate2\": null,\n            \"FreeNumber1\": null,\n            \"FreeNumber2\": null,\n            \"FreeNumericUpDown1\": null,\n            \"FreeNumericUpDown2\": null,\n            \"FreeRichText1\": null,\n            \"FreeText1\": null,\n            \"FreeText2\": null,\n            \"FreeText3\": null,\n            \"FreeText4\": null,\n            \"FreeText5\": null,\n            \"FreeTextMultiLine1\": null,\n            \"FreeTextMultiLine2\": null\n        }\n    ]\n}"}],"_postman_id":"d39287c3-aad6-7501-e169-e7c512966cb9"},{"name":"Add an Employee","id":"71f432f9-385f-aee8-6002-5f860cce07da","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"challengeAlgorithm":"<challenge-algorithm>","scope":"<scope>","grant_type":"<grant_type>","client_authentication":"<client_authentication>","accessTokenUrl":"<access-token-url>","accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json; charset=UTF-8"}],"body":{"mode":"raw","raw":"{\n  \"PersonCode\":\"264567\",\n  \"FamilyName\":\"Smith\",\n  \"FirstName\":\"John\",\n  \"Gender\":\"Male\",\n  \"DateOfBirth\":\"1975-08-16T00:00:00\"\n}"},"url":"{{url}}/People?$format=json","description":"<p>This request will insert a new Employee into the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["People"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"e0af7c74-1818-3642-0647-8b2b43281d0d","name":"Add an Employee","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json; charset=UTF-8"}],"body":{"mode":"raw","raw":"{\n\t\"PersonCode\":\"264567\",\n\t\"FamilyName\":\"Smith\",\n\t\"FirstName\":\"John\",\n\t\"Gender\":\"Male\",\n\t\"DateOfBirth\":\"1975-08-16T00:00:00\"\n}"},"url":{"raw":"{{url}}/People?$format=json","host":["{{url}}"],"path":["People"],"query":[{"key":"$format","value":"json"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"884","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","name":"Content-Type","description":""},{"key":"DataServiceVersion","value":"3.0;","name":"DataServiceVersion","description":""},{"key":"Date","value":"Wed, 17 Jan 2018 13:58:45 GMT","name":"Date","description":""},{"key":"Location","value":"https://showcase.cezanneondemand.com/cezanneondemand/v2/DataService.svc/People('264567')","name":"Location","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"10FF1C8527C119F7CB4E7C4120B8992C37BA1C8AE5234A9C7292845F5BF38D235F1BB6B2EF2F3728FEB7A384928DF969505638D3077B989C224A35AD3FE86D663EBCCEECF12BB193FF45C084F261369A94F105CDE91537455E5B49C713A694D62D34D7A7888AD9B597BDD3246C7569B4C58B10C159A04F82DF9242075831F7E38CE8DEDD0EEAACDD6CF905FEA56D401CC4DB3789AF82193C78C9A4D6A124EB0BDE5B27B6C1663E44BDFDC68E369CC4FD3AE57BC82F41E15393895D53FCBF45BEF8EE38E5FAC9F414B14AF836AC55E69E37B3A04760F8929B12DD607AB5345FE24508BB570572B35BF0EE26ECE04E899FDAEA1A227AC0432679902DA7737F2B5B8C91E71F7F5A858689E6919028A38ADB","key":"CF_SID"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"-1","key":"CF_SLV"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"/1cGaxGPTBHcD8RBFPNm12FtDYLb3lMpw7XIBqrYFhv/PCOTAE7wxR40Odzc4CqCBqtAOZUr4ANdr0FCU5+yshc/OebxJq3yb+4ZnDyqpu6AwS+bVPF+pa/xxdPnk2Wb9Paf0Dv+yZV/0G7/d6kslgWPqvC6vBmhi0lGAwQ6OUY=","key":"__RequestVerificationToken_L0NlemFubmVPbkRlbWFuZA__"}],"responseTime":"436","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#People/@Element\",\n    \"PersonGUID\": null,\n    \"PersonCode\": \"264567\",\n    \"FamilyName\": \"Smith\",\n    \"FirstName\": \"John\",\n    \"Salutation\": null,\n    \"Gender\": \"Male\",\n    \"ActiveEmployee\": null,\n    \"DateOfBirth\": \"1975-08-16T00:00:00\",\n    \"AdditionalFamilyNames\": null,\n    \"FamilyNamePrefix\": null,\n    \"FullName\": null,\n    \"LegalName\": null,\n    \"KnownAs\": null,\n    \"SuffixTitle\": null,\n    \"CountyOfBirth\": null,\n    \"CountyOfBirthCode\": null,\n    \"CountryOfBirth\": null,\n    \"CountryOfResidence\": null,\n    \"AgeMonths\": null,\n    \"AgeYears\": null,\n    \"CityOfBirth\": null,\n    \"Comments\": null,\n    \"EthnicOrigin\": null,\n    \"MiddleName\": null,\n    \"MilitaryStatus\": null,\n    \"Nationality\": null,\n    \"PrimaryLanguage\": null,\n    \"Race\": null,\n    \"Picture\": null,\n    \"TobaccoUser\": 0,\n    \"DeceasedDate\": null,\n    \"Deceased\": 0,\n    \"Student\": 0,\n    \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedDate\": \"2017-12-16T09:00:01.6774314Z\",\n    \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"PersonPronouns\": null,\n    \"BirthMonth\": \"August\",\n    \"BirthYear\": 1975,\n    \"FreeCheckbox1\": null,\n    \"FreeCheckbox2\": null,\n    \"FreeDate1\": null,\n    \"FreeDate2\": null,\n    \"FreeNumber1\": null,\n    \"FreeNumber2\": null,\n    \"FreeNumericUpDown1\": null,\n    \"FreeNumericUpDown2\": null,\n    \"FreeRichText1\": null,\n    \"FreeText1\": null,\n    \"FreeText2\": null,\n    \"FreeText3\": null,\n    \"FreeText4\": null,\n    \"FreeText5\": null,\n    \"FreeTextMultiLine1\": null,\n    \"FreeTextMultiLine2\": null\n}"}],"_postman_id":"71f432f9-385f-aee8-6002-5f860cce07da"},{"name":"Update an Employee","id":"c2ef5c6c-7234-4d01-9b00-85513e7f341c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"clientSecret":"<client-secret>","clientId":"<client-id>","challengeAlgorithm":"<challenge-algorithm>","scope":"<scope>","grant_type":"<grant_type>","client_authentication":"<client_authentication>","accessTokenUrl":"<access-token-url>","tokenType":"<token-type>"},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"FamilyName\":\"Jones\"\n}"},"url":"{{url}}/People(PersonCode='[PersonCode]')","description":"<p>This request will update an employee record in the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Request body includes only one field as an example. You can add any extra fields from the table that you require. However, some fields are read-only. \n</li>\n<li>The [PersonCode] in the request needs to be replaced by the Person Code of an existing employee in the system.</li>\n<li>The PersonCode cannot be updated as it is the key field for this table.</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["People(PersonCode='[PersonCode]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[{"id":"d038a8aa-82c7-4810-8304-45bc3df70d4e","name":"Update an Employee","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"FamilyName\":\"Jones\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/People(PersonCode='[PersonCode]')"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"DataServiceVersion","value":"1.0;"},{"key":"Date","value":"Mon, 23 Dec 2019 10:02:06 GMT"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"c2ef5c6c-7234-4d01-9b00-85513e7f341c"},{"name":"Delete an Employee","id":"96ebd6c1-d30a-4170-9a95-9c2a661729cf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"password":"<password>","username":"<username>","showPassword":"<show-password>"},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"body":{"mode":"formdata","formdata":[]},"url":"{{url}}/People(PersonCode='[PersonCode]')","description":"<p>This request will delete an Employee record from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["People(PersonCode='[PersonCode]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"96ebd6c1-d30a-4170-9a95-9c2a661729cf"}],"id":"753bebef-f4e6-5f45-7a65-fbafc5e4f8ae","description":"<p>This API enables all information from the Personal Information screen for active and inactive employees to be retrieved and modified.</p>\n<p>The identifying key for People is:</p>\n<ul><li><p>PersonCode</p></li></ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PersonGUID</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PersonCode</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>FamilyName</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>FirstName</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>Salutation</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Gender</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>ActiveEmployee</td>\n<td>Y</td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked</td>\n</tr>\n<tr>\n<td>DateOfBirth</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>AdditionalFamilyNames</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>FamilyNamePrefix</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>FullName</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>LegalName</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>KnownAs</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>SuffixTitle</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>CountyOfBirth</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>CountyOfBirthCode</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>CountryOfBirth</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>CountryOfResidence</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>AgeMonths</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AgeYears</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>CityOfBirth</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Comments</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>EthnicOrigin</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>MiddleName</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>MilitaryStatus</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Nationality</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>PrimaryLanguage</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Race</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Picture</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>TobaccoUser</td>\n<td></td>\n<td>1 = Ticked, 0 = Not ticked</td>\n</tr>\n<tr>\n<td>DeceasedDate</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Deceased</td>\n<td></td>\n<td>1 = Ticked, 0 = Not ticked</td>\n</tr>\n<tr>\n<td>Student</td>\n<td></td>\n<td>1 = Ticked, 0 = Not ticked</td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PersonPronouns</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>BirthMonth</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>BirthYear</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>FreeCheckbox1</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeCheckbox2</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeCheckbox3</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeDate1</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeDate2</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeNumber1</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeNumber2</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeNumericUpDown1</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeNumericUpDown2</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeRichText1</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeText1</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeText2</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeText3</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeText4</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeText5</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeTextMultiLine1</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeTextMultiLine2</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to their and all subordinate records.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to their own record.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"b1641095-df0f-4622-9f15-3c3ff637d53b","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"a14b8032-49a2-4ab8-ae34-0cc946177c29","type":"text/javascript","exec":[""]}}],"_postman_id":"753bebef-f4e6-5f45-7a65-fbafc5e4f8ae"},{"name":"Disabilities","item":[{"name":"List of Employee Disabilities","id":"a4d1f03e-b4d8-6a87-9bf7-6e5e467511fb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/Disabilities?$format=json","description":"<p>This request will return a list of employee disabilities in the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["Disabilities"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"188eb676-e890-9627-0681-575bc1ed86f4","name":"List of Disabilities","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/Disabilities?$format=json","host":["{{url}}"],"path":["Disabilities"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"no-cache","description":""},{"name":"connection","key":"connection","value":"keep-alive","description":""},{"name":"content-length","key":"content-length","value":"506","description":""},{"name":"content-type","key":"content-type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","description":""},{"name":"dataserviceversion","key":"dataserviceversion","value":"3.0;","description":""},{"name":"date","key":"date","value":"Mon, 31 Jul 2017 13:39:48 GMT","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"427","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#Disabilities\",\n    \"value\": [\n        {\n            \"PersonCode\": \"27\",\n            \"FullName\": \"Brenda Becker\",\n            \"CertifiedDate\": \"2016-06-22T00:00:00\",\n            \"DisabilityType\": null,\n            \"DisabilityLevel\": \"Experiencing difficulties in multiple sensory or physical functions\",\n            \"Percentage\": null,\n            \"CertificateExpiry\": null,\n            \"Comments\": null,\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2016-06-22T08:41:12.76Z\",\n            \"DisabilityDetails\": null,\n            \"AdjustmentsRequired\": 0,\n            \"AdjustmentDetails\": null\n        }\n    ]\n}"}],"_postman_id":"a4d1f03e-b4d8-6a87-9bf7-6e5e467511fb"},{"name":"Add an Employee's Disabilities","id":"30828bd3-e631-e538-7eb0-568ebfb10d98","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"PersonCode\": \"26\",\n  \"CertifiedDate\": \"2017-10-01T00:00:00\",\n  \"DisabilityLevel\": \"Experiencing difficulty in just one function\"\n}"},"url":"{{url}}/Disabilities?$format=json","description":"<p>This request will insert a Disability record for an employee.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["Disabilities"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"799cfe64-0aae-ae7f-7c28-fa5984821336","name":"Add an Employee's Disabilities","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token","warning":""},{"key":"Content-Type","value":"application/json","warning":""}],"body":{"mode":"raw","raw":"{\n\t\"PersonCode\": \"26\",\n\t\"CertifiedDate\": \"2017-10-01T00:00:00\",\n\t\"DisabilityLevel\": \"Experiencing difficulty in just one function\"\n}"},"url":{"raw":"{{url}}/Disabilities?$format=json","host":["{{url}}"],"path":["Disabilities"],"query":[{"key":"$format","value":"json"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"no-cache","description":""},{"name":"connection","key":"connection","value":"keep-alive","description":""},{"name":"content-length","key":"content-length","value":"464","description":""},{"name":"content-type","key":"content-type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","description":""},{"name":"dataserviceversion","key":"dataserviceversion","value":"3.0;","description":""},{"name":"date","key":"date","value":"Tue, 17 Oct 2017 09:12:26 GMT","description":""},{"name":"location","key":"location","value":"https://showcase.cezanneondemand.com/cezanneondemand/v2/DataService.svc/Disabilities(CertifiedDate=datetime'2017-10-01T00%3A00%3A00',DisabilityLevel='Experiencing%20difficulty%20in%20just%20one%20function',PersonCode='26')","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"3333","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#Disabilities/@Element\",\n    \"PersonCode\": \"26\",\n    \"FullName\": null,\n    \"CertifiedDate\": \"2017-10-01T00:00:00\",\n    \"DisabilityType\": null,\n    \"DisabilityLevel\": \"Experiencing difficulty in just one function\",\n    \"Percentage\": null,\n    \"CertificateExpiry\": null,\n    \"Comments\": null,\n    \"InsertUser\": \"tammy.bell@omnicrom.com\",\n    \"LastModifiedUser\": \"tammy.bell@omnicrom.com\",\n    \"LastModifiedDate\": \"2017-10-03T12:50:35.8008473Z\"\n}"}],"_postman_id":"30828bd3-e631-e538-7eb0-568ebfb10d98"},{"name":"Update an Employee's Disabilities","id":"5b5da773-0955-41b9-af6a-c606c5657c6f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"Comments\": \"Example Comments\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/Disabilities(PersonCode='[PersonCode]', CertifiedDate=datetime'[CertifiedDate]', DisabilityLevel='[DisabilityLevel]')","description":"<p>This request will update an employee's Disabilities record in the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Request body includes only one field as an example. You can add any extra fields from the table that you require. However, some fields are read-only. \n</li>\n<li>The PersonCode, CertifiedDate and DisabilityLevel cannot be updated as they are the the key fields for this table.</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["Disabilities(PersonCode='[PersonCode]', CertifiedDate=datetime'[CertifiedDate]', DisabilityLevel='[DisabilityLevel]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5b5da773-0955-41b9-af6a-c606c5657c6f"},{"name":"Delete an Employee's Disabilities","id":"d28e55bb-b1f2-7dcb-4b67-0560e677b3d4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"body":{"mode":"formdata","formdata":[]},"url":"{{url}}/Disabilities(PersonCode='[PersonCode]', CertifiedDate=datetime'[CertifiedDate]', DisabilityLevel='[DisabilityLevel]')","description":"<p>This request will delete an employee's Disablities record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["Disabilities(PersonCode='[PersonCode]', CertifiedDate=datetime'[CertifiedDate]', DisabilityLevel='[DisabilityLevel]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d28e55bb-b1f2-7dcb-4b67-0560e677b3d4"}],"id":"ac93cb39-24e1-349d-d367-cfee28ed182e","description":"<p>This API enables all information from the Disabilities tab on the Personal Information screen for active and inactive employees to be retrieved and modified.</p>\n<p>The identifying keys for Deployments are:</p>\n<ul><li><p>PersonCode</p></li><li><p>CertifiedDate</p></li><li><p>DisabilityLevel</p></li></ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PersonCode</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>FullName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>CertifiedDate</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>DisabilityType</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>DisabilityLevel</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>Percentage</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>CertificateExpiry</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Comments</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>DisabilityDetails</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>AdjustmentsRequired</td>\n<td></td>\n<td>1 = Ticked, 0 = Not Ticked</td>\n</tr>\n<tr>\n<td>AdjustmentDetails</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>FreeCheckbox1</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeCheckbox2</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeCheckbox3</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeDate1</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeDate2</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeNumber1</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeNumber2</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeNumericUpDown1</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeNumericUpDown2</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeRichText1</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeText1</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeText2</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeText3</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeText4</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeText5</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeTextMultiLine1</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeTextMultiLine2</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"84aee1fd-607b-429d-8cfc-cbb171f16206","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"436b4cb6-3eea-4240-b4f7-885f858b928a","type":"text/javascript","exec":[""]}}],"_postman_id":"ac93cb39-24e1-349d-d367-cfee28ed182e"},{"name":"Marital Status","item":[{"name":"List of Employees' Marital Status","id":"fefd3414-4459-56b9-a514-3b4d7613a208","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/MaritalStatus?$format=json","description":"<p>This request will return a list of Marital Status from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["MaritalStatus"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"4115fff9-1b1f-7f54-618a-c67808a667f6","name":"List of Marital Status","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/MaritalStatus?$format=json","host":["{{url}}"],"path":["MaritalStatus"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"no-cache","description":""},{"name":"connection","key":"connection","value":"keep-alive","description":""},{"name":"content-length","key":"content-length","value":"434","description":""},{"name":"content-type","key":"content-type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","description":""},{"name":"dataserviceversion","key":"dataserviceversion","value":"3.0;","description":""},{"name":"date","key":"date","value":"Mon, 31 Jul 2017 15:24:56 GMT","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"461","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#MaritalStatus\",\n    \"value\": [\n        {\n            \"MaritalStatusPersonGUID\": \"d700800d-6d24-425a-b678-d773c0fc4e50\",\n            \"PersonCode\": \"26\",\n            \"MaritalStatusDescription\": \"Married\",\n            \"MaritalStatusDate\": \"2008-01-01T00:00:00\",\n            \"MaritalStatusEndDate\": \"2014-04-23T00:00:00\",\n            \"PreviousName\": null,\n            \"Comments\": null,\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2014-04-24T14:38:22.887Z\"\n        }\n    ]\n}"}],"_postman_id":"fefd3414-4459-56b9-a514-3b4d7613a208"},{"name":"Add an Employee's Marital Status","id":"3dc2575a-e693-3875-fdfc-c7d8de59397f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json; charset=UTF-8"}],"body":{"mode":"raw","raw":"{\n  \"PersonCode\": \"26\",\n  \"MaritalStatusDescription\": \"Married\",\n  \"MaritalStatusDate\": \"2017-12-10T00:00:00\"\n}"},"url":"{{url}}/MaritalStatus?$format=json","description":"<p>This request will insert a Marital Status record for an employee.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["MaritalStatus"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"2acd812f-655f-31c9-b7c6-8146c92d6e55","name":"Add an Employee's Marital Status","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."},{"key":"Content-Type","value":"application/json; charset=UTF-8","warning":""}],"body":{"mode":"raw","raw":"{\n\t\"PersonCode\": \"26\",\n\t\"MaritalStatusDescription\": \"Married\",\n\t\"MaritalStatusDate\": \"2017-12-10T00:00:00\"\n}"},"url":{"raw":"{{url}}/MaritalStatus?$format=json","host":["{{url}}"],"path":["MaritalStatus"],"query":[{"key":"$format","value":"json"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"425","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","name":"Content-Type","description":""},{"key":"DataServiceVersion","value":"3.0;","name":"DataServiceVersion","description":""},{"key":"Date","value":"Tue, 02 Jan 2018 14:57:29 GMT","name":"Date","description":""},{"key":"Location","value":"https://showcase.cezanneondemand.com/cezanneondemand/v2/DataService.svc/MaritalStatus(MaritalStatusDate=datetime'2017-12-10T00%3A00%3A00',MaritalStatusDescription='Married',PersonCode='26')","name":"Location","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"10FF1C8527C119F7CB4E7C4120B8992C37BA1C8AE5234A9C7292845F5BF38D235F1BB6B2EF2F3728FEB7A384928DF969505638D3077B989C224A35AD3FE86D663EBCCEECF12BB193FF45C084F261369A94F105CDE91537455E5B49C713A694D62D34D7A7888AD9B597BDD3246C7569B4C58B10C159A04F82DF9242075831F7E38CE8DEDD0EEAACDD6CF905FEA56D401CC4DB3789AF82193C78C9A4D6A124EB0BDE5B27B6C1663E44BDFDC68E369CC4FD3AE57BC82F41E15393895D53FCBF45BEF8EE38E5FAC9F414B14AF836AC55E69E37B3A04760F8929B12DD607AB5345FE24508BB570572B35BF0EE26ECE04E899FDAEA1A227AC0432679902DA7737F2B5B8C91E71F7F5A858689E6919028A38ADB","key":"CF_SID"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"-1","key":"CF_SLV"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"/1cGaxGPTBHcD8RBFPNm12FtDYLb3lMpw7XIBqrYFhv/PCOTAE7wxR40Odzc4CqCBqtAOZUr4ANdr0FCU5+yshc/OebxJq3yb+4ZnDyqpu6AwS+bVPF+pa/xxdPnk2Wb9Paf0Dv+yZV/0G7/d6kslgWPqvC6vBmhi0lGAwQ6OUY=","key":"__RequestVerificationToken_L0NlemFubmVPbkRlbWFuZA__"}],"responseTime":"808","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#MaritalStatus/@Element\",\n    \"MaritalStatusPersonGUID\": null,\n    \"PersonCode\": \"26\",\n    \"MaritalStatusDescription\": \"Married\",\n    \"MaritalStatusDate\": \"2017-12-10T00:00:00\",\n    \"MaritalStatusEndDate\": \"2999-12-31T00:00:00\",\n    \"PreviousName\": null,\n    \"Comments\": null,\n    \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedDate\": \"2018-01-02T09:00:01.7243344Z\"\n}"}],"_postman_id":"3dc2575a-e693-3875-fdfc-c7d8de59397f"},{"name":"Update an Employee's Marital Status","id":"7c84382b-f21d-4bc2-9ed9-8f7b9372b157","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"Comments\": \"Example Comments\"\n}"},"url":"{{url}}/MaritalStatus(PersonCode='[PersonCode]', MaritalStatusDescription='[MaritalStatusDescription]', MaritalStatusDate=datetime'[MaritalStatusDate]')","description":"<p>This request will update an employee's Marital Status record in the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Request body includes only one field as an example. You can add any extra fields from the table that you require. However, some fields are read-only. \n</li>\n<li>The PersonCode, MaritalStatusDescription and MaritalStatusDate cannot be updated as they are the the key fields for this table.</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["MaritalStatus(PersonCode='[PersonCode]', MaritalStatusDescription='[MaritalStatusDescription]', MaritalStatusDate=datetime'[MaritalStatusDate]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7c84382b-f21d-4bc2-9ed9-8f7b9372b157"},{"name":"Delete an Employee's Marital Status","id":"694f1267-294c-899e-e8bc-d0b5f5fd000d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/MaritalStatus(PersonCode='[PersonCode]', MaritalStatusDescription='[MaritalStatusDescription]', MaritalStatusDate=datetime'[MaritalStatusDate]')","description":"<p>This request will delete an employee's Marital Status record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["MaritalStatus(PersonCode='[PersonCode]', MaritalStatusDescription='[MaritalStatusDescription]', MaritalStatusDate=datetime'[MaritalStatusDate]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"694f1267-294c-899e-e8bc-d0b5f5fd000d"}],"id":"9c64c99e-af36-86c4-bfa1-aa29558699bf","description":"<p>This API enables all information from the Marital Status tab on the Personal Information screen for active and inactive employees to be retrieved and modified. </p>\n<p>The identifying keys for Marital Status are:</p>\n<ul>\n<li>PersonCode</li>\n<li>MaritalStatusDescription</li>\n<li>MaritalStatusDate</li>\n</ul>\n\n<h2>Fields</h2>\n\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>MaritalStatusPersonGUID</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PersonCode</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>MaritalStatusDescription</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>MaritalStatusDate</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>MaritalStatusEndDate</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>PreviousName</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Comments</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2> Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to their and all subordinate records.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to their own record.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"4a835021-06b2-4171-82f5-c2aa68a7559e","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"9550348a-917b-4d48-a8cd-31795ef3330c","type":"text/javascript","exec":[""]}}],"_postman_id":"9c64c99e-af36-86c4-bfa1-aa29558699bf"},{"name":"Dependants","item":[{"name":"List of Employees' Dependants","id":"9983b7ad-97d5-aa83-e55f-c2e533faabf9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/Dependants?$format=json","description":"<p>This request will return a list of Dependants from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["Dependants"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"dc0a3ab9-a8e9-6daa-238b-a9484ca749d8","name":"List of Dependants","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token]"}],"url":{"raw":"{{url}}/Dependants?$format=json","host":["{{url}}"],"path":["Dependants"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"no-cache","description":""},{"name":"connection","key":"connection","value":"keep-alive","description":""},{"name":"content-length","key":"content-length","value":"1011","description":""},{"name":"content-type","key":"content-type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","description":""},{"name":"dataserviceversion","key":"dataserviceversion","value":"3.0;","description":""},{"name":"date","key":"date","value":"Mon, 31 Jul 2017 11:44:30 GMT","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"401","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#Dependants\",\n    \"value\": [\n        {\n            \"PersonCode\": \"26\",\n            \"FullName\": \"Cheryl Abrahams\",\n            \"Relationship\": \"Child\",\n            \"Salutation\": null,\n            \"FirstName\": \"Mark\",\n            \"MiddleName\": null,\n            \"FamilyName\": \"Mac Gregor\",\n            \"FamilyNamePrefix\": null,\n            \"SuffixTitle\": null,\n            \"AdditionalFamilyNames\": \"\",\n            \"DateOfBirth\": \"2010-02-09T00:00:00\",\n            \"AgeMonths\": 5,\n            \"AgeYears\": 7,\n            \"CityOfBirth\": null,\n            \"CountyOfBirth\": null,\n            \"CountyOfBirthCode\": null,\n            \"CountryOfBirth\": null,\n            \"Deceased\": 0,\n            \"DeceasedDate\": null,\n            \"HomeNumber\": null,\n            \"WorkNumber\": null,\n            \"WorkExtension\": null,\n            \"MobileNumber\": null,\n            \"Email\": null,\n            \"AddressLine1\": null,\n            \"AddressLine2\": null,\n            \"AddressLine3\": null,\n            \"AddressLine4\": null,\n            \"AddressLine5\": null,\n            \"City\": null,\n            \"CountyCode\": null,\n            \"County\": null,\n            \"Country\": null,\n            \"PostCode\": null,\n            \"Disabled\": 0,\n            \"TobaccoUser\": 0,\n            \"Student\": 0,\n            \"Gender\": null,\n            \"Comments\": null,\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2011-07-28T15:16:31.073Z\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"PayrollPartner\": 0,\n            \"PartnerNINumber\": null\n        }\n    ]\n}"}],"_postman_id":"9983b7ad-97d5-aa83-e55f-c2e533faabf9"},{"name":"Add an Employee's Dependants","id":"ded27055-597e-6500-0af4-6280cabe2e4e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"PersonCode\":\"26\",\n  \"Relationship\":\"Child\",\n  \"FirstName\":\"Mark\",\n  \"FamilyName\":\"Abrahams\"\n}"},"url":"{{url}}/Dependants?$format=json","description":"<p>This request will insert a Dependants record for an employee.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["Dependants"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"1cfe7fbd-6118-34c5-f8d6-466f766cbc36","name":"Add an Employee's Dependants","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"PersonCode\":\"26\",\n\t\"Relationship\":\"Child\",\n\t\"FirstName\":\"Mark\",\n\t\"FamilyName\":\"Abrahams\"\n}"},"url":{"raw":"{{url}}/Dependants?$format=json","host":["{{url}}"],"path":["Dependants"],"query":[{"key":"$format","value":"json"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"960","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","name":"Content-Type","description":""},{"key":"DataServiceVersion","value":"3.0;","name":"DataServiceVersion","description":""},{"key":"Date","value":"Tue, 02 Jan 2018 16:32:54 GMT","name":"Date","description":""},{"key":"Location","value":"https://showcase.cezanneondemand.com/cezanneondemand/v2/DataService.svc/Dependants(FamilyName='Abrahams',FirstName='Mark',PersonCode='26',Relationship='Child')","name":"Location","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"10FF1C8527C119F7CB4E7C4120B8992C37BA1C8AE5234A9C7292845F5BF38D235F1BB6B2EF2F3728FEB7A384928DF969505638D3077B989C224A35AD3FE86D663EBCCEECF12BB193FF45C084F261369A94F105CDE91537455E5B49C713A694D62D34D7A7888AD9B597BDD3246C7569B4C58B10C159A04F82DF9242075831F7E38CE8DEDD0EEAACDD6CF905FEA56D401CC4DB3789AF82193C78C9A4D6A124EB0BDE5B27B6C1663E44BDFDC68E369CC4FD3AE57BC82F41E15393895D53FCBF45BEF8EE38E5FAC9F414B14AF836AC55E69E37B3A04760F8929B12DD607AB5345FE24508BB570572B35BF0EE26ECE04E899FDAEA1A227AC0432679902DA7737F2B5B8C91E71F7F5A858689E6919028A38ADB","key":"CF_SID"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"-1","key":"CF_SLV"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"/1cGaxGPTBHcD8RBFPNm12FtDYLb3lMpw7XIBqrYFhv/PCOTAE7wxR40Odzc4CqCBqtAOZUr4ANdr0FCU5+yshc/OebxJq3yb+4ZnDyqpu6AwS+bVPF+pa/xxdPnk2Wb9Paf0Dv+yZV/0G7/d6kslgWPqvC6vBmhi0lGAwQ6OUY=","key":"__RequestVerificationToken_L0NlemFubmVPbkRlbWFuZA__"}],"responseTime":"594","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#Dependants/@Element\",\n    \"PersonCode\": \"26\",\n    \"FullName\": null,\n    \"Relationship\": \"Child\",\n    \"Salutation\": null,\n    \"FirstName\": \"Mark\",\n    \"MiddleName\": null,\n    \"FamilyName\": \"Abrahams\",\n    \"FamilyNamePrefix\": null,\n    \"SuffixTitle\": null,\n    \"AdditionalFamilyNames\": null,\n    \"DateOfBirth\": null,\n    \"AgeMonths\": null,\n    \"AgeYears\": null,\n    \"CityOfBirth\": null,\n    \"CountyOfBirth\": null,\n    \"CountyOfBirthCode\": null,\n    \"CountryOfBirth\": null,\n    \"Deceased\": 0,\n    \"DeceasedDate\": null,\n    \"HomeNumber\": null,\n    \"WorkNumber\": null,\n    \"WorkExtension\": null,\n    \"MobileNumber\": null,\n    \"Email\": null,\n    \"AddressLine1\": null,\n    \"AddressLine2\": null,\n    \"AddressLine3\": null,\n    \"AddressLine4\": null,\n    \"AddressLine5\": null,\n    \"City\": null,\n    \"CountyCode\": null,\n    \"County\": null,\n    \"Country\": null,\n    \"PostCode\": null,\n    \"Disabled\": 0,\n    \"TobaccoUser\": 0,\n    \"Student\": 0,\n    \"Gender\": null,\n    \"Comments\": null,\n    \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedDate\": \"2017-12-16T09:00:02.5993267Z\",\n    \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\"\n}"}],"_postman_id":"ded27055-597e-6500-0af4-6280cabe2e4e"},{"name":"Update an Employee's Dependants","id":"21b9035d-fd58-4c37-b994-08b36f9a6624","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"Comments\": \"Example Comments\"\n}"},"url":"{{url}}/Dependants(PersonCode='[PersonCode]', Relationship='[Relationship]', FirstName='[FirstName], FamilyName='[FamilyName]')","description":"<p>This request will update an employee's Dependants record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Request body includes only one field as an example. You can add any extra fields from the table that you require. However, some fields are read-only. \n</li>\n<li>The PersonCode, Relationship, FirstName and FamilyName cannot be updated as they are the the key fields for this table.</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["Dependants(PersonCode='[PersonCode]', Relationship='[Relationship]', FirstName='[FirstName], FamilyName='[FamilyName]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"21b9035d-fd58-4c37-b994-08b36f9a6624"},{"name":"Delete an Employee's Dependants","id":"21b53213-0b06-91cd-f561-b2a7a21260e9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/Dependants(PersonCode='[PersonCode]', Relationship='[Relationship]', FirstName='[FirstName], FamilyName='[FamilyName]')","description":"<p>This request will delete an employee's Dependants record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["Dependants(PersonCode='[PersonCode]', Relationship='[Relationship]', FirstName='[FirstName], FamilyName='[FamilyName]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"21b53213-0b06-91cd-f561-b2a7a21260e9"}],"id":"f2d1918f-d067-0ae6-dec8-926f0744e738","description":"<p>This API enables all information from the Dependants tab on the Contact Details screen for active and inactive employees to be retrieved and modified.</p>\n<p>The identifying keys for Dependants are:</p>\n<ul><li><p>PersonCode</p></li><li><p>Relationship</p></li><li><p>FirstName</p></li><li><p>FamilyName</p></li></ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PersonCode</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>FullName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Relationship</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>Salutation</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>FirstName</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>MiddleName</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>FamilyName</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>FamilyNamePrefix</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>SuffixTitle</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>AdditionalFamilyNames</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>DateOfBirth</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>AgeMonths</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AgeYears</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>CityOfBirth</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>CountyOfBirth</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>CountyOfBirthCode</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>CountryOfBirth</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Deceased</td>\n<td></td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>DeceasedDate</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>HomeNumber</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>WorkNumber</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>WorkExtension</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>MobileNumber</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Email</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>AddressLine1</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>AddressLine2</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>AddressLine3</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>AddressLine4</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>AddressLine5</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>City</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>CountyCode</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>County</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Country</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>PostCode</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Disabled</td>\n<td></td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>TobaccoUser</td>\n<td></td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>Student</td>\n<td></td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>Gender</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Comments</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PayrollPartner</td>\n<td></td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>PartnerNINumber</td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to their and all subordinate records.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to their own record.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"0f18f480-5961-4f50-91e1-b69119088d4a","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"43225dcc-5b19-4e53-a66a-b63f0ac38ad9","type":"text/javascript","exec":[""]}}],"_postman_id":"f2d1918f-d067-0ae6-dec8-926f0744e738"},{"name":"HAV Assessments","item":[{"name":"List of Employee HAV Assessments","id":"ba400071-c836-4300-b135-c13bd8bf49c5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/HAVAssessments?$format=json","description":"<p>This request will return a list of employee HAV Assessments in the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>","urlObject":{"path":["HAVAssessments"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"},{"disabled":true,"key":"$top","value":"1"}],"variable":[]}},"response":[{"id":"64ff7429-8b5b-40f2-b54f-3f17d01d0bc5","name":"List of Employee HAV Assessments","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."}],"url":{"raw":"{{url}}/HAVAssessments?$format=json","host":["{{url}}"],"path":["HAVAssessments"],"query":[{"key":"$format","value":"json"},{"key":"$top","value":"1","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"558","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"DataServiceVersion","value":"3.0;","name":"DataServiceVersion","description":"Custom header"},{"key":"Date","value":"Mon, 04 Jun 2018 12:30:19 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#HAVAssessments\",\n    \"value\": [\n        {\n            \"PersonCode\": \"CEZ003\",\n            \"FullName\": \"Michael Andrews\",\n            \"AssessmentDate\": \"2018-06-04T00:00:00\",\n            \"AssessmentLevel\": \"Second Tier\",\n            \"AssessmentOutcome\": \"HAV\",\n            \"NextReviewDate\": \"2019-06-04T00:00:00\",\n            \"IsRiddorReportable\": 1,\n            \"RiddorCategory\": \"HAVS\",\n            \"CurrentStatus\": null,\n            \"Comments\": null,\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2018-06-04T12:30:10.833Z\"\n        }\n    ]\n}"}],"_postman_id":"ba400071-c836-4300-b135-c13bd8bf49c5"},{"name":"Add an Employee's HAV Assessment","id":"948e5150-1450-4c48-b6f8-e38e92562269","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer Your-API-Token"}],"body":{"mode":"raw","raw":"{\n\t\"PersonCode\": \"100\",\n\t\"AssessmentDate\": \"2018-06-06T00:00:00\",\n\t\"AssessmentLevel\": \"First Tier\"\n}"},"url":"{{url}}/HAVAssessments?$format=json","description":"<p>This request will insert an HAV Assessment record for an employee.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["HAVAssessments"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"},{"disabled":true,"key":"$top","value":"1"}],"variable":[]}},"response":[{"id":"59b2c817-a507-4df8-a3ea-b8cb2d6737b2","name":"Add an Employee's HAV Assessment","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","warning":""},{"key":"Authorization","value":"Bearer Your-API-Token","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."}],"body":{"mode":"raw","raw":"{\n\t\"PersonCode\": \"100\",\n\t\"AssessmentDate\": \"2018-06-06T00:00:00\",\n\t\"AssessmentLevel\": \"First Tier\"\n}"},"url":{"raw":"{{url}}/HAVAssessments?$format=json","host":["{{url}}"],"path":["HAVAssessments"],"query":[{"key":"$format","value":"json"},{"key":"$top","value":"1","disabled":true}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"492","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"DataServiceVersion","value":"3.0;","name":"DataServiceVersion","description":"Custom header"},{"key":"Date","value":"Mon, 04 Jun 2018 14:22:31 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Location","value":"https://showcase.cezanneondemand.com/cezanneondemand/v2/DataService.svc/HAVAssessments(AssessmentDate=datetime'2018-06-06T00%3A00%3A00',AssessmentLevel='First%20Tier',PersonCode='100')","name":"Location","description":"Used in redirection, or when a new resource has been created."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#HAVAssessments/@Element\",\n    \"PersonCode\": \"100\",\n    \"FullName\": null,\n    \"AssessmentDate\": \"2018-06-06T00:00:00\",\n    \"AssessmentLevel\": \"First Tier\",\n    \"AssessmentOutcome\": null,\n    \"NextReviewDate\": null,\n    \"IsRiddorReportable\": 0,\n    \"RiddorCategory\": null,\n    \"CurrentStatus\": null,\n    \"Comments\": null,\n    \"InsertUser\": \"cheryl.abrahams@omnicrom.con\",\n    \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedDate\": \"2018-06-04T12:28:26.0870744Z\"\n}"}],"_postman_id":"948e5150-1450-4c48-b6f8-e38e92562269"},{"name":"Update an Employee's HAV Assessment","id":"25da3f03-dd93-42ad-9d4d-5d0bbbd96992","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"Comments\": \"Example Comments\"\n}"},"url":"{{url}}/HAVAssessments(PersonCode='[PersonCode]', AssessmentDate=datetime'[AssessmentDate]', AssessmentLevel='[AssessmentLevel]')","description":"<p>This request will update an employee's HAV Assessment record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Request body includes only one field as an example. You can add any extra fields from the table that you require. However, some fields are read-only. \n</li>\n<li>The PersonCode, AssessmentDate and AssessmentLevel cannot be updated as they are the the key fields for this table.</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["HAVAssessments(PersonCode='[PersonCode]', AssessmentDate=datetime'[AssessmentDate]', AssessmentLevel='[AssessmentLevel]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"25da3f03-dd93-42ad-9d4d-5d0bbbd96992"},{"name":"Delete an Employee's HAV Assessment","id":"e08464dd-057c-4a8c-ba46-f53ceaef99da","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/HAVAssessments(PersonCode='[PersonCode]', AssessmentDate=datetime'[AssessmentDate]', AssessmentLevel='[AssessmentLevel]')","description":"<p>This request will delete an employee's HAV Assessment record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["HAVAssessments(PersonCode='[PersonCode]', AssessmentDate=datetime'[AssessmentDate]', AssessmentLevel='[AssessmentLevel]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e08464dd-057c-4a8c-ba46-f53ceaef99da"}],"id":"7726be60-70ef-4e5a-aa82-c7a99320c5ee","description":"<p>This API enables all information from the HAV Assessments screen for active and inactive employees to be retrieved and modified.</p>\n<p>The identifying keys for Hav Assessments are:</p>\n<ul><li><p>PersonCode</p></li><li><p>AssessmentDate</p></li><li><p>AssessmentLevel</p></li></ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PersonCode</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>FullName</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>AssessmentDate</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>AssessmentLevel</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>AssessmentOutcome</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>NextReviewDate</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>IsRiddorReportable</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>RiddorCategory</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>CurrentStatus</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Comments</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>NextAssessmentLevel</td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to their and all subordinate records.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to their own record.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"ccb0bdbb-edfd-41be-9860-435f9c7446bc","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"b569e176-6f5f-4015-ac10-3c1fcd49b939","type":"text/javascript","exec":[""]}}],"_postman_id":"7726be60-70ef-4e5a-aa82-c7a99320c5ee"},{"name":"Photos (Read-only)","item":[{"name":"List of Employee Photos","id":"ad238edc-e8e4-46d7-9696-caddcce40437","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/Photos?$format=json","description":"<p>This request will return a list of Employee Photos from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["Photos"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"},{"disabled":true,"key":"$top","value":"1"}],"variable":[]}},"response":[{"id":"399b2245-3b31-453e-91ba-8a143e747cb6","name":"List of Employee Photos","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token","disabled":false}],"url":{"raw":"{{url}}/Photos?$format=json","host":["{{url}}"],"path":["Photos"],"query":[{"key":"$format","value":"json"},{"key":"$top","value":"1","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Content-Length","value":"10468","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"DataServiceVersion","value":"3.0;","name":"DataServiceVersion","description":"Custom header"},{"key":"Date","value":"Fri, 01 Jun 2018 18:01:39 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#Photos\",\n    \"value\": [\n        {\n            \"Filename\": \"\",\n            \"FileSize\": 5195,\n            \"PictureType\": \"JPG\",\n            \"Picture\": \"/9j/4AAQSkZJRgABAQEAYABgAAD/2wBDAAIBAQIBAQICAgICAgICAwUDAwMDAwYEBAMFBwYHBwcGBwcICQsJCAgKCAcHCg0KCgsMDAwMBwkODw0MDgsMDAz/2wBDAQICAgMDAwYDAwYMCAcIDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAz/wAARCABzAF8DASIAAhEBAxEB/8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQAAAF9AQIDAAQRBRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSExBhJBUQdhcRMiMoEIFEKRobHBCSMzUvAVYnLRChYkNOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6goOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcbHyMnK0tPU1dbX2Nna4uPk5ebn6Onq8vP09fb3+Pn6/9oADAMBAAIRAxEAPwD99NhAFIUORT8dB70r8Yp3JuRAYx/nvQ3SnGkYcVSKEbpQev50HkUdz+NMTQvf8aG6Gjv+NK3Q0Jk2E7/jSL98Uvf8aRfvigcQHUUH7hoHUUH7hpPYol7j8aD1FHcfjSnqKgloYV54rzr9qD9qvwB+xv8ACm78Z/EfxJY+G9CtTsV5iWmu5SCVhgiXLyyHBwqAnAJOACR1nxK+Iek/CT4ea74q166Wy0Tw3YT6nfzt0hghjaSRvwVTX8qH/BQr9ubxv/wU4/ab1HxXr1xcw6FbSyQ+HtFL5g0ay3fIgA4MrAAyP1dvRVVRXMkrs2o0Z1JcsT69/bv/AODpn4ofFXVr7SPgjptt8OvDQcxw6te28d5rdyv97Db4Ic/3VV2HUSV8UXP/AAVP/ad17WXupPjv8WBI53FYPEt3BHnOeI0cKB7AYrkLP4MxIiidgCOqrn8s/wCegrqfD/wy0+KVStvISTySOv1rjnmMY7H0NHh6ct0e6/s4f8F//wBqn4B6ratdeOB470mJh5uneKLVLwTDqf3423AOOmJMexr9if8Agml/wXj+F37f11a+F9VT/hXnxKmASPRNQuA9vqrY/wCXO4wokb/pmwWTrgOAWr8MJPgzYX9mZGs5EaTBEi/ln0rnvEvwCewjS70uZ7e6tnEscisUZGXkMrDoQcEEelRTzOEnaReJ4aqRjzQ3P62O/wCNNX7wr8+P+CAn/BSvWv2yvg1qngLx/eSXvxG+HUcQe/mOZdb09srHcOepljYeXI38WY2JLM1foQv3xXo3XQ+XlBxfKwHUUH7hoHUUH7hpPYRMRQRyKcP8/pSH+lQM+JP+DhTx/c+CP+CWXjq2tJWhn8S3Wn6PuU4by5LuN5V9w0cbqR6Ma/n8+Evwxl1vU4ba2izcMwwD8u/+n/6jX7ff8HKPjrQL/wDY90jwoniHRF8SweJtP1abRTex/b3s/LuovOEG7zPLEjoN+MZ4r8wfhN4bg8BJp2oyQm7N1kHyxyjHgADOCcMOCMdfrXJi5pJJ9T6TIaDk3JHefCj9h/R77Rxd+Ir+BfNiVwIgWZQQD0GTznGT064rL8cfs8aZ4OnCWayvEVJjc7Vzz7HPbv1xXsEHxOsP7NktteurXwjuAdGvJljeUHp8oPA7jjHHArm/FvhGHULRn0zXoNbikBYGGYsRnpznvnPPr2rjxEaMaV0j6rBurOvyp6nZfsv/ALK2k+NPDpe9Q3CykxFBc+U+DtIY8cDkjJwMgV2/xz/YE0KG236Vp0lkqLlsnLAggDPPlkYPOCOT7VQ/ZYsdV13T7PSl1638OaZaMGurmafqQORg98Y4zznocV7D8TviRoY0/wD4R7wP4u8NeNNfcYuIvt8knlKOufKV8HOOpUAkc8YqML7CrRulsGYfWKOJtJ2v0PlP/gljo95+yv8A8FbPBts7eVaeJlvNBvCpGJElgd41/wDAiKH8q/eQKQ1fg7oHxZ/4VP8AtQeDfHXi3R9XvZPCHiKC5ntdMhW4u5kDsT5allDfezyV4XNfu5omrQ+ItGtL+3L/AGe+hSeLcpVtrqGGQeQcEcV6WDqKVNW6HxWe0HTxF7bkw6ig/cNOPNIw+U11dDxicf5/SkPf6Uo/z+lIe/0qQP56v+Co3xF0/wAZ/wDBSn41R+Plu5Y7TWtO0Lw9aoxL2qx2kQaZBtPylJA5AK5MgPOCDY+Az2Om6Ba3t3ZPfy2tilzhVy27oCB68H9K9b/4OAP2Ur3wD+3L4e+KtjbSPpniq2hlmkSAyrHd26LbTh1AxhrYW+GJGCDwa4b4NeHo9K8TW6Qo/wBmn0q2miXfgFWjU5yewbP5e1eFiua8ova5+jZVKnKFKUFZ2/I86/aN+Jmp/GHSvCFxe+BI2i8Xaw3h6zls7YyNLNG0aO8jPKrqUMkYY+WqjPDEVxeg+Btb/Z//AGpdU+GkRubTVbAYnglXMS9flLcrwc4KMyH+Fm7e7/GLxJe+GZCbW/isjp7GaGW2DQmNsH52Mbrk4J5Oe/auB+GvgaC11hvFusa1fajqOpykzXUi48tI8hEQ/wC8Tn8etee8TSnBxSd+p9FTy7EU60Zyat0VtTq/j/e+J/gx+zX/AGy1rcXUOo3DuY7J9rrsYoWkcA7EDdT24rnf2JLz4ieH/jRc6Tos2j6NZal4XfVxrUcifZVleIutrKxhmdpc4Taok+chQD2+hPDR8I/EfwCfDl+73MNzd3kcsfmFhLbyHJzngckkEc554wK57wb8D9C/Z/8AHr2GnzXV/ZLMY/KncPIyemR82CPfB2niubB4mEFKKjfXud2aZdWqzjJztp23+84H4neF9Y174HwTeJZIo9T8V2dwmTgtAZE8oFtp4P7zJx0/DFfuV+zvpV/ofwB8DWWqXH2rU7PQLCC7m/57TLbRh2/FgT+Nfln+2P8ADC48W+M/Cmm6Ro95fTa3aJFbaTbxlZJMRsWCBQSDjoQDggHFfrh4btnsvD9hDJF5DxQRo0e4N5ZCgEZHBx617eTppST6HwPGUk/Z2e+vmWgOaHXqKVetD9a93ofDdbEo/wA/pSHv9KUf5/SkPf6VIzH8c/DvQPidoo03xJoekeINO3rN9l1Kzjuod6/dbZICuR2OMivxa+Os0HwJ+KWoWyRJbr4c1K80mECMFCsNxIqrj0+U49c1+x/x3+PHhL9mb4Vav428ca3aeH/DOhwiW7vLjJC5ICqqgFndmIVUUFmJAAJr8rf+C1XwmuPAHjS88R2lrcR6R8Qlj1azdk2m3ulRPOiPUB+A+O/mHGcGubF0eem9D18mxTpYhanyP+038e7z4veI1XQ9NEE15GsbxqpEVuTx8x/PArqPgonhT4R/D7T5PGtnrmtPbuyTW1jKoiwX3b2PMh4JGFTjHcV5D8PfF7R+JLe5tbS3mvtzYtrhysDuykfMV5A4UZ6/WvT7Pwj4g8e+HZprvQpnHmGKQ6OZLiKJz0UkMWH449q8f6nTlF9D9Io5liOdWV+x9Mfs4eKvh/Ja6xPbaNH4gk1OMfYITdvbvZKOTljgE/dHJ68d8VzH7Snwol8PeJ9K8aeGNTjS4ilQ3Vk1w0keAAAVcgEkYGWwM+1cN+zt8G9S0jx7ambRfE0txtEa2/2e6txKpHG13G3PrzxjNa/x7t/F/g7W7gPqOnxaQpU3GmoGnuIpM42NOWwRjGQF5JxxisMPgaVOPMztzHH4uU9VZad/1PoT/gm18ar79pv9uTw9qN/GAvhvTrtbdRnEaiF4yx9zvAz7Gv1K7/jX5pf8EGvg3LceMfG/jxoSmn2cI0S1k2/JLM7LLNtPqgVM/wDXav0uIwa93BU+Sn66n5dn+IVXFu3RJDF60r9aRetK/Wuy54djH+IvxO8OfCDwnc694r17R/DeiWYzPf6neR2tvF6Au5C5PYZya+M/i5/wcZ/so/CtLyO38eXviq9tEYi30XSLmQTOoyESWVI4iTjAO/bzya/no+Pv7SHxH/ad8SRap4+8YeJPFt82fLbUr2SdIQWOVjQnZGvH3UAHtXjt1p0sl3EAGYeYF4XdnPsevSu6OES3M+ds+3v+CoP/AAWG8ff8FOdTFpcW6+Gvh9pU5udK8O2snmneAVFxcy4Hmy7WIBwFUMQqglmb9mf2K/H/AIU/4LP/APBK3Q7XxVIX1eK2XR9ZmgK/atJ1e1QILuM4IVnVklA5BWYocjcK/m10awlj07y3guCnYuohjH17H8wa+uf+CK//AAUmvf8AgnF+1MLbV5RL8NvHbxWevW0bmT7IwJEV4gBPzRlmBA+8jMMZ2kbVKCcLJChNxldGx+2d+xd8Tv8Agnx8ZF03xck15pF5M50nXrVSLPVYweq/3JAMboj8y57qQxXwP8VNR0rbcaTezadeXCASEfPDcY6blPB5/EV/Qt8Tvhv4H/au+DEml69YaX4v8IeIrZJ4wSJIpkYZjmidTlWAOVdCCOoNfln+0N/wb0+M9A127vfhJ4ig1TR5GLxaXrE32e7gB6IsoHlyfVgn49a8HEYHmd4n12V5+6a5ajseQ/C/42/EnxTK8f8AwkWj24tQNrpAFnbP9w7uvNdP4R+GfiX9pr4u+H/AmlTn+1tZn/eSzvv8mNAWkuJCONqjLYHUjAySK+cfi38D/ix+xdZXOpeNPC+p6PptheNaNqsTR3ln9oB2eSJoGdPNLZUR53ZyMZBFfqz/AMEPf2Gta+G/g1vjN8Q4Lm18aeM7LydM0q4bMmiaezBsyj/n4lKqWH/LNAqDkyFuaOXvmvNWSPXx3ET9g3GV5PRH2f8As8/AfQv2afg9ovgzw5CY9O0eHZ5jgebdSnLSTSEdXdiSfrgYAArtSK/Lr9q3/gvR4j/YU/4KI+O/ht4t8JW3irwDo1zY/ZbmxP2bVLOO4sLa4OCT5UwVpWAVgh6ZfpX3H+yR+3t8K/23vCo1L4e+KrLVJ44xJdaZKfI1Kw7fvYG+YDJxuGUJ6Ma9Z0ZRje2h8BKfNK8tz2Apg01+tPPJprLmswP5BLDwet41iApO+fyzxyQGU/8As1c6/hETajDbBUx5olffnGArDtz1YV6ZHCbW1s2CgeXcs/Ax0EZ/pWHPDceGNfvJ/sxuII9sMjKiyGIBjltpGccjkc+1fRcqOW5nnwE1nAX+z2AU4PzTFc/m9Zr+G45JFLi1gG7ose8p7knPt0J+ld+NfsvEmnA2s9ndNEu+VdjRPGOnIwp6kVT1DTlgiLEKtnedNoP7pgPqTlSefUHPcYOVBc/aX/g3e/aX1bxF8B5PAWuPNd2ejM0mm3Ltu+zgt89uT6ZYOvs57Yr7Y/bq/aZs/wBjb9j74gfEyZYpJfC2kSz2UT/duLx8RW0Z9mneNT7E1+K3/BD39sH/AIUD8dL7wVrbKdF8VQkxMELyQ3EY3I8eOTuTd8oBL4RVBbYK+jv+Dj/9pV9X/Y28G+BtOvopG8R6y2qXDxOGW7tbWL5BkcFHe4jcHv5QxXHUw/NUT6GkW2fDUHjfWj431HUZdc1Epd37SmNp2YyyuVaSVueSzsWY9++a/QX9h39p/U/2Z/FXw+s0uri48M+MNVj07UredsIFmBUXCDopjfaxI6oHHPBH5v3yl7+1mgurPZqEFvkG5VW83ykDIcnhs5BB9V9a+oPBSr8TvEPgLwvoF/bX0+l2iYaGdZDFfzTLEiuVJwwXzSQeeQa+0xdGm8LJSWljmp3c0keW/wDBxH4Wm8Pf8FWvE815b3Ig8T6Lpd3ZEcJKFtkt2IODn5oCMDuPz+SPhz4m8QfCbxRY67oGq6l4e1ewn3Wd5aXjW93A4GQysu1gDkjI9D+P7Bf8HSf7N6eIvgT4G+K9rADf+Er4aVeyquWNvPllz/shw/J9R61+QF3ocZiju7e389JADncdqZAYHAx69SccGvjaCTgjpnufqn+w/wD8HJ+o+EtKttA+O2hXmtpAoij8S6LDGt02OP8ASbYlUYju8ZU4A+RiSa/T/wDZo/bP+GX7YPh6TUvh74u0zX1t1DXNqhMV5Z56ebA4EiDPAYrtJBwTX8wekabFqFrlim7hJipBCMc7W6dOxx/Wr3hPxJ4l+EniKLVvCuta54a1iFXijvNMu5LW5QEAOgeMhuh5GeQairg4vVaBGTRDqICWUaAAKsj4GPULUWpRKbzWjzlSwHP/AE3joor0nsYFDwRCn9pwTlVMvneQWIyTGWOVPqDuOR3zWlfQKr6jCAfKVXIXPQqcKfyJ/OiipexRB8NtdvPC/ijSNX0+4ktNT0fVbaWyuIzh7ZwxcFfoygj0P1NfpF/wczeBdI8J23w+fTbGGzMn2pSseQgDOjsAucKCzE4AHWiisH8cTWjueRfs82kXiDwzFa3kUc9vHZWlyqFQAJCuwtx6qiAjodor61/4JT+AdF1n9trxnBc6bayxW+mW2sRqUxtu4bnZFNx/EqSyAezmiivqMx/3KT8kc0fiR9Zf8Fj/AA5Y+I/+CYvxltb62juYIPDktzGr/wAEkTo8bg9cqyg/hX85Xwt/0/wlp6zfvFdY1YNzkbDRRXx2C6nTM7vQtDtbXw/aukID3EMxkOSd21AR+ROaqa5AhhztAJhRyRwSQdufyNFFd5mz/9k=\",\n            \"ThumbNail\": \"/9j/4AAQSkZJRgABAQEAYABgAAD/2wBDAAgGBgcGBQgHBwcJCQgKDBQNDAsLDBkSEw8UHRofHh0aHBwgJC4nICIsIxwcKDcpLDAxNDQ0Hyc5PTgyPC4zNDL/2wBDAQkJCQwLDBgNDRgyIRwhMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjL/wAARCABkAFMDASIAAhEBAxEB/8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQAAAF9AQIDAAQRBRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSExBhJBUQdhcRMiMoEIFEKRobHBCSMzUvAVYnLRChYkNOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6goOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcbHyMnK0tPU1dbX2Nna4uPk5ebn6Onq8vP09fb3+Pn6/9oADAMBAAIRAxEAPwD32iloNACUUUd6YBmisu98R6Jpsnl3ur2Nu/8AdlnVT/On2WvaRqbbbHVLO5b0imVj+hoA0aM0UlAhc0ZpKKBgTzRQetFIB1FFFAFXUL+10uwnvr6ZYbaBS8kjHgCvnvxp8XNW8QySWeitJp+mZxuU4llHqT/CPYV1Hx01iZv7N0CFyscgNzMAfvYOFB/HJ/KvLLLTyyhUj3Ofak5WNadPmMQW0szlyGZmOSzck/U1ajsJ42WSMOrDkMhwR+NdKdEvIRmSIqPpV2w0iW6YoinNZubOhUI2NHwh8VtZ8PyR2utGXUNNyBubmWIeoP8AEPY175p+oWmq6fDfWMyzW06743XoRXz1feF7uGEedCCGGcDk113wZ1Ka0vdQ8PzMfJK/aIFP8JzhgPzBq4yvuY1aXLqj2CiiirMAPWig9aKQDqDRVe/ufsenXN1gnyYmkwO+BmgDw34rxvd/EDy9pOy1jC/jk1V0Rba1jG51Eh4zjmsqK7m1S8gv7u9ea8mTdIjsW2A5IAJ7e3at1WsbaLyfKlkuJ1ypj6j/AOt9KyctTupwsrMs332l1O6EsnYntRoM5gkkAiMkjHCoveuVF7dQW8WoxXUzWU0pjXzScFh1HNdHBdXFnZz3/lNGI0Hzj+E+tRObTub04JxZ2d/ugsPNvLby8jhVUsfyFc94Rkt4/iDaXayJDHIskZ3kDJI4H1zjisPRNa1C61mMyRT3TTwvNEJnOzaM9s4HTvVhknmnsbpLdUuZJ0kjRhx94f0zVuWqMXC8Wj3uiiitTgEPWig9aKAHU2WNZonicZVwVI9jTqKAPm8aFLo3iK/06ZCGRmMZx1ABxg+mMVvR/u7KKZQu9V4Y9R24r03xraRPoMlz5SedE6HftG7GcHn05ryO41d7W3ms1TIPHPUH2rCcbbHfQqKW5TlSS+aO1kn/ANFtj5iwheN3rXQWE1sYJIHlZgyqAPUgnt9K5zTISkz3V4N4ZeEDY/Wuh0rV9Pa8VzZxxsBsETHKk+uaykpHZCUNWNt9Jt9IvAkMrvG3RCeQD2FbU+nvL4p0yOCB2AZJBGvG1QRk/Ss7V7WGYR3ls4juIiCQn3celbvw9vZ9V1+5up+Wig2D2Gf/AK1XGLurmFWaUW0elUtJSiuk8saetFKetFAC0V5P4g+OOmWitFolnJey/wDPWX5Ix/U153rHxg8V6zbSWn2iCzik4Y2yFWx6biSafKxXPb5/FOmaz4qm8HxFJc2rvPMG4VuBsHqecn0xXjnia1uNG12e1uwFdeOf417MPYiuR0bV7nw/rdlrFsSZLeQORn76/wAQ98jNfR2raJonxG8OWt4jj95HvtrpPvRk9VPqM9RRKBpTnys8fspVmEYkvGWMjaAy5Rfy5rZs9KUSpMJ7UjOfvHisHVtA1Twndta6hEwjJ/dzoMxyD2P9Khs7mzE4aSLcB15xWLTO+FSNjp9Zjg8zzY7pnK8ZU4Rj9K774b6TJZ6PLfzIVe8YFAeuwdD+PWuK8KWEHiPxHFarG8lnbjzZz2A7L+J/rXsVteWU8sltbTwtJAdkkSMMx+xHaqinuznxE18KLNFFFWcoh60UHrRQB8cG3JA47VAlv+8HrjnmtkIAEGMkgiobYIJSrZ3E8D1Fb2JKZiG3+H8cmvRfhN4sm0LUv7HunLaddNkZ/wCWTnuPY9642WPLEDOR0GKfp9wtjqMFyylolcFl9u4oaA+qLiyt72Ix3EUc0TdUdQwNeI+M/wDhHo9du7Cw0lIzGNguIJCNsg+9lehAPGPavVhr9vb+HJdRikDwx2pljJPXA4B/HFfPVnNLcWi3Mm5pJpJDIepyWz/WilBSlqPma2PXvhxqOn6Tp0Ol+R5LTycXDNlppD3b09u1ebePrm7034m6tcWU8tvOsqOskb7Tyi/4Vt2Ukq2ulhB++83zRj/ZIx+tL8ZtF+y+JLHWUXCXsYik9N69P0p1IKMtAu2tS/4V+Mc8ey28RReanT7XCvzD/eXv9RXrun6lZararc2F1FcQsMh42z/+qvk/aVcKx9gAKu2V1faXOLiwu5raUH70Tlf/ANdZuHYLn1Yc5orwu3+MniCC3jils7K4kQYMrBgX9yBxRU8rHc4XADR8d6rSqrQ/MoPzd6KK3IJYkCwNjPy4K89M0yTHmLwPnxmiikB6TooN18INSeRm3RM8IweqjBGfzx9K5Pw3BFcWAWWMMGLc5PGOaKKuj8Q3sdz4R0y2l8WiN1YosIkUbjwVI6fXvW78ZbeKbwDJM6/vLeeN429CTg0UVFb4wWx4ioEkSluvt9ateWqgKBwMiiigCBwAxxxRRRQI/9k=\",\n            \"PersonCode\": \"544B7D04-AA4F-4393-9D5D-2C800CFCFDE8\",\n            \"FullName\": \"Mandy Langford\",\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2010-06-26T18:04:53.777Z\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\"\n        }\n    ]\n}"}],"_postman_id":"ad238edc-e8e4-46d7-9696-caddcce40437"}],"id":"14e57346-5605-44ab-9427-d9aec4a19b36","description":"<p>This API enables all photo details for active and inactive employees to be retrieved and modified.</p>\n<p>The identifying key for Photos is:</p>\n<ul><li><div>PersonCode</div></li></ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Filename</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>FileSize</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PictureType</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Picture</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ThumbNail</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PersonCode</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>FullName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to their and all subordinate records.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to their own record.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"e2aa0111-d9b6-4a7c-9a72-fcfd2211ea9f","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"bb25ffc9-eff9-4977-b71d-3ad5a2fb8bde","type":"text/javascript","exec":[""]}}],"_postman_id":"14e57346-5605-44ab-9427-d9aec4a19b36"},{"name":"Genders Picklist (Read-only)","item":[{"name":"List of Genders","id":"934fe5a4-b88a-4643-8e9f-00590c2750e2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/Genders?$format=json","description":"<p>This request will return a list of Employee Photos from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["Genders"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"},{"disabled":true,"key":"$top","value":"1"}],"variable":[]}},"response":[],"_postman_id":"934fe5a4-b88a-4643-8e9f-00590c2750e2"}],"id":"93f533d7-5956-4b7c-8913-e6fe361ea186","description":"<p>This API enables all gender picklist items to be retrieved.</p>\n<p>The identifying key for Genders is:</p>\n<ul><li><div>CodeGuid</div></li></ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CodeGuid</td>\n<td></td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>Code</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>CodeDescription</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>SortOrder</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Colour</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to all items.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has read-only access to all items.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to all items.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to all items.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"93f533d7-5956-4b7c-8913-e6fe361ea186"},{"name":"Address Types Picklist (Read-only)","item":[{"name":"List of Address Types","id":"d9a6481c-b876-47b4-a5f8-e9850623019d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/Genders?$format=json","description":"<p>This request will return a list of Employee Photos from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["Genders"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"},{"disabled":true,"key":"$top","value":"1"}],"variable":[]}},"response":[],"_postman_id":"d9a6481c-b876-47b4-a5f8-e9850623019d"}],"id":"6d6cc630-6428-4ac5-903d-fad3a3912c07","description":"<p>This API enables all address types picklist items to be retrieved.</p>\n<p>The identifying key for Address Types is:</p>\n<ul><li><div>CodeGuid</div></li></ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CodeGuid</td>\n<td></td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>Code</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>CodeDescription</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>SortOrder</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>OverlappingAddressesNotAllowed</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to all items.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has read-only access to all items.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to all items.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to all items.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"6d6cc630-6428-4ac5-903d-fad3a3912c07"}],"id":"527dd309-ab58-75cb-384e-7780f4fcbf84","_postman_id":"527dd309-ab58-75cb-384e-7780f4fcbf84","description":""},{"name":"Contact Details","item":[{"name":"Emergency Contacts","item":[{"name":"List of Employee Emergency Contacts","id":"ae844336-be28-031c-e81d-e4be396e5049","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/EmergencyContacts?$format=json","description":"<p>This request will return a list of Emergency Contacts from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["EmergencyContacts"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"805cb665-b2e9-9e58-3d18-54b1a50dbf08","name":"List of Emergency Contacts","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token  "}],"url":{"raw":"{{url}}/EmergencyContacts?$format=json","host":["{{url}}"],"path":["EmergencyContacts"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"no-cache","description":""},{"name":"connection","key":"connection","value":"keep-alive","description":""},{"name":"content-length","key":"content-length","value":"737","description":""},{"name":"content-type","key":"content-type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","description":""},{"name":"dataserviceversion","key":"dataserviceversion","value":"3.0;","description":""},{"name":"date","key":"date","value":"Mon, 31 Jul 2017 14:18:42 GMT","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"558","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#EmergencyContacts\",\n    \"value\": [\n        {\n            \"PersonCode\": \"27\",\n            \"FullName\": \"Brenda Becker\",\n            \"Relationship\": \"Parent\",\n            \"Priority\": 1,\n            \"Salutation\": null,\n            \"FirstName\": \"James\",\n            \"MiddleName\": null,\n            \"FamilyName\": \"Becker\",\n            \"FamilyNamePrefix\": null,\n            \"HomeNumber\": null,\n            \"WorkNumber\": null,\n            \"WorkExtension\": null,\n            \"MobileNumber\": \"07780 7001111\",\n            \"Email\": null,\n            \"AddressLine1\": null,\n            \"AddressLine2\": null,\n            \"AddressLine3\": null,\n            \"AddressLine4\": null,\n            \"AddressLine5\": null,\n            \"City\": null,\n            \"County\": null,\n            \"CountyCode\": null,\n            \"Country\": null,\n            \"PostCode\": null,\n            \"Comments\": null,\n            \"InsertUser\": \"* cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2017-05-05T11:29:47.25Z\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\"\n        }\n    ]\n}"}],"_postman_id":"ae844336-be28-031c-e81d-e4be396e5049"},{"name":"Add an Employee's Emergency Contacts","id":"4a6a3419-53b2-b8e5-dbe8-b2c7b59868c2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"PersonCode\":\"26\",\n  \"Relationship\":\"Parent\",\n  \"Priority\":\"1\",\n  \"FirstName\":\"John\",\n  \"FamilyName\":\"Smith\"\n}"},"url":"{{url}}/EmergencyContacts?$format=json","description":"<p>This request will insert an Emergency Contacts record for an employee.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["EmergencyContacts"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"9c009b26-9149-4c2c-9efd-3f19070523c8","name":"Add an Employee's Emergency Contacts","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"PersonCode\":\"26\",\n\t\"Relationship\":\"Parent\",\n\t\"Priority\":\"1\",\n\t\"FirstName\":\"John\",\n\t\"FamilyName\":\"Smith\"\n}"},"url":{"raw":"{{url}}/EmergencyContacts?$format=json","host":["{{url}}"],"path":["EmergencyContacts"],"query":[{"key":"$format","value":"json"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"703","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","name":"Content-Type","description":""},{"key":"DataServiceVersion","value":"3.0;","name":"DataServiceVersion","description":""},{"key":"Date","value":"Tue, 02 Jan 2018 16:37:00 GMT","name":"Date","description":""},{"key":"Location","value":"https://showcase.cezanneondemand.com/cezanneondemand/v2/DataService.svc/EmergencyContacts(FamilyName='Smith',FirstName='John',PersonCode='26',Relationship='Parent')","name":"Location","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"10FF1C8527C119F7CB4E7C4120B8992C37BA1C8AE5234A9C7292845F5BF38D235F1BB6B2EF2F3728FEB7A384928DF969505638D3077B989C224A35AD3FE86D663EBCCEECF12BB193FF45C084F261369A94F105CDE91537455E5B49C713A694D62D34D7A7888AD9B597BDD3246C7569B4C58B10C159A04F82DF9242075831F7E38CE8DEDD0EEAACDD6CF905FEA56D401CC4DB3789AF82193C78C9A4D6A124EB0BDE5B27B6C1663E44BDFDC68E369CC4FD3AE57BC82F41E15393895D53FCBF45BEF8EE38E5FAC9F414B14AF836AC55E69E37B3A04760F8929B12DD607AB5345FE24508BB570572B35BF0EE26ECE04E899FDAEA1A227AC0432679902DA7737F2B5B8C91E71F7F5A858689E6919028A38ADB","key":"CF_SID"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"-1","key":"CF_SLV"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"/1cGaxGPTBHcD8RBFPNm12FtDYLb3lMpw7XIBqrYFhv/PCOTAE7wxR40Odzc4CqCBqtAOZUr4ANdr0FCU5+yshc/OebxJq3yb+4ZnDyqpu6AwS+bVPF+pa/xxdPnk2Wb9Paf0Dv+yZV/0G7/d6kslgWPqvC6vBmhi0lGAwQ6OUY=","key":"__RequestVerificationToken_L0NlemFubmVPbkRlbWFuZA__"}],"responseTime":"603","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#EmergencyContacts/@Element\",\n    \"PersonCode\": \"26\",\n    \"FullName\": null,\n    \"Relationship\": \"Parent\",\n    \"Priority\": 1,\n    \"Salutation\": null,\n    \"FirstName\": \"John\",\n    \"MiddleName\": null,\n    \"FamilyName\": \"Smith\",\n    \"FamilyNamePrefix\": null,\n    \"HomeNumber\": null,\n    \"WorkNumber\": null,\n    \"WorkExtension\": null,\n    \"MobileNumber\": null,\n    \"Email\": null,\n    \"AddressLine1\": null,\n    \"AddressLine2\": null,\n    \"AddressLine3\": null,\n    \"AddressLine4\": null,\n    \"AddressLine5\": null,\n    \"City\": null,\n    \"County\": null,\n    \"CountyCode\": null,\n    \"Country\": null,\n    \"PostCode\": null,\n    \"Comments\": null,\n    \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedDate\": \"2017-12-16T09:00:02.6774552Z\",\n    \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\"\n}"}],"_postman_id":"4a6a3419-53b2-b8e5-dbe8-b2c7b59868c2"},{"name":"Update an Employee's Emergency Contacts","id":"9d17a075-ba42-4fbf-8339-24c3967620d1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"Comments\": \"Example Comments\"\n}"},"url":"{{url}}/EmergencyContacts(PersonCode='[PersonCode]', Relationship='[Relationship]', FirstName='[FirstName]', FamilyName='[FamilyName]')","description":"<p>This request will update an employee's Emergency Contacts record in the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Request body includes only one field as an example. You can add any extra fields from the table that you require. However, some fields are read-only. \n</li>\n<li>The PersonCode, Relationship, FirstName and FamilyName cannot be updated as they are the the key fields for this table.</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["EmergencyContacts(PersonCode='[PersonCode]', Relationship='[Relationship]', FirstName='[FirstName]', FamilyName='[FamilyName]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9d17a075-ba42-4fbf-8339-24c3967620d1"},{"name":"Delete an Employee's Emergency Contacts","id":"f3470375-405b-9fca-c479-9fdea30a8a70","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/EmergencyContacts(PersonCode='[PersonCode]', Relationship='[Relationship]', FirstName='[FirstName]', FamilyName='[FamilyName]')","description":"<p>This request will delete an employee's Emergency Contacts record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["EmergencyContacts(PersonCode='[PersonCode]', Relationship='[Relationship]', FirstName='[FirstName]', FamilyName='[FamilyName]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f3470375-405b-9fca-c479-9fdea30a8a70"}],"id":"e376ac94-1399-2cd5-04c0-2e5b3bc4bdd5","description":"<p>This API enables all information from the Emergency Contacts tab on the Contact Details screen for active and inactive employees to be retrieved and modified. </p>\n<p>The identifying keys for Employment Contracts are:</p>\n<ul>\n<li>PersonCode</li>\n<li>Relationship</li>\n<li>FirstName</li>\n</ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PersonCode</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>FullName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Relationship</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>Pritority</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>Salutation</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>FirstName</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>MiddleName</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>FamilyName</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>FamilyNamePrefix</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>HomeNumber</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>WorkNumber</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>WorkExtension</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>MobileNumber</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Email</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>AddressLine1</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>AddressLine2</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>AddressLine3</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>AddressLine4</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>AddressLine5</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>City</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>County</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>CountyCode</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Country</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>PostCode</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Comments</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2> Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to their and all subordinate records.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to their own record.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"c05ccd4b-bcbc-4cc5-ba26-c1c442c18785","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"d5ce364a-6dde-4234-84cc-af7b4af11630","type":"text/javascript","exec":[""]}}],"_postman_id":"e376ac94-1399-2cd5-04c0-2e5b3bc4bdd5"},{"name":"Communications","item":[{"name":"List of Employee Contact Details","id":"e4563ab9-1325-5187-01df-275c0874faad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/Communications?$format=json","description":"<p>This request will return a list of Contact Details from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["Communications"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"6d40e976-c8a9-80b1-0288-d318c34e53e2","name":"List of Employee Contact Details","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/Communications?$format=json","host":["{{url}}"],"path":["Communications"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"no-cache","description":""},{"name":"content-length","key":"content-length","value":"611","description":""},{"name":"content-type","key":"content-type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","description":""},{"name":"dataserviceversion","key":"dataserviceversion","value":"3.0;","description":""},{"name":"date","key":"date","value":"Wed, 16 Aug 2017 10:21:14 GMT","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"1026","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#Communications\",\n    \"value\": [\n        {\n            \"PersonGUID\": \"ba97079f-3f33-416a-b23b-91df336d0075\",\n            \"PersonCode\": \"0029\",\n            \"FullName\": \"Bill Morrow\",\n            \"WorkNumber\": \"01173665001\",\n            \"WorkExtension\": null,\n            \"HomeNumber\": null,\n            \"MobileNumber\": null,\n            \"PersonalMobileNumber\": 7272727272,\n            \"OtherNumber\": null,\n            \"FaxNumber\": null,\n            \"PagerNumber\": null,\n            \"SkypeName\": null,\n            \"Messenger\": null,\n            \"InternalEmail\": \"BillMorrow@omnicrom.com\",\n            \"ExternalEmail\": null,\n            \"AlternateEmail\": null,\n            \"HTMLPreferred\": 1,\n            \"Comments\": null,\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2011-02-15T13:49:20.25Z\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"FreeCheckbox1\": null,\n            \"FreeCheckbox2\": null,\n            \"FreeDate1\": null,\n            \"FreeDate2\": null,\n            \"FreeNumber1\": null,\n            \"FreeNumber2\": null,\n            \"FreeNumericUpDown1\": null,\n            \"FreeNumericUpDown2\": null,\n            \"FreeRichText1\": null,\n            \"FreeText1\": null,\n            \"FreeText2\": null,\n            \"FreeText3\": null,\n            \"FreeText4\": null,\n            \"FreeText5\": null,\n            \"FreeTextMultiLine1\": null,\n            \"FreeTextMultiLine2\": null\n        }\n    ]\n}"}],"_postman_id":"e4563ab9-1325-5187-01df-275c0874faad"},{"name":"Add an Employee's Contact Details","id":"4dbcac38-72ad-9e81-70b3-e8b80f80ce8d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"PersonCode\":\"CEZ01\"\n}"},"url":"{{url}}/Communications?$format=json","description":"<p>This request will insert a Contact Details record for an employee.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["Communications"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"f65d0ac5-15b8-2149-7770-8d5dcfc268af","name":"Add an Employee's Contact Details","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"PersonCode\":\"CE14\"\n}"},"url":{"raw":"{{url}}/Communications?$format=json","host":["{{url}}"],"path":["Communications"],"query":[{"key":"$format","value":"json"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"576","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","name":"Content-Type","description":""},{"key":"DataServiceVersion","value":"3.0;","name":"DataServiceVersion","description":""},{"key":"Date","value":"Tue, 02 Jan 2018 16:41:04 GMT","name":"Date","description":""},{"key":"Location","value":"https://showcase.cezanneondemand.com/cezanneondemand/v2/DataService.svc/Communications('CE14')","name":"Location","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"10FF1C8527C119F7CB4E7C4120B8992C37BA1C8AE5234A9C7292845F5BF38D235F1BB6B2EF2F3728FEB7A384928DF969505638D3077B989C224A35AD3FE86D663EBCCEECF12BB193FF45C084F261369A94F105CDE91537455E5B49C713A694D62D34D7A7888AD9B597BDD3246C7569B4C58B10C159A04F82DF9242075831F7E38CE8DEDD0EEAACDD6CF905FEA56D401CC4DB3789AF82193C78C9A4D6A124EB0BDE5B27B6C1663E44BDFDC68E369CC4FD3AE57BC82F41E15393895D53FCBF45BEF8EE38E5FAC9F414B14AF836AC55E69E37B3A04760F8929B12DD607AB5345FE24508BB570572B35BF0EE26ECE04E899FDAEA1A227AC0432679902DA7737F2B5B8C91E71F7F5A858689E6919028A38ADB","key":"CF_SID"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"-1","key":"CF_SLV"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"/1cGaxGPTBHcD8RBFPNm12FtDYLb3lMpw7XIBqrYFhv/PCOTAE7wxR40Odzc4CqCBqtAOZUr4ANdr0FCU5+yshc/OebxJq3yb+4ZnDyqpu6AwS+bVPF+pa/xxdPnk2Wb9Paf0Dv+yZV/0G7/d6kslgWPqvC6vBmhi0lGAwQ6OUY=","key":"__RequestVerificationToken_L0NlemFubmVPbkRlbWFuZA__"}],"responseTime":"429","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#Communications/@Element\",\n    \"PersonGUID\": null,\n    \"PersonCode\": \"CEZ01\",\n    \"FullName\": null,\n    \"WorkNumber\": null,\n    \"WorkExtension\": null,\n    \"HomeNumber\": null,\n    \"MobileNumber\": null,\n    \"PersonalMobileNumber\": null,\n    \"OtherNumber\": null,\n    \"FaxNumber\": null,\n    \"PagerNumber\": null,\n    \"SkypeName\": null,\n    \"Messenger\": null,\n    \"InternalEmail\": null,\n    \"ExternalEmail\": null,\n    \"AlternateEmail\": null,\n    \"HTMLPreferred\": 1,\n    \"Comments\": null,\n    \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedDate\": \"2017-12-16T09:00:02.5368266Z\",\n    \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"FreeCheckbox1\": null,\n    \"FreeCheckbox2\": null,\n    \"FreeDate1\": null,\n    \"FreeDate2\": null,\n    \"FreeNumber1\": null,\n    \"FreeNumber2\": null,\n    \"FreeNumericUpDown1\": null,\n    \"FreeNumericUpDown2\": null,\n    \"FreeRichText1\": null,\n    \"FreeText1\": null,\n    \"FreeText2\": null,\n    \"FreeText3\": null,\n    \"FreeText4\": null,\n    \"FreeText5\": null,\n    \"FreeTextMultiLine1\": null,\n    \"FreeTextMultiLine2\": null\n}"}],"_postman_id":"4dbcac38-72ad-9e81-70b3-e8b80f80ce8d"},{"name":"Update an Employee's Contact Details","id":"fa247a16-0598-4a0f-85fd-8fe08265668b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"Comments\": \"Example Comments\"\n}"},"url":"{{url}}/Communications(PersonCode='[PersonCode]')","description":"<p>This request will update an employee's Contact Details record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Request body includes only one field as an example. You can add any extra fields from the table that you require. However, some fields are read-only. \n</li>\n<li>The PersonCode cannot be updated as this is the the key field for this table.</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["Communications(PersonCode='[PersonCode]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"fa247a16-0598-4a0f-85fd-8fe08265668b"},{"name":"Delete an Employee's Contact Details","id":"e9f747c2-81a6-22a7-0073-1b9593b739ff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/Communications(PersonCode='[PersonCode]')","description":"<p>This request will delete an employee's Contact Details record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["Communications(PersonCode='[PersonCode]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e9f747c2-81a6-22a7-0073-1b9593b739ff"}],"id":"06cace2d-07e7-684d-c38c-04b8f11978c8","description":"<p>This API enables all information from the Communication tab on the Contact Details screen for active and inactive employees to be retrieved and modified through this API.</p>\n<p>The identifying key for Communications is:</p>\n<ul>\n<li>PersonCode</li>\n</ul>\n\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PersonGUID</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PersonCode</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>FullName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>WorkNumber</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>WorkExtension</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>HomeNumber</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>MobileNumber</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>PersonalMobileNumber</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>OtherNumber</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>FaxNumber</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>PagerNumber</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>SkypeName</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Messenger</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>InternalEmail</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>ExternalEmail</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>AlternateEmail</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>HTMLPreferred</td>\n<td></td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>Comments</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>FreeCheckbox1</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field  within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeCheckbox2</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field  within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeCheckbox3</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field  within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeDate1</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field  within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeDate2</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field  within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeNumber1</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field  within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeNumber2</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field  within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeNumericUpDown1</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field  within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeNumericUpDown2</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field  within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeRichText1</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field  within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeText1</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field  within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeText2</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field  within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeText3</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field  within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeText4</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field  within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeText5</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field  within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeTextMultiLine1</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field  within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeTextMultiLine2</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field  within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n</tbody>\n</table>\n</div><h2> Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to their and all subordinate records.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to their own record.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"72b64f99-78be-44da-82e4-37f85524d2ec","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"77835b37-086f-4220-a576-1aafdff35a2d","type":"text/javascript","exec":[""]}}],"_postman_id":"06cace2d-07e7-684d-c38c-04b8f11978c8"},{"name":"Addresses","item":[{"name":"List of Employee Addresses","id":"947dc1fb-f262-b362-a478-a43e23c25733","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/Addresses?$format=json","description":"<p>This request will return a list of Addresses from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["Addresses"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"f868083c-d1c4-e7da-151c-db5009531276","name":"List of Employee Addresses","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/Addresses?$format=json&$top=1","host":["{{url}}"],"path":["Addresses"],"query":[{"key":"$format","value":"json"},{"key":"$top","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"661","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","name":"Content-Type","description":""},{"key":"DataServiceVersion","value":"3.0;","name":"DataServiceVersion","description":""},{"key":"Date","value":"Wed, 17 Jan 2018 17:11:52 GMT","name":"Date","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"10FF1C8527C119F7CB4E7C4120B8992C37BA1C8AE5234A9C7292845F5BF38D235F1BB6B2EF2F3728FEB7A384928DF969505638D3077B989C224A35AD3FE86D663EBCCEECF12BB193FF45C084F261369A94F105CDE91537455E5B49C713A694D62D34D7A7888AD9B597BDD3246C7569B4C58B10C159A04F82DF9242075831F7E38CE8DEDD0EEAACDD6CF905FEA56D401CC4DB3789AF82193C78C9A4D6A124EB0BDE5B27B6C1663E44BDFDC68E369CC4FD3AE57BC82F41E15393895D53FCBF45BEF8EE38E5FAC9F414B14AF836AC55E69E37B3A04760F8929B12DD607AB5345FE24508BB570572B35BF0EE26ECE04E899FDAEA1A227AC0432679902DA7737F2B5B8C91E71F7F5A858689E6919028A38ADB","key":"CF_SID"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"-1","key":"CF_SLV"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"/1cGaxGPTBHcD8RBFPNm12FtDYLb3lMpw7XIBqrYFhv/PCOTAE7wxR40Odzc4CqCBqtAOZUr4ANdr0FCU5+yshc/OebxJq3yb+4ZnDyqpu6AwS+bVPF+pa/xxdPnk2Wb9Paf0Dv+yZV/0G7/d6kslgWPqvC6vBmhi0lGAwQ6OUY=","key":"__RequestVerificationToken_L0NlemFubmVPbkRlbWFuZA__"}],"responseTime":"664","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#Addresses\",\n    \"value\": [\n        {\n            \"PersonGUID\": \"ee552c7c-9462-40t3-a2b7-ttrr6734a9fe\",\n            \"PersonCode\": \"24377\",\n            \"FullName\": \"Mr Howell\",\n            \"Salutation\": null,\n            \"EffectiveFrom\": \"2009-08-29T00:00:00\",\n            \"EffectiveTo\": \"2999-12-31T00:00:00\",\n            \"AddressType\": \"Home\",\n            \"AddressLine1\": \"10 Weavers Way\",\n            \"AddressLine2\": \"West Molesey\",\n            \"AddressLine3\": \"Surrey\",\n            \"AddressLine4\": null,\n            \"AddressLine5\": null,\n            \"City\": null,\n            \"County\": null,\n            \"CountyCode\": null,\n            \"Country\": \"United Kingdom\",\n            \"PostCode\": \"KT8 1SG\",\n            \"Comments\": null,\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2011-07-28T14:45:26.043Z\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\"\n        }\n    ]\n}"}],"_postman_id":"947dc1fb-f262-b362-a478-a43e23c25733"},{"name":"Add an Employee's Address","id":"d3aa27e3-802c-ba0c-8fcd-6e5b451b82d9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"password":"<password>","username":"<username>","showPassword":"<show-password>"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Authorization","value":"Bearer Your-API-Token"}],"body":{"mode":"raw","raw":"{\r\n  \"PersonCode\": \"100\",\r\n  \"EffectiveFrom\": \"2017-01-01T00:00:00\",\r\n  \"AddressType\": \"Home\",\r\n  \"AddressLine1\": \"24 First Street\"\r\n}"},"url":"{{url}}/Addresses?$format=json","description":"<p>This request will insert an Address Details record for an employee.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>If the EffectiveTo is left blank, the system will try to insert the record with EffectiveTo set to Open Ended.</li>\n<li>If the AddressType has the 'Overlapping addresses not allowed' option ticked on the Address Types picklist, the record must not span any of the active dates of another record with that AddressType.</li>\n</ul>","urlObject":{"path":["Addresses"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"c855b0bd-b11f-807f-612d-1bc43b2765da","name":"Add an Employee's Address","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer  Your-API-Token","warning":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","warning":""}],"body":{"mode":"raw","raw":"{\n\t\"PersonCode\": \"100\",\n\t\"EffectiveFrom\": \"2017-01-01T00:00:00\",\n\t\"AddressType\": \"Home\",\n\t\"AddressLine1\": \"24 First Street\"\n}"},"url":{"raw":"{{url}}/Addresses?$format=json","host":["{{url}}"],"path":["Addresses"],"query":[{"key":"$format","value":"json"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"no-cache","description":""},{"name":"content-length","key":"content-length","value":"631","description":""},{"name":"content-type","key":"content-type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","description":""},{"name":"dataserviceversion","key":"dataserviceversion","value":"3.0;","description":""},{"name":"date","key":"date","value":"Thu, 24 Aug 2017 09:23:51 GMT","description":""},{"name":"location","key":"location","value":"https://showcase.cezanneondemand.com/cezanneondemand/v2/DataService.svc/Addresses(AddressLine1='24%20First%20Street',AddressType='Home',EffectiveFrom=datetime'2017-01-01T00%3A00%3A00',PersonCode='100')","description":""},{"name":"status","key":"status","value":"201","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"642","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#Addresses/@Element\",\n    \"PersonCode\": \"100\",\n    \"FullName\": null,\n    \"Salutation\": null,\n    \"EffectiveFrom\": \"2017-01-01T00:00:00\",\n    \"EffectiveTo\": \"2999-12-31T00:00:00\",\n    \"AddressType\": \"Home\",\n    \"AddressLine1\": \"24 First Street\",\n    \"AddressLine2\": null,\n    \"AddressLine3\": null,\n    \"AddressLine4\": null,\n    \"AddressLine5\": null,\n    \"City\": null,\n    \"County\": null,\n    \"CountyCode\": null,\n    \"Country\": null,\n    \"PostCode\": null,\n    \"Comments\": null,\n    \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedDate\": \"2017-08-21T16:10:04.5383446Z\",\n    \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\"\n}"}],"_postman_id":"d3aa27e3-802c-ba0c-8fcd-6e5b451b82d9"},{"name":"Update an Employee's Address","id":"880f2ca8-c036-47e0-a9b3-8830eb5c140a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer Your-API-Token"}],"body":{"mode":"raw","raw":"{\n\t\"Comments\": \"Example Comments\"\n}"},"url":"{{url}}/Addresses(PersonCode='[PersonCode]', EffectiveFrom=datetime'[EffectiveFrom]', AddressType='[AddressType]', AddressLine1='[AddressLine1]')","description":"<p>This request will update an employee's Address Details record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Request body includes only one field as an example. You can add any extra fields from the table that you require. However, some fields are read-only. \n</li>\n<li>The PersonCode, EffectiveFrom, AddressType and AddressLine1 cannot be updated as they are the the key fields for this table.</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["Addresses(PersonCode='[PersonCode]', EffectiveFrom=datetime'[EffectiveFrom]', AddressType='[AddressType]', AddressLine1='[AddressLine1]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"880f2ca8-c036-47e0-a9b3-8830eb5c140a"},{"name":"Delete an Employee's Address","id":"a6354f52-87de-485b-491a-1e0acaa0452f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/Addresses(PersonCode='[PersonCode]', EffectiveFrom=datetime'[EffectiveFrom]', AddressType='[AddressType]', AddressLine1='[AddressLine1]')","description":"<p>This request will delete an employee's Address Details record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["Addresses(PersonCode='[PersonCode]', EffectiveFrom=datetime'[EffectiveFrom]', AddressType='[AddressType]', AddressLine1='[AddressLine1]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a6354f52-87de-485b-491a-1e0acaa0452f"}],"id":"f38c855d-3d88-5125-9559-fd7a71ff7fd2","description":"<p>This API enables all information from the Addresses tab on the Contact Details screen for active and inactive employees to be retrieved and modified. </p>\n<p>The identifying keys for Addresses are:</p>\n<ul>\n<li>PersonCode</li>\n<li>EffectiveFrom</li>\n<li>AddressType</li>\n<li>AddressLine1</li>\n</ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PersonGUID</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PersonCode</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>FullName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Salutation</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EffectiveFrom</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>EffectiveTo</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>AddressType</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>AddressLine1</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>AddressLine2</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>AddressLine3</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>AddressLine4</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>AddressLine5</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>City</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>County</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>CountyCode</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Country</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>PostCode</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Comments</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2> Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to their and all subordinate records.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to their own record.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"0b01fb1b-3770-45ed-b657-477202ed1024","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"b474fd60-f481-4fc4-b97e-1c2416659332","type":"text/javascript","exec":[""]}}],"_postman_id":"f38c855d-3d88-5125-9559-fd7a71ff7fd2"}],"id":"a9e95a17-9309-2d45-69e7-c44101f6c549","_postman_id":"a9e95a17-9309-2d45-69e7-c44101f6c549","description":""},{"name":"Bank Details","item":[{"name":"List of Employee Bank Details","id":"8dbc5008-816d-f5db-7e18-c2d963f07f62","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"challengeAlgorithm":"<challenge-algorithm>","scope":"<scope>","grant_type":"<grant_type>","client_authentication":"<client_authentication>","accessTokenUrl":"<access-token-url>","accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/BankDetails?$format=json","description":"<p>This request will return a list of Employee Bank Details from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["BankDetails"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"5ed66244-1d0b-f204-6b4b-3fb7f769183c","name":"List of Employee Bank Details","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/BankDetails?$format=json","host":["{{url}}"],"path":["BankDetails"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"608","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","name":"Content-Type","description":""},{"key":"DataServiceVersion","value":"3.0;","name":"DataServiceVersion","description":""},{"key":"Date","value":"Wed, 17 Jan 2018 17:39:18 GMT","name":"Date","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"10FF1C8527C119F7CB4E7C4120B8992C37BA1C8AE5234A9C7292845F5BF38D235F1BB6B2EF2F3728FEB7A384928DF969505638D3077B989C224A35AD3FE86D663EBCCEECF12BB193FF45C084F261369A94F105CDE91537455E5B49C713A694D62D34D7A7888AD9B597BDD3246C7569B4C58B10C159A04F82DF9242075831F7E38CE8DEDD0EEAACDD6CF905FEA56D401CC4DB3789AF82193C78C9A4D6A124EB0BDE5B27B6C1663E44BDFDC68E369CC4FD3AE57BC82F41E15393895D53FCBF45BEF8EE38E5FAC9F414B14AF836AC55E69E37B3A04760F8929B12DD607AB5345FE24508BB570572B35BF0EE26ECE04E899FDAEA1A227AC0432679902DA7737F2B5B8C91E71F7F5A858689E6919028A38ADB","key":"CF_SID"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"-1","key":"CF_SLV"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"/1cGaxGPTBHcD8RBFPNm12FtDYLb3lMpw7XIBqrYFhv/PCOTAE7wxR40Odzc4CqCBqtAOZUr4ANdr0FCU5+yshc/OebxJq3yb+4ZnDyqpu6AwS+bVPF+pa/xxdPnk2Wb9Paf0Dv+yZV/0G7/d6kslgWPqvC6vBmhi0lGAwQ6OUY=","key":"__RequestVerificationToken_L0NlemFubmVPbkRlbWFuZA__"}],"responseTime":"408","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#BankDetails\",\n    \"value\": [\n        {\n            \"PersonGUID\": \"e88bef01-7468-4e82-b510-4ff7075eb5bb\",\n            \"PersonCode\": \"26\",\n            \"FullName\": \"Cheryl Abrahams\",\n            \"EffectiveFrom\": \"2013-01-01T00:00:00\",\n            \"EffectiveTo\": \"2013-12-31T00:00:00\",\n            \"BankName\": \"Bank 1\",\n            \"AccountType\": \"Bank Account\",\n            \"AccountHolder\": \"C Abrahams\",\n            \"AccountNumber\": \"01584269\",\n            \"SortCode\": \"445588\",\n            \"RollNumber\": \"22\",\n            \"IsForeign\": 1,\n            \"BankWindow\": \"CC\",\n            \"BICSwiftCode\": \"478\",\n            \"IBAN\": \"7777\",\n            \"Comments\": \"Note\",\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2014-04-23T14:59:03.59Z\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\"\n        }\n    ]\n}"}],"_postman_id":"8dbc5008-816d-f5db-7e18-c2d963f07f62"},{"name":"Add an Employee's Bank Details","id":"8f6356fc-b135-d7be-e9a9-126c14b1219b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"PersonCode\": \"26\",\n  \"EffectiveFrom\": \"2018-01-01T00:00:00\",\n  \"BankName\": \"Bank 1\",\n  \"AccountNumber\": \"12345678\",\n  \"VerificationTypeCode\": \"UNKNOWN\"\n}"},"url":"{{url}}/BankDetails?$format=json","description":"<p>This request will insert a Bank Details record for an employee.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>If the EffectiveTo is left blank, the system will try to insert the record with EffectiveTo set to Open Ended.</li>\n<li>If the AddressType has the 'Overlapping addresses not allowed' option ticked on the Address Types picklist, the record must not span any of the active dates of another record with that AddressType.</li>\n</ul>","urlObject":{"path":["BankDetails"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"dff6ef80-ed19-9dbf-942c-ae9030517dda","name":"Add an Employee's Bank Details","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","type":"text","name":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"PersonCode\": \"26\",\n\t\"EffectiveFrom\": \"2018-01-01T00:00:00\",\n\t\"BankName\": \"Bank 1\",\n\t\"AccountNumber\": \"12345678\",\n       \"VerificationTypeCode\": \"UNKNOWN\"\n}"},"url":{"raw":"{{url}}/BankDetails?$format=json","host":["{{url}}"],"path":["BankDetails"],"query":[{"key":"$format","value":"json"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"554","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","name":"Content-Type","description":""},{"key":"DataServiceVersion","value":"3.0;","name":"DataServiceVersion","description":""},{"key":"Date","value":"Wed, 03 Jan 2018 09:10:43 GMT","name":"Date","description":""},{"key":"Location","value":"https://showcase.cezanneondemand.com/cezanneondemand/v2/DataService.svc/BankDetails(AccountNumber='12345678',EffectiveFrom=datetime'2018-01-01T00%3A00%3A00',PersonCode='26')","name":"Location","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"10FF1C8527C119F7CB4E7C4120B8992C37BA1C8AE5234A9C7292845F5BF38D235F1BB6B2EF2F3728FEB7A384928DF969505638D3077B989C224A35AD3FE86D663EBCCEECF12BB193FF45C084F261369A94F105CDE91537455E5B49C713A694D62D34D7A7888AD9B597BDD3246C7569B4C58B10C159A04F82DF9242075831F7E38CE8DEDD0EEAACDD6CF905FEA56D401CC4DB3789AF82193C78C9A4D6A124EB0BDE5B27B6C1663E44BDFDC68E369CC4FD3AE57BC82F41E15393895D53FCBF45BEF8EE38E5FAC9F414B14AF836AC55E69E37B3A04760F8929B12DD607AB5345FE24508BB570572B35BF0EE26ECE04E899FDAEA1A227AC0432679902DA7737F2B5B8C91E71F7F5A858689E6919028A38ADB","key":"CF_SID"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"-1","key":"CF_SLV"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"/1cGaxGPTBHcD8RBFPNm12FtDYLb3lMpw7XIBqrYFhv/PCOTAE7wxR40Odzc4CqCBqtAOZUr4ANdr0FCU5+yshc/OebxJq3yb+4ZnDyqpu6AwS+bVPF+pa/xxdPnk2Wb9Paf0Dv+yZV/0G7/d6kslgWPqvC6vBmhi0lGAwQ6OUY=","key":"__RequestVerificationToken_L0NlemFubmVPbkRlbWFuZA__"}],"responseTime":"470","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#BankDetails/@Element\",\n    \"PersonGUID\": null,\n    \"PersonCode\": \"26\",\n    \"FullName\": null,\n    \"EffectiveFrom\": \"2018-01-01T00:00:00\",\n    \"EffectiveTo\": \"2999-12-31T00:00:00\",\n    \"BankName\": \"Bank 1\",\n    \"AccountType\": null,\n    \"AccountHolder\": null,\n    \"AccountNumber\": \"12345678\",\n    \"SortCode\": null,\n    \"RollNumber\": null,\n    \"IsForeign\": 0,\n    \"BankWindow\": null,\n    \"BICSwiftCode\": null,\n    \"IBAN\": null,\n    \"Comments\": null,\n    \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedDate\": \"2017-12-16T09:00:02.5524509Z\",\n    \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"VerificationTypeCode\": \"UNKNOWN\",\n    \"VerfificationType\": \"None\",\n    \"Verified\": 0,\n    \"OverrideVerification\": 0\n}"}],"_postman_id":"8f6356fc-b135-d7be-e9a9-126c14b1219b"},{"name":"Update an Employee's Bank Details record","id":"1fb15dde-5f86-4385-9d65-ee536c585e3a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"Comments\": \"Example Comments\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/BankDetails(PersonCode='[PersonCode]', EffectiveFrom=datetime'[EffectiveFrom]', AccountNumber='[AccountNumber]')","description":"<p>This request will update an employee's Bank Details record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Request body includes only one field as an example. You can add any extra fields from the table that you require. However, some fields are read-only. \n</li>\n<li>The PersonCode, EffectiveFrom and AccountNumber cannot be updated as they are the the key fields for this table.</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["BankDetails(PersonCode='[PersonCode]', EffectiveFrom=datetime'[EffectiveFrom]', AccountNumber='[AccountNumber]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1fb15dde-5f86-4385-9d65-ee536c585e3a"},{"name":"Delete an Employee's Bank Details record","id":"aa6d8175-0edf-4b02-0684-c5681b5f1880","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/BankDetails(PersonCode='[PersonCode]', EffectiveFrom=datetime'[EffectiveFrom]', AccountNumber='[AccountNumber]')","description":"<p>This request will delete an employee's Bank Details record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["BankDetails(PersonCode='[PersonCode]', EffectiveFrom=datetime'[EffectiveFrom]', AccountNumber='[AccountNumber]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"aa6d8175-0edf-4b02-0684-c5681b5f1880"}],"id":"0f534944-bb18-c04d-3fda-2551e1f7075e","description":"<p>This API enables all information from the Bank Details screen for active and inactive employees to be retrieved and modified.<br />The identifying keys for Bank Details are:</p>\n<ul><li><p>PersonCode</p></li><li><p>EffectiveFrom</p></li><li><p>AccountNumber</p></li></ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PersonGUID</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PersonCode</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>FullName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EffectiveFrom</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>EffectiveTo</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>BankName</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>AccountType</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>AccountHolder</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>AccountNumber</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>SortCode</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>RollNumber</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>IsForeign</td>\n<td></td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>BankWindow</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>BICSwiftCode</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>IBAN</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Comments</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>VerificationTypeCode</td>\n<td></td>\n<td>UNKNOWN = None, UK = UK &amp; IRE - Sort Code &amp; Acc. No., OTHER = IBAN</td>\n</tr>\n<tr>\n<td>VerificationType</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Verified</td>\n<td></td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>OverrideVerification</td>\n<td></td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to their and all subordinate records.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to their own record.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"ec5cfcc5-4dd7-4fcf-bad5-4caf65fd1477","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"a96c188b-a354-4e4a-bf93-b2dca9bd8e95","type":"text/javascript","exec":[""]}}],"_postman_id":"0f534944-bb18-c04d-3fda-2551e1f7075e"},{"name":"Identification","item":[{"name":"Legal Idenitifers","item":[{"name":"List of Employee Legal Identifiers","id":"0a2e7281-5c29-1f0c-77ea-ff1617370758","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/LegalIdentifiers?$format=json","description":"<p>This request will return a list of Legal Identifiers from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["LegalIdentifiers"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"a067589b-2eec-f21e-153e-b06ee3182e6c","name":"List of Legal Identifiers","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/LegalIdentifiers?$format=json","host":["{{url}}"],"path":["LegalIdentifiers"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"no-cache","description":""},{"name":"connection","key":"connection","value":"keep-alive","description":""},{"name":"content-length","key":"content-length","value":"525","description":""},{"name":"content-type","key":"content-type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","description":""},{"name":"dataserviceversion","key":"dataserviceversion","value":"3.0;","description":""},{"name":"date","key":"date","value":"Mon, 31 Jul 2017 15:17:34 GMT","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"415","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#LegalIdentifiers\",\n    \"value\": [\n        {\n            \"PersonGUID\": \"ee552c7c-9462-40t3-a2b7-ttrr6734a9fe\",\n            \"PersonCode\": \"CEZ23\",\n            \"FullName\": \"Margaret Gray\",\n            \"EffectiveFrom\": \"2007-03-08T00:00:00\",\n            \"EffectiveTo\": \"2008-03-08T00:00:00\",\n            \"DocumentType\": \"Driving Licence\",\n            \"Primary\": 0,\n            \"NumberOrId\": \"ABC991-422JP\",\n            \"Authority\": null,\n            \"Jurisdiction\": null,\n            \"Comments\": null,\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2011-07-28T14:49:59.807Z\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"SettledStatus\": 1\n        }\n    ]\n}"}],"_postman_id":"0a2e7281-5c29-1f0c-77ea-ff1617370758"},{"name":"Add an Employee's Legal Identifier","id":"d50353c8-bfbf-fbd6-6608-b8a74b1b87f1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json; charset=UTF-8"}],"body":{"mode":"raw","raw":"{\n  \"PersonCode\":\"26\",\n  \"EffectiveFrom\":\"2017-01-01T00:00:00\",\n  \"EffectiveTo\":\"2019-12-31T00:00:00\",\n  \"DocumentType\":\"Passport\",\n  \"Primary\":\"1\",\n  \"NumberOrId\":\"12345678\"\n}"},"url":"{{url}}/LegalIdentifiers?$format=json","description":"<p>This request will insert a Legal Identifiers record for an employee.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["LegalIdentifiers"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"4016645f-d0cf-f442-3874-1c2a3a1b9db0","name":"Add an Employee's Legal Identifier","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"PersonCode\":\"26\",\n\t\"EffectiveFrom\":\"2017-01-01T00:00:00\",\n\t\"EffectiveTo\":\"2019-12-31T00:00:00\",\n\t\"DocumentType\":\"Passport\",\n\t\"Primary\":\"1\",\n\t\"NumberOrId\":\"12345678\"\n}"},"url":{"raw":"{{url}}/LegalIdentifiers?$format=json","host":["{{url}}"],"path":["LegalIdentifiers"],"query":[{"key":"$format","value":"json"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"473","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","name":"Content-Type","description":""},{"key":"DataServiceVersion","value":"3.0;","name":"DataServiceVersion","description":""},{"key":"Date","value":"Tue, 02 Jan 2018 16:48:16 GMT","name":"Date","description":""},{"key":"Location","value":"https://showcase.cezanneondemand.com/cezanneondemand/v2/DataService.svc/LegalIdentifiers(DocumentType='Passport',EffectiveFrom=datetime'2017-01-01T00%3A00%3A00',PersonCode='26')","name":"Location","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"10FF1C8527C119F7CB4E7C4120B8992C37BA1C8AE5234A9C7292845F5BF38D235F1BB6B2EF2F3728FEB7A384928DF969505638D3077B989C224A35AD3FE86D663EBCCEECF12BB193FF45C084F261369A94F105CDE91537455E5B49C713A694D62D34D7A7888AD9B597BDD3246C7569B4C58B10C159A04F82DF9242075831F7E38CE8DEDD0EEAACDD6CF905FEA56D401CC4DB3789AF82193C78C9A4D6A124EB0BDE5B27B6C1663E44BDFDC68E369CC4FD3AE57BC82F41E15393895D53FCBF45BEF8EE38E5FAC9F414B14AF836AC55E69E37B3A04760F8929B12DD607AB5345FE24508BB570572B35BF0EE26ECE04E899FDAEA1A227AC0432679902DA7737F2B5B8C91E71F7F5A858689E6919028A38ADB","key":"CF_SID"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"-1","key":"CF_SLV"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"/1cGaxGPTBHcD8RBFPNm12FtDYLb3lMpw7XIBqrYFhv/PCOTAE7wxR40Odzc4CqCBqtAOZUr4ANdr0FCU5+yshc/OebxJq3yb+4ZnDyqpu6AwS+bVPF+pa/xxdPnk2Wb9Paf0Dv+yZV/0G7/d6kslgWPqvC6vBmhi0lGAwQ6OUY=","key":"__RequestVerificationToken_L0NlemFubmVPbkRlbWFuZA__"}],"responseTime":"519","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#LegalIdentifiers/@Element\",\n    \"PersonCode\": \"26\",\n    \"FullName\": null,\n    \"EffectiveFrom\": \"2017-01-01T00:00:00\",\n    \"EffectiveTo\": \"2019-12-31T00:00:00\",\n    \"DocumentType\": \"Passport\",\n    \"Primary\": 1,\n    \"NumberOrId\": \"12345678\",\n    \"Authority\": null,\n    \"Jurisdiction\": null,\n    \"Comments\": null,\n    \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedDate\": \"2017-12-16T09:00:03.9117547Z\",\n    \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\"\n}"}],"_postman_id":"d50353c8-bfbf-fbd6-6608-b8a74b1b87f1"},{"name":"Update an Employee's Legal Identifier","id":"ecce2019-97e0-4d32-8da4-69a32bf816ed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"Comments\": \"Example Comments\"\n}"},"url":"{{url}}/LegalIdentifiers(PersonCode='[PersonCode]', EffectiveFrom=datetime'[EffectiveFrom]', DocumentType='[DocumentType]')","description":"<p>This request will update an employee's Legal Identifiers record in the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Request body includes only one field as an example. You can add any extra fields from the table that you require. However, some fields are read-only. \n</li>\n<li>The PersonCode, EffectiveFrom and DocumentType cannot be updated as they are the the key fields for this table.</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["LegalIdentifiers(PersonCode='[PersonCode]', EffectiveFrom=datetime'[EffectiveFrom]', DocumentType='[DocumentType]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ecce2019-97e0-4d32-8da4-69a32bf816ed"},{"name":"Delete an Employee's Legal Identifier","id":"949a2c3c-3f4f-2a96-926b-5565a22ab8b5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/LegalIdentifiers(PersonCode='[PersonCode]', EffectiveFrom=datetime'[EffectiveFrom]', DocumentType='[DocumentType]')","description":"<p>This request will delete an employee's Legal Identifiers record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["LegalIdentifiers(PersonCode='[PersonCode]', EffectiveFrom=datetime'[EffectiveFrom]', DocumentType='[DocumentType]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"949a2c3c-3f4f-2a96-926b-5565a22ab8b5"}],"id":"f5b11e9e-8e7a-0934-1ba8-f0c5893a9820","description":"<p>This API enables all information from the Legal Identifiers tab on the Identification screen for active and inactive employees to be retrieved and modified.</p>\n<p>The identifying keys for Legal Identifiers are:</p>\n<ul><li><p>PersonCode</p></li><li><p>EffectiveFrom</p></li><li><p>DocumentType</p></li></ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PersonGUID</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PersonCode</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>FullName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EffectiveFrom</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>EffectiveTo</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>DocumentType</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>Primary</td>\n<td>Y</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>NumberOrId</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>Authority</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Jurisdiction</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Comments</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>SettledStatus</td>\n<td></td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to their and all subordinate records.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to their own record.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"d0f9ed0e-ee71-4ad3-8bf5-05bb1ca8f2df","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"c91163c2-4c50-437b-a92f-eb6c9f83d996","type":"text/javascript","exec":[""]}}],"_postman_id":"f5b11e9e-8e7a-0934-1ba8-f0c5893a9820"},{"name":"Visa Details","item":[{"name":"List of Employee Visa Details","id":"72c970f8-ae99-8b1d-227f-b0ea46a4f688","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/VisaDetails?$format=json","description":"<p>This request will return a list of Visa Details from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["VisaDetails"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"644a783e-81c8-aa36-ba63-1dfd40beba37","name":"List of Employee Visa Details","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token]"}],"url":{"raw":"{{url}}/VisaDetails?$format=json","host":["{{url}}"],"path":["VisaDetails"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"no-cache","description":""},{"name":"connection","key":"connection","value":"keep-alive","description":""},{"name":"content-length","key":"content-length","value":"635","description":""},{"name":"content-type","key":"content-type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","description":""},{"name":"dataserviceversion","key":"dataserviceversion","value":"3.0;","description":""},{"name":"date","key":"date","value":"Mon, 31 Jul 2017 16:23:28 GMT","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"439","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#VisaDetails\",\n    \"value\": [\n        {\n            \"PersonCode\": \"CEZ23\",\n            \"FullName\": \"Margaret Gray\",\n            \"EffectiveFrom\": \"2001-02-02T00:00:00\",\n            \"EffectiveTo\": \"2002-02-02T00:00:00\",\n            \"Type\": \"Adopted Children\",\n            \"Number\": \"0\",\n            \"Country\": null,\n            \"Comments\": null,\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2011-07-28T14:49:59.887Z\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"VerifiedByFormattedName\": null,\n            \"VerifiedByPersonID\": null,\n            \"VerifiedDate\": null,\n            \"CompanySponsored\": 0,\n            \"Cost\": null,\n            \"BaseCost\": null,\n            \"CurrencyCode\": null,\n            \"BaseCurrencyCode\": \"USD\"\n        }\n    ]\n}"}],"_postman_id":"72c970f8-ae99-8b1d-227f-b0ea46a4f688"},{"name":"Add an Employee's Visa Details","id":"f543f79f-96db-59c6-401a-93a474bba22e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json; charset=UTF-8"}],"body":{"mode":"raw","raw":"{\n  \"PersonCode\": \"26\",\n  \"EffectiveFrom\": \"2017-01-01T00:00:00\",\n  \"EffectiveTo\": \"2999-12-31T00:00:00\",\n  \"Type\": \"Tier 2 (General)\"\n}"},"url":"{{url}}/VisaDetails?$format=json","description":"<p>This request will insert a Visa Details record for an employee.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["VisaDetails"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"09ba558c-65d8-0f46-65ee-8c804fb5325e","name":"Add an Employee's Visa Details","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json; charset=UTF-8"}],"body":{"mode":"raw","raw":"{\n\t\"PersonCode\": \"26\",\n\t\"EffectiveFrom\": \"2017-01-01T00:00:00\",\n\t\"EffectiveTo\": \"2999-12-31T00:00:00\",\n\t\"Type\": \"Tier 2 (General)\"\n}"},"url":{"raw":"{{url}}/VisaDetails?$format=json","host":["{{url}}"],"path":["VisaDetails"],"query":[{"key":"$format","value":"json"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"594","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","name":"Content-Type","description":""},{"key":"DataServiceVersion","value":"3.0;","name":"DataServiceVersion","description":""},{"key":"Date","value":"Tue, 02 Jan 2018 16:52:41 GMT","name":"Date","description":""},{"key":"Location","value":"https://showcase.cezanneondemand.com/cezanneondemand/v2/DataService.svc/VisaDetails(EffectiveFrom=datetime'2017-01-01T00%3A00%3A00',PersonCode='26',Type='Tier%202%20(General)')","name":"Location","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"10FF1C8527C119F7CB4E7C4120B8992C37BA1C8AE5234A9C7292845F5BF38D235F1BB6B2EF2F3728FEB7A384928DF969505638D3077B989C224A35AD3FE86D663EBCCEECF12BB193FF45C084F261369A94F105CDE91537455E5B49C713A694D62D34D7A7888AD9B597BDD3246C7569B4C58B10C159A04F82DF9242075831F7E38CE8DEDD0EEAACDD6CF905FEA56D401CC4DB3789AF82193C78C9A4D6A124EB0BDE5B27B6C1663E44BDFDC68E369CC4FD3AE57BC82F41E15393895D53FCBF45BEF8EE38E5FAC9F414B14AF836AC55E69E37B3A04760F8929B12DD607AB5345FE24508BB570572B35BF0EE26ECE04E899FDAEA1A227AC0432679902DA7737F2B5B8C91E71F7F5A858689E6919028A38ADB","key":"CF_SID"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"-1","key":"CF_SLV"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"/1cGaxGPTBHcD8RBFPNm12FtDYLb3lMpw7XIBqrYFhv/PCOTAE7wxR40Odzc4CqCBqtAOZUr4ANdr0FCU5+yshc/OebxJq3yb+4ZnDyqpu6AwS+bVPF+pa/xxdPnk2Wb9Paf0Dv+yZV/0G7/d6kslgWPqvC6vBmhi0lGAwQ6OUY=","key":"__RequestVerificationToken_L0NlemFubmVPbkRlbWFuZA__"}],"responseTime":"299","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#VisaDetails/@Element\",\n    \"PersonCode\": \"26\",\n    \"FullName\": null,\n    \"EffectiveFrom\": \"2017-01-01T00:00:00\",\n    \"EffectiveTo\": \"2999-12-31T00:00:00\",\n    \"Type\": \"Tier 2 (General)\",\n    \"Number\": null,\n    \"Country\": null,\n    \"Comments\": null,\n    \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedDate\": \"2017-12-16T09:00:03.8961076Z\",\n    \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"VerifiedByFormattedName\": null,\n    \"VerifiedByPersonID\": null,\n    \"VerifiedDate\": null,\n    \"CompanySponsored\": 0,\n    \"Cost\": null,\n    \"BaseCost\": null,\n    \"CurrencyCode\": null,\n    \"BaseCurrencyCode\": null\n}"}],"_postman_id":"f543f79f-96db-59c6-401a-93a474bba22e"},{"name":"Update an Employee's Visa Details Record","id":"0491f5b0-0eed-4138-9d74-255d318b0ebe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"Comments\": \"Example Comments\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/VisaDetails(PersonCode='[PersonCode]', EffectiveFrom=datetime'[EffectiveFromDate]', Type='[Type]')","description":"<p>This request will update an employee's Visa Details record in the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Request body includes only one field as an example. You can add any extra fields from the table that you require. However, some fields are read-only. \n</li>\n<li>The PersonCode, EffectiveFromDate and Type cannot be updated as they are the the key fields for this table.</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["VisaDetails(PersonCode='[PersonCode]', EffectiveFrom=datetime'[EffectiveFromDate]', Type='[Type]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0491f5b0-0eed-4138-9d74-255d318b0ebe"},{"name":"Delete an Employee's Visa Details Record","id":"7284ad3d-2f50-da27-842c-0fddf45495ad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"body":{"mode":"formdata","formdata":[]},"url":"{{url}}/VisaDetails(PersonCode='[PersonCode]', EffectiveFrom=datetime'[EffectiveFromDate]', Type='[Type]')","description":"<p>This request will delete an employee's Visa Details record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["VisaDetails(PersonCode='[PersonCode]', EffectiveFrom=datetime'[EffectiveFromDate]', Type='[Type]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7284ad3d-2f50-da27-842c-0fddf45495ad"}],"id":"69a92a64-2b7d-5b79-b524-de33be432cd2","description":"<p>This API enables all information from the Visa Details tab on the Identifications screen for active and inactive employees to be retrieved and modified.</p>\n<p>The identifying keys for Visa Details are:</p>\n<ul><li><div>PersonCode</div></li><li><div>EffectiveFrom</div></li><li><div>Type</div></li></ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PersonCode</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>FullName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EffectiveFrom</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>EffectiveTo</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>Type</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>Number</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Country</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Comments</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>VerifiedByFormattedName</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>VerifiedByPersonID</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>VerifiedDate</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>CompanySponsored</td>\n<td></td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>Cost</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>BaseCost</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>CurrencyCode</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>BaseCurrencyCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to their and all subordinate records.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to their own record.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"f3c3569f-989a-4948-8f2a-49998049b48c","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"15babf34-b5ad-48e2-91b4-ddcdeb269b70","type":"text/javascript","exec":[""]}}],"_postman_id":"69a92a64-2b7d-5b79-b524-de33be432cd2"},{"name":"Security Credentials","item":[{"name":"List of Employee Security Credentials","id":"b5c2a7bd-4c2e-4b61-a483-1ae67f62fcb1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"tokenName":"<token-name>","scope":"<scope>","accessTokenUrl":"<access-token-url>","clientId":"<client-id>","clientSecret":"<client-secret>","accessToken":"<access-token>","tokenType":"<token-type>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/SecurityCredentials?$format=json&$top=1","description":"<p>This request will return a list of Security Credentials from the system.</p>\n<p><strong>Notes:</strong></p>\n<ul><li><div>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</div></li><li><div>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</div></li></ul>\n\n<p>Available Parameters:</p>\n<ul><li><div>$filter</div></li><li><div>$top</div></li><li><div>$orderby</div></li><li><div>$select</div></li><li><div>$skip</div></li><li><div>$inlinecount</div></li></ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["SecurityCredentials"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"},{"key":"$top","value":"1"}],"variable":[]}},"response":[{"id":"ff6567a6-baa7-4296-8504-eebf39ed7158","name":"List of Employee Visa Details","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token]"}],"url":{"raw":"{{url}}/VisaDetails?$format=json","host":["{{url}}"],"path":["VisaDetails"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"no-cache","description":""},{"name":"connection","key":"connection","value":"keep-alive","description":""},{"name":"content-length","key":"content-length","value":"635","description":""},{"name":"content-type","key":"content-type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","description":""},{"name":"dataserviceversion","key":"dataserviceversion","value":"3.0;","description":""},{"name":"date","key":"date","value":"Mon, 31 Jul 2017 16:23:28 GMT","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"439","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#VisaDetails\",\n    \"value\": [\n        {\n            \"PersonCode\": \"CEZ23\",\n            \"FullName\": \"Margaret Gray\",\n            \"EffectiveFrom\": \"2001-02-02T00:00:00\",\n            \"EffectiveTo\": \"2002-02-02T00:00:00\",\n            \"Type\": \"Adopted Children\",\n            \"Number\": \"0\",\n            \"Country\": null,\n            \"Comments\": null,\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2011-07-28T14:49:59.887Z\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"VerifiedByFormattedName\": null,\n            \"VerifiedByPersonID\": null,\n            \"VerifiedDate\": null,\n            \"CompanySponsored\": 0,\n            \"Cost\": null,\n            \"BaseCost\": null,\n            \"CurrencyCode\": null,\n            \"BaseCurrencyCode\": \"USD\"\n        }\n    ]\n}"},{"id":"d75f4c25-dbb3-4533-90c5-5a739cfbbe74","name":"List of Employee Visa Details Copy","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/SecurityCredentials?$format=json","host":["{{url}}"],"path":["SecurityCredentials"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 05 Jun 2024 20:10:40 GMT"},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8"},{"key":"Content-Length","value":"575"},{"key":"Connection","value":"keep-alive"},{"key":"Set-Cookie","value":"AWSALB=68hbVkNWLYbs6hAqcw08ezfC4NSWqM9ZtVtwhb6b2RtSZiT7FsxC96joOkaZo7bXMh0WdgmMDrKYNhui6xllLTvQ9gFDhtTdBrHPQXiXerCaf7mc6Q8KXXKIqBwZ; Expires=Wed, 12 Jun 2024 20:10:39 GMT; Path=/"},{"key":"Set-Cookie","value":"AWSALBCORS=68hbVkNWLYbs6hAqcw08ezfC4NSWqM9ZtVtwhb6b2RtSZiT7FsxC96joOkaZo7bXMh0WdgmMDrKYNhui6xllLTvQ9gFDhtTdBrHPQXiXerCaf7mc6Q8KXXKIqBwZ; Expires=Wed, 12 Jun 2024 20:10:39 GMT; Path=/; SameSite=None; Secure"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"DataServiceVersion","value":"3.0;"},{"key":"Content-Security-Policy","value":"frame-ancestors 'self'"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#SecurityCredentials\",\n    \"value\": [\n        {\n            \"SecurityCredentialGuid\": \"bd66feb2-d0f4-40b1-9360-607332c806b5\",\n            \"PersonGUID\": \"7ab6ef7a-43cd-472f-852a-bbee3992ad19\",\n            \"PersonCode\": \"CEZ01\",\n            \"FullName\": \"Cheryl Abrahams\",\n            \"EffectiveFrom\": \"2024-01-01T00:00:00\",\n            \"EffectiveTo\": \"2999-12-31T00:00:00\",\n            \"Type\": \"Security Check\",\n            \"Name\": \"C Abrahams\",\n            \"IssueDate\": \"2024-06-05T00:00:00\",\n            \"IssuingAuthority\": null,\n            \"Comments\": null,\n            \"InsertUser\": \"shawn.acker@omnicrom.com\",\n            \"LastModifiedDate\": \"2024-06-05T20:08:45.907Z\",\n            \"LastModifiedUser\": \"shawn.acker@omnicrom.com\"\n        }\n    ]\n}"}],"_postman_id":"b5c2a7bd-4c2e-4b61-a483-1ae67f62fcb1"},{"name":"Add an Employee's Security Credentials","id":"a7be6c97-57f2-482b-b713-407f45e4d2e3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"tokenName":"<token-name>","scope":"<scope>","accessTokenUrl":"<access-token-url>","clientSecret":"<client-secret>","clientId":"<client-id>","accessToken":"<access-token>","tokenType":"<token-type>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json; charset=UTF-8"}],"body":{"mode":"raw","raw":"{\n  \"SecurityCredentialGuid\": \"bd66feb2-d0f4-40b1-9360-607332c806b5\",\n  \"PersonCode\": \"CEZ01\",\n  \"EffectiveFrom\": \"2024-01-01T00:00:00\",\n  \"EffectiveTo\": \"2999-12-31T00:00:00\",\n  \"Type\": \"Security Check\",\n  \"Name\": \"C Abrahams\"\n}"},"url":"{{url}}/SecurityCredentials?$format=json","description":"<p>This request will insert a Security Credentials record for an employee.</p>\n<p><strong>Notes:</strong></p>\n<ul><li><div>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require.<br /></div></li><li><div>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.<br /></div></li></ul>","urlObject":{"path":["SecurityCredentials"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"1c4fae11-cd98-439e-a37e-bf7db5754847","name":"Add an Employee's Visa Details","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json; charset=UTF-8"}],"body":{"mode":"raw","raw":"{\n\t\"PersonCode\": \"26\",\n\t\"EffectiveFrom\": \"2017-01-01T00:00:00\",\n\t\"EffectiveTo\": \"2999-12-31T00:00:00\",\n\t\"Type\": \"Tier 2 (General)\"\n}"},"url":{"raw":"{{url}}/VisaDetails?$format=json","host":["{{url}}"],"path":["VisaDetails"],"query":[{"key":"$format","value":"json"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"594","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","name":"Content-Type","description":""},{"key":"DataServiceVersion","value":"3.0;","name":"DataServiceVersion","description":""},{"key":"Date","value":"Tue, 02 Jan 2018 16:52:41 GMT","name":"Date","description":""},{"key":"Location","value":"https://showcase.cezanneondemand.com/cezanneondemand/v2/DataService.svc/VisaDetails(EffectiveFrom=datetime'2017-01-01T00%3A00%3A00',PersonCode='26',Type='Tier%202%20(General)')","name":"Location","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"10FF1C8527C119F7CB4E7C4120B8992C37BA1C8AE5234A9C7292845F5BF38D235F1BB6B2EF2F3728FEB7A384928DF969505638D3077B989C224A35AD3FE86D663EBCCEECF12BB193FF45C084F261369A94F105CDE91537455E5B49C713A694D62D34D7A7888AD9B597BDD3246C7569B4C58B10C159A04F82DF9242075831F7E38CE8DEDD0EEAACDD6CF905FEA56D401CC4DB3789AF82193C78C9A4D6A124EB0BDE5B27B6C1663E44BDFDC68E369CC4FD3AE57BC82F41E15393895D53FCBF45BEF8EE38E5FAC9F414B14AF836AC55E69E37B3A04760F8929B12DD607AB5345FE24508BB570572B35BF0EE26ECE04E899FDAEA1A227AC0432679902DA7737F2B5B8C91E71F7F5A858689E6919028A38ADB","key":"CF_SID"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"-1","key":"CF_SLV"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"/1cGaxGPTBHcD8RBFPNm12FtDYLb3lMpw7XIBqrYFhv/PCOTAE7wxR40Odzc4CqCBqtAOZUr4ANdr0FCU5+yshc/OebxJq3yb+4ZnDyqpu6AwS+bVPF+pa/xxdPnk2Wb9Paf0Dv+yZV/0G7/d6kslgWPqvC6vBmhi0lGAwQ6OUY=","key":"__RequestVerificationToken_L0NlemFubmVPbkRlbWFuZA__"}],"responseTime":"299","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#VisaDetails/@Element\",\n    \"PersonCode\": \"26\",\n    \"FullName\": null,\n    \"EffectiveFrom\": \"2017-01-01T00:00:00\",\n    \"EffectiveTo\": \"2999-12-31T00:00:00\",\n    \"Type\": \"Tier 2 (General)\",\n    \"Number\": null,\n    \"Country\": null,\n    \"Comments\": null,\n    \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedDate\": \"2017-12-16T09:00:03.8961076Z\",\n    \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"VerifiedByFormattedName\": null,\n    \"VerifiedByPersonID\": null,\n    \"VerifiedDate\": null,\n    \"CompanySponsored\": 0,\n    \"Cost\": null,\n    \"BaseCost\": null,\n    \"CurrencyCode\": null,\n    \"BaseCurrencyCode\": null\n}"},{"id":"6f906605-4776-46e6-bcd0-f0661074be8a","name":"Add an Employee's Visa Details Copy","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json; charset=UTF-8"}],"body":{"mode":"raw","raw":"{\n  \"SecurityCredentialGuid\": \"bd66feb2-d0f4-40b1-9360-607332c806b5\",\n  \"PersonCode\": \"CEZ01\",\n  \"EffectiveFrom\": \"2017-01-01T00:00:00\",\n  \"EffectiveTo\": \"2999-12-31T00:00:00\",\n  \"Type\": \"Security Check\",\n  \"Name\": \"C Abrahams\"\n}"},"url":{"raw":"{{url}}/SecurityCredentials?$format=json","host":["{{url}}"],"path":["SecurityCredentials"],"query":[{"key":"$format","value":"json"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 05 Jun 2024 20:08:46 GMT"},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8"},{"key":"Content-Length","value":"529"},{"key":"Connection","value":"keep-alive"},{"key":"Set-Cookie","value":"AWSALB=LT6M8hkfMdIOxdcqMK1mbVOCcFm/5kZ3QxxZqs5QV6cLfOodruHxMJHfPSPF5pFVMKSqHgT4ZY2rgfChpl/3wfELz5upFvloUWF4QzCR/5WY7RSBx8u6HIQv/8Fi; Expires=Wed, 12 Jun 2024 20:08:45 GMT; Path=/"},{"key":"Set-Cookie","value":"AWSALBCORS=LT6M8hkfMdIOxdcqMK1mbVOCcFm/5kZ3QxxZqs5QV6cLfOodruHxMJHfPSPF5pFVMKSqHgT4ZY2rgfChpl/3wfELz5upFvloUWF4QzCR/5WY7RSBx8u6HIQv/8Fi; Expires=Wed, 12 Jun 2024 20:08:45 GMT; Path=/; SameSite=None; Secure"},{"key":"Cache-Control","value":"no-cache"},{"key":"Location","value":"https://qaalb.cezanneondemand.com/COD_UPGRADE/v7/DataService.svc/SecurityCredentials(PersonCode='CEZ01',SecurityCredentialGuid=guid'bd66feb2-d0f4-40b1-9360-607332c806b5')"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"DataServiceVersion","value":"3.0;"},{"key":"Content-Security-Policy","value":"frame-ancestors 'self'"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#SecurityCredentials/@Element\",\n    \"SecurityCredentialGuid\": \"bd66feb2-d0f4-40b1-9360-607332c806b5\",\n    \"PersonGUID\": null,\n    \"PersonCode\": \"CEZ01\",\n    \"FullName\": null,\n    \"EffectiveFrom\": \"2024-01-01T00:00:00\",\n    \"EffectiveTo\": \"2999-12-31T00:00:00\",\n    \"Type\": \"Security Check\",\n    \"Name\": \"C Abrahams\",\n    \"IssueDate\": \"2024-06-05T00:00:00\",\n    \"IssuingAuthority\": null,\n    \"Comments\": null,\n    \"InsertUser\": \"shawn.acker@omnicrom.com\",\n    \"LastModifiedDate\": \"2024-06-05T19:52:17.8486353Z\",\n    \"LastModifiedUser\": \"shawn.acker@omnicrom.com\"\n}"}],"_postman_id":"a7be6c97-57f2-482b-b713-407f45e4d2e3"},{"name":"Update an Employee's Security Credentials Record","id":"9d94e08c-bc7a-4ccc-afe1-632ed870b77b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessTokenUrl":"<access-token-url>","scope":"<scope>","tokenName":"<token-name>","clientSecret":"<client-secret>","clientId":"<client-id>","accessToken":"<access-token>","tokenType":"<token-type>","challengeAlgorithm":"<challenge-algorithm>","grant_type":"<grant_type>","client_authentication":"<client_authentication>"},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"Comments\": \"Example Comments\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/SecurityCredentials(PersonCode='[PersonCode]', SecurityCredentialGuid=guid'[SecurityCredentialGuid]'","description":"<p>This request will update an employee's Security Credentials record in the system.</p>\n<p><strong>Notes:</strong></p>\n<ul><li><div>The Request body includes only one field as an example. You can add any extra fields from the table that you require. However, some fields are read-only.<br /></div></li><li><div>The PersonCode, EffectiveFromDate and Type cannot be updated as they are the the key fields for this table.</div></li><li><div>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</div></li></ul>","urlObject":{"path":["SecurityCredentials(PersonCode='[PersonCode]', SecurityCredentialGuid=guid'[SecurityCredentialGuid]'"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9d94e08c-bc7a-4ccc-afe1-632ed870b77b"},{"name":"Delete an Employee's Security Credentials Record","id":"3846c879-bd83-48c5-b142-d0900519fabf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"body":{"mode":"formdata","formdata":[]},"url":"{{url}}/SecurityCredentials(PersonCode='[PersonCode]', SecurityCredentialGuid=guid'[SecurityCredentialGuid]'","description":"<p>This request will delete an employee's Security Credentials record.</p>\n<p><strong>Notes:</strong></p>\n<ul><li><div>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</div></li></ul>","urlObject":{"path":["SecurityCredentials(PersonCode='[PersonCode]', SecurityCredentialGuid=guid'[SecurityCredentialGuid]'"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3846c879-bd83-48c5-b142-d0900519fabf"}],"id":"1c7ec595-94e1-46ee-851c-7fe5959a329f","description":"<p>This API enables all information from the Security Credentials tab on the Identifications screen for active and inactive employees to be retrieved and modified.</p>\n<p>The identifying keys for Security Credentials are:</p>\n<ul><li><div>PersonCode</div></li><li><div>SecurityCredentialGuid</div></li></ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SecurityCredentialGuid</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>PersonGUID</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PersonCode</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>FullName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EffectiveFrom</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>EffectiveTo</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>Type</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Name</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>IssueDate</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>IssuingAuthority</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Comments</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to their and all subordinate records.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to their own record.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"1c7ec595-94e1-46ee-851c-7fe5959a329f"}],"id":"73118f96-5455-a217-14cb-69423e37bb83","_postman_id":"73118f96-5455-a217-14cb-69423e37bb83","description":""},{"name":"Skills & Qualifications","item":[{"name":"Professional Qualifications","item":[{"name":"List of Employee Professional Qualifications","id":"c0d6b24d-9f3a-c701-c70b-3ce5934b6efc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/ProfessionalQualifications?$format=json","description":"<p>This request will return a list of Professional Qualifications from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["ProfessionalQualifications"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"f8ef6b49-bdba-7507-b191-d8cdfb6b7c6e","name":"List of Professional Qualifications","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/ProfessionalQualifications?$format=json","host":["{{url}}"],"path":["ProfessionalQualifications"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"no-cache","description":""},{"name":"connection","key":"connection","value":"keep-alive","description":""},{"name":"content-length","key":"content-length","value":"702","description":""},{"name":"content-type","key":"content-type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","description":""},{"name":"dataserviceversion","key":"dataserviceversion","value":"3.0;","description":""},{"name":"date","key":"date","value":"Mon, 31 Jul 2017 16:17:21 GMT","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"418","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#ProfessionalQualifications\",\n    \"value\": [\n        {\n            \"ProfessionalQualificationGUID\": \"d946e004-6c98-4bc5-893d-a35025a5e49e\",\n            \"PersonCode\": \"0593\",\n            \"FullName\": \"Laura Waterhouse\",\n            \"StartDate\": \"2010-01-01T00:00:00\",\n            \"CompletionDate\": \"2999-12-31T00:00:00\",\n            \"RenewalDate\": null,\n            \"Qualification\": \"Chartered Institute of Personnel Development\",\n            \"GrantedBy\": null,\n            \"Regulatory\": 0,\n            \"CompanyFunded\": 0,\n            \"CurrencyCode\": null,\n            \"Cost\": null,\n            \"BaseCost\": null,\n            \"BaseCurrencyCode\": \"USD\",\n            \"Comments\": null,\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2013-01-30T09:38:47.913Z\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\"\n        }\n    ]\n}"}],"_postman_id":"c0d6b24d-9f3a-c701-c70b-3ce5934b6efc"},{"name":"Add an Employee's Professional Qualifications","id":"bdf7859a-5f4c-fb0c-ab76-3d45793893ef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json; charset=UTF-8"}],"body":{"mode":"raw","raw":"{\n  \"ProfessionalQualificationGUID\": \"00000000-0000-0000-0000-000000000123\",\n  \"PersonCode\": \"26\",\n  \"StartDate\": \"2017-01-04T00:00:00\",\n  \"CompletionDate\": \"2017-12-12T00:00:00\",\n  \"Qualification\": \"Chartered Accountant ACA\"\n}"},"url":"{{url}}/ProfessionalQualifications?$format=json","description":"<p>This request will insert a Professional Qualification record for an employee.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n<li>To add a new Professional Qualification, you need to enter a unique ProfessionalQualificationGUID for each new record in the following format: '12345678-1234-1234-1234-123456789101'\n</li>\n</ul>","urlObject":{"path":["ProfessionalQualifications"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"},{"disabled":true,"key":"$filter","value":"PersonCode eq 26"}],"variable":[]}},"response":[{"id":"9aa77f63-6e0d-d257-dc95-44688cad52f2","name":"Add an Employee's Professional Qualifications","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json; charset=UTF-8"}],"body":{"mode":"raw","raw":"{\n\t\"ProfessionalQualificationGUID\": \"00000000-0000-0000-0000-000000000123\",\n\t\"PersonCode\": \"26\",\n\t\"StartDate\": \"2017-01-04T00:00:00\",\n\t\"CompletionDate\": \"2017-12-12T00:00:00\",\n\t\"Qualification\": \"Chartered Accountant ACA\"\n}"},"url":{"raw":"{{url}}/ProfessionalQualifications?$format=json","host":["{{url}}"],"path":["ProfessionalQualifications"],"query":[{"key":"$format","value":"json"},{"key":"$filter","value":"PersonCode eq 26","disabled":true}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"638","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","name":"Content-Type","description":""},{"key":"DataServiceVersion","value":"3.0;","name":"DataServiceVersion","description":""},{"key":"Date","value":"Mon, 08 Jan 2018 11:14:05 GMT","name":"Date","description":""},{"key":"Location","value":"https://showcase.cezanneondemand.com/cezanneondemand/v2/DataService.svc/ProfessionalQualifications(PersonCode='26',ProfessionalQualificationGUID=guid'00000000-0000-0000-0000-000000000123')","name":"Location","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"10FF1C8527C119F7CB4E7C4120B8992C37BA1C8AE5234A9C7292845F5BF38D235F1BB6B2EF2F3728FEB7A384928DF969505638D3077B989C224A35AD3FE86D663EBCCEECF12BB193FF45C084F261369A94F105CDE91537455E5B49C713A694D62D34D7A7888AD9B597BDD3246C7569B4C58B10C159A04F82DF9242075831F7E38CE8DEDD0EEAACDD6CF905FEA56D401CC4DB3789AF82193C78C9A4D6A124EB0BDE5B27B6C1663E44BDFDC68E369CC4FD3AE57BC82F41E15393895D53FCBF45BEF8EE38E5FAC9F414B14AF836AC55E69E37B3A04760F8929B12DD607AB5345FE24508BB570572B35BF0EE26ECE04E899FDAEA1A227AC0432679902DA7737F2B5B8C91E71F7F5A858689E6919028A38ADB","key":"CF_SID"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"-1","key":"CF_SLV"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"/1cGaxGPTBHcD8RBFPNm12FtDYLb3lMpw7XIBqrYFhv/PCOTAE7wxR40Odzc4CqCBqtAOZUr4ANdr0FCU5+yshc/OebxJq3yb+4ZnDyqpu6AwS+bVPF+pa/xxdPnk2Wb9Paf0Dv+yZV/0G7/d6kslgWPqvC6vBmhi0lGAwQ6OUY=","key":"__RequestVerificationToken_L0NlemFubmVPbkRlbWFuZA__"}],"responseTime":"580","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#ProfessionalQualifications/@Element\",\n    \"ProfessionalQualificationGUID\": \"00000000-0000-0000-0000-000000000123\",\n    \"PersonCode\": \"26\",\n    \"FullName\": null,\n    \"StartDate\": \"2017-01-04T00:00:00\",\n    \"CompletionDate\": \"2017-12-12T00:00:00\",\n    \"RenewalDate\": null,\n    \"Qualification\": \"Chartered Accountant ACA\",\n    \"GrantedBy\": null,\n    \"Regulatory\": 0,\n    \"CompanyFunded\": 0,\n    \"CurrencyCode\": null,\n    \"Cost\": null,\n    \"BaseCost\": null,\n    \"BaseCurrencyCode\": null,\n    \"Comments\": null,\n    \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedDate\": \"2017-12-16T09:00:04.7242749Z\",\n    \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\"\n}"}],"_postman_id":"bdf7859a-5f4c-fb0c-ab76-3d45793893ef"},{"name":"Update an Employee's Professional Qualifications","id":"2805a83e-2038-4be4-8539-713dce4b938f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"Comments\": \"Example Comments\"\n}"},"url":"{{url}}/ProfessionalQualifications(ProfessionalQualificationGUID=guid'[ProfessionalQualificationGUID]', PersonCode='[PersonCode]')","description":"<p>This request will update an employee's Professional Qualification record in the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Request body includes only one field as an example. You can add any extra fields from the table that you require. However, some fields are read-only. \n</li>\n<li>The ProfessionalQualificationGUID and PersonCode cannot be updated as they are the the key fields for this table.</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["ProfessionalQualifications(ProfessionalQualificationGUID=guid'[ProfessionalQualificationGUID]', PersonCode='[PersonCode]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2805a83e-2038-4be4-8539-713dce4b938f"},{"name":"Delete an Employee's Professional Qualifications","id":"94029dea-80a2-7c01-c7d0-95acb8a3394d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/ProfessionalQualifications(ProfessionalQualificationGUID=guid'[ProfessionalQualificationGUID]', PersonCode='[PersonCode]')","description":"<p>This request will delete a Professional Qualification record for an employee.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["ProfessionalQualifications(ProfessionalQualificationGUID=guid'[ProfessionalQualificationGUID]', PersonCode='[PersonCode]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"94029dea-80a2-7c01-c7d0-95acb8a3394d"}],"id":"981e48a3-0f78-8342-fe74-82698db56a0f","description":"<p>This API enables all information from the Professional Qualifications tab on the Skills &amp; Qualifications screen for active and inactive employees to be retrieved and modified. </p>\n<p>The identifying keys for Professional Qualifications are:</p>\n<ul>\n<li>ProfessionalQualificationGUID</li>\n<li>PersonCode</li>\n</ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ProfessionalQualificationGUID</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>PersonCode</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>FullName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>StartDate</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>CompletionDate</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>RenewalDate</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Qualification</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>GrantedBy</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Regulatory</td>\n<td></td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>CompanyFunded</td>\n<td></td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>CurrencyCode</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Cost</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>BaseCost</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>BaseCurrencyCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Comments</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2> Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to their and all subordinate records.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to their own record.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"2f6caf91-a8e5-4d1b-86f8-d636b285e06a","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"edcb5fa7-7362-4e42-9039-ff5b7fc53854","type":"text/javascript","exec":[""]}}],"_postman_id":"981e48a3-0f78-8342-fe74-82698db56a0f"},{"name":"Education","item":[{"name":"List of Employee Education Details","id":"c53d79c2-4de7-9cc4-1340-1f7c0f9928b6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/EducationDetails?$format=json","description":"<p>This request will return a list of Education Details from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["EducationDetails"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"cdd70eff-3125-21cf-cdc1-8aac8da4eea0","name":"List of Education Details","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/EducationDetails?$format=json","host":["{{url}}"],"path":["EducationDetails"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"no-cache","description":""},{"name":"connection","key":"connection","value":"keep-alive","description":""},{"name":"content-length","key":"content-length","value":"971","description":""},{"name":"content-type","key":"content-type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","description":""},{"name":"dataserviceversion","key":"dataserviceversion","value":"3.0;","description":""},{"name":"date","key":"date","value":"Mon, 31 Jul 2017 13:41:56 GMT","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"694","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#EducationDetails\",\n    \"value\": [\n        {\n            \"PersonCode\": \"40\",\n            \"EffectiveFrom\": \"2002-10-01T00:00:00\",\n            \"Status\": \"Completed\",\n            \"EffectiveTo\": \"2004-06-30T00:00:00\",\n            \"Verified\": 0,\n            \"Qualification\": \"Bsc Engineering\",\n            \"SubjectMajor\": null,\n            \"LevelClassification\": \"Bachelor's Degree\",\n            \"ISCEDClassification\": \"First stage of tertiary education\",\n            \"LocalClassification\": null,\n            \"ExpectedDuration\": \"3\",\n            \"Comments\": null,\n            \"SchoolUniversity\": null,\n            \"WebAddress\": null,\n            \"SchoolType\": null,\n            \"City\": null,\n            \"CountyCode\": null,\n            \"County\": null,\n            \"Country\": null,\n            \"PostCode\": null,\n            \"Result\": null,\n            \"OutOf\": null,\n            \"AcademicHonour\": 0,\n            \"HonourDescription\": null,\n            \"AcademicCreditHours\": null,\n            \"CreditHoursEarned\": null,\n            \"CompanyFunded\": 0,\n            \"Cost\": null,\n            \"Currency\": null,\n            \"BaseCost\": null,\n            \"BaseCurrency\": \"USD\",\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2013-01-30T14:25:04.663Z\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\"\n        }\n    ]\n}"}],"_postman_id":"c53d79c2-4de7-9cc4-1340-1f7c0f9928b6"},{"name":"Add an Employee's Education Details","id":"3ba883fd-d754-adb6-f09a-d0ef7f245587","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json; charset=UTF-8"}],"body":{"mode":"raw","raw":"{\n  \"PersonCode\": \"26\",\n  \"EffectiveFrom\": \"2017-01-01T00:00:00\",\n  \"Status\": \"In Progress\",\n  \"EffectiveTo\": \"2017-12-31T00:00:00\",\n  \"Verified\": \"1\",\n  \"Qualification\": \"BA Management\"\n}"},"url":"{{url}}/EducationDetails?$format=json","description":"<p>This request will insert an Education record for an employee.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["EducationDetails"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"c8d2716a-c068-390a-8159-7db58ea8d9e3","name":"Add an Employee's Education Details","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","disabled":false},{"key":"Content-Type","value":"application/json; charset=UTF-8","warning":"","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"PersonCode\": \"26\",\n\t\"EffectiveFrom\": \"2017-01-01T00:00:00\",\n\t\"Status\": \"In Progress\",\n\t\"EffectiveTo\": \"2017-12-31T00:00:00\",\n\t\"Verified\": \"1\",\n\t\"Qualification\": \"BA Management\"\n}"},"url":{"raw":"{{url}}/EducationDetails?$format=json","host":["{{url}}"],"path":["EducationDetails"],"query":[{"key":"$format","value":"json"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"891","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","name":"Content-Type","description":""},{"key":"DataServiceVersion","value":"3.0;","name":"DataServiceVersion","description":""},{"key":"Date","value":"Tue, 02 Jan 2018 17:12:23 GMT","name":"Date","description":""},{"key":"Location","value":"https://showcase.cezanneondemand.com/cezanneondemand/v2/DataService.svc/EducationDetails(EffectiveFrom=datetime'2017-01-01T00%3A00%3A00',PersonCode='26',Qualification='BA%20Management')","name":"Location","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"10FF1C8527C119F7CB4E7C4120B8992C37BA1C8AE5234A9C7292845F5BF38D235F1BB6B2EF2F3728FEB7A384928DF969505638D3077B989C224A35AD3FE86D663EBCCEECF12BB193FF45C084F261369A94F105CDE91537455E5B49C713A694D62D34D7A7888AD9B597BDD3246C7569B4C58B10C159A04F82DF9242075831F7E38CE8DEDD0EEAACDD6CF905FEA56D401CC4DB3789AF82193C78C9A4D6A124EB0BDE5B27B6C1663E44BDFDC68E369CC4FD3AE57BC82F41E15393895D53FCBF45BEF8EE38E5FAC9F414B14AF836AC55E69E37B3A04760F8929B12DD607AB5345FE24508BB570572B35BF0EE26ECE04E899FDAEA1A227AC0432679902DA7737F2B5B8C91E71F7F5A858689E6919028A38ADB","key":"CF_SID"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"-1","key":"CF_SLV"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"/1cGaxGPTBHcD8RBFPNm12FtDYLb3lMpw7XIBqrYFhv/PCOTAE7wxR40Odzc4CqCBqtAOZUr4ANdr0FCU5+yshc/OebxJq3yb+4ZnDyqpu6AwS+bVPF+pa/xxdPnk2Wb9Paf0Dv+yZV/0G7/d6kslgWPqvC6vBmhi0lGAwQ6OUY=","key":"__RequestVerificationToken_L0NlemFubmVPbkRlbWFuZA__"}],"responseTime":"389","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#EducationDetails/@Element\",\n    \"PersonCode\": \"26\",\n    \"EffectiveFrom\": \"2017-01-01T00:00:00\",\n    \"Status\": \"In Progress\",\n    \"EffectiveTo\": \"2017-12-31T00:00:00\",\n    \"Verified\": 1,\n    \"Qualification\": \"BA Management\",\n    \"SubjectMajor\": null,\n    \"LevelClassification\": null,\n    \"ISCEDClassification\": null,\n    \"LocalClassification\": null,\n    \"ExpectedDuration\": null,\n    \"Comments\": null,\n    \"SchoolUniversity\": null,\n    \"WebAddress\": null,\n    \"SchoolType\": null,\n    \"City\": null,\n    \"CountyCode\": null,\n    \"County\": null,\n    \"Country\": null,\n    \"PostCode\": null,\n    \"Result\": null,\n    \"OutOf\": null,\n    \"AcademicHonour\": 0,\n    \"HonourDescription\": null,\n    \"AcademicCreditHours\": null,\n    \"CreditHoursEarned\": null,\n    \"CompanyFunded\": 0,\n    \"Cost\": null,\n    \"Currency\": null,\n    \"BaseCost\": null,\n    \"BaseCurrency\": null,\n    \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedDate\": \"2017-12-16T09:00:04.0992756Z\",\n    \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\"\n}"}],"_postman_id":"3ba883fd-d754-adb6-f09a-d0ef7f245587"},{"name":"Update an Employee's Education Details","id":"abab4a06-52f3-4b50-bc70-3617072d215d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"Comments\": \"Example Comments\"\n}"},"url":"{{url}}/EducationDetails(PersonCode='[PersonCode]', EffectiveFrom=datetime'[EffectiveFrom]', Qualification='[Qualification]')","description":"<p>This request will update an Education record for an employee.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Request body includes only one field as an example. You can add any extra fields from the table that you require. However, some fields are read-only. \n</li>\n<li>The PersonCode, EffectiveFrom and Qualification cannot be updated as they are the the key fields for this table.</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["EducationDetails(PersonCode='[PersonCode]', EffectiveFrom=datetime'[EffectiveFrom]', Qualification='[Qualification]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"abab4a06-52f3-4b50-bc70-3617072d215d"},{"name":"Delete an Employee's Education Details","id":"a5c7c09c-ff28-9692-3069-fcaac6e72d3a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/EducationDetails(PersonCode='[PersonCode]', EffectiveFrom=datetime'[EffectiveFrom]', Qualification='[Qualification]')","description":"<p>This request will delete an Education record for an employee.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["EducationDetails(PersonCode='[PersonCode]', EffectiveFrom=datetime'[EffectiveFrom]', Qualification='[Qualification]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a5c7c09c-ff28-9692-3069-fcaac6e72d3a"}],"id":"2c989f3e-c6ee-94e1-eb84-d5ac20b12f87","description":"<p>This API enables all information from the Education tab on the Skills &amp; Qualifications screen for active and inactive employees to be retrieved and modified. </p>\n<p>The identifying keys for Education are:</p>\n<ul>\n<li>PersonCode</li>\n<li>EffectiveFrom</li>\n<li>Qualification</li>\n</ul>\n\n<h2>Fields</h2>\n\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PersonCode</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>EffectiveFrom</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>Status</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>EffectiveTo</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>Verified</td>\n<td>Y</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>Qualification</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>SubjectMajor</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>LevelClassification</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ISCEDClassification</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LocalClassification</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ExpectedDuration</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Comments</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>SchoolUniversity</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>WebAddress</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>SchoolType</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>City</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>CountyCode</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>County</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Country</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>PostCode</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Result</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>OutOf</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>AcademicHonour</td>\n<td>Y</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>HonourDescription</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>AcademicCreditHours</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>CreditHoursEarned</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>CompanyFunded</td>\n<td>Y</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>Cost</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Currency</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>BaseCost</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>BaseCurrency</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2> Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to their and all subordinate records.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to their own record.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"d3e38175-45f3-42b4-a855-59875da13145","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"e57657e7-e041-4026-a4ef-d3cf0013f673","type":"text/javascript","exec":[""]}}],"_postman_id":"2c989f3e-c6ee-94e1-eb84-d5ac20b12f87"},{"name":"External Work History","item":[{"name":"List of Employees' External Work History","id":"e2512a69-c1d8-1f7c-d26f-b1964eb4bb1a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/ExternalWorkHistory?$format=json","description":"<p>This request will return a list of External Work History from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["ExternalWorkHistory"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"dccc0657-7b39-f483-6148-2cb141fcde67","name":"List of External Work History","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token]"}],"url":{"raw":"{{url}}/ExternalWorkHistory?$format=json","host":["{{url}}"],"path":["ExternalWorkHistory"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"no-cache","description":""},{"name":"connection","key":"connection","value":"keep-alive","description":""},{"name":"content-length","key":"content-length","value":"794","description":""},{"name":"content-type","key":"content-type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","description":""},{"name":"dataserviceversion","key":"dataserviceversion","value":"3.0;","description":""},{"name":"date","key":"date","value":"Mon, 31 Jul 2017 15:00:13 GMT","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"575","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#ExternalWorkHistory\",\n    \"value\": [\n        {\n            \"PersonCode\": \"40\",\n            \"FullName\": \"Aaron Cornel\",\n            \"EffectiveFrom\": \"2006-01-01T00:00:00\",\n            \"EffectiveTo\": \"2006-07-31T00:00:00\",\n            \"Company\": \"Mars\",\n            \"CompanyURL\": null,\n            \"CompanySize\": null,\n            \"JobTitle\": \"Intern\",\n            \"CurrencyCode\": null,\n            \"ReasonForLeaving\": null,\n            \"GeographicArea\": null,\n            \"FunctionalArea\": null,\n            \"IndustrySector\": null,\n            \"IndustryType\": null,\n            \"CompanyCategory\": null,\n            \"ContractualLevel\": null,\n            \"Location\": null,\n            \"Contract\": null,\n            \"LeavingSalary\": null,\n            \"BaseLeavingSalary\": null,\n            \"Comments\": \"Worked in production support\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2012-12-21T16:13:05.543Z\",\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"BaseCurrencyCode\": \"USD\"\n        }\n    ]\n}"}],"_postman_id":"e2512a69-c1d8-1f7c-d26f-b1964eb4bb1a"},{"name":"Add an Employee's External Work History","id":"41b95fff-9db2-c904-1010-f18307cea787","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"PersonCode\": \"26\",\n  \"EffectiveFrom\": \"2014-01-01T00:00:00\",\n  \"EffectiveTo\": \"2015-03-15T00:00:00\",\n  \"Company\": \"Company 1\",\n  \"JobTitle\": \"Finance Director\"\n}"},"url":"{{url}}/ExternalWorkHistory?$format=json","description":"<p>This request will insert an External Work History record for an employee.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["ExternalWorkHistory"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"c959593d-68b9-140a-c615-692efe491bea","name":"Add an Employee's External Work History","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"PersonCode\": \"26\",\n\t\"EffectiveFrom\": \"2014-01-01T00:00:00\",\n\t\"EffectiveTo\": \"2015-03-15T00:00:00\",\n\t\"Company\": \"Company 1\",\n\t\"JobTitle\": \"Finance Director\"\n}"},"url":{"raw":"{{url}}/ExternalWorkHistory?$format=json","host":["{{url}}"],"path":["ExternalWorkHistory"],"query":[{"key":"$format","value":"json"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"745","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","name":"Content-Type","description":""},{"key":"DataServiceVersion","value":"3.0;","name":"DataServiceVersion","description":""},{"key":"Date","value":"Tue, 02 Jan 2018 17:14:18 GMT","name":"Date","description":""},{"key":"Location","value":"https://showcase.cezanneondemand.com/cezanneondemand/v2/DataService.svc/ExternalWorkHistory(EffectiveFrom=datetime'2014-01-01T00%3A00%3A00',EffectiveTo=datetime'2015-03-15T00%3A00%3A00',JobTitle='Finance%20Director',PersonCode='26')","name":"Location","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"10FF1C8527C119F7CB4E7C4120B8992C37BA1C8AE5234A9C7292845F5BF38D235F1BB6B2EF2F3728FEB7A384928DF969505638D3077B989C224A35AD3FE86D663EBCCEECF12BB193FF45C084F261369A94F105CDE91537455E5B49C713A694D62D34D7A7888AD9B597BDD3246C7569B4C58B10C159A04F82DF9242075831F7E38CE8DEDD0EEAACDD6CF905FEA56D401CC4DB3789AF82193C78C9A4D6A124EB0BDE5B27B6C1663E44BDFDC68E369CC4FD3AE57BC82F41E15393895D53FCBF45BEF8EE38E5FAC9F414B14AF836AC55E69E37B3A04760F8929B12DD607AB5345FE24508BB570572B35BF0EE26ECE04E899FDAEA1A227AC0432679902DA7737F2B5B8C91E71F7F5A858689E6919028A38ADB","key":"CF_SID"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"-1","key":"CF_SLV"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"/1cGaxGPTBHcD8RBFPNm12FtDYLb3lMpw7XIBqrYFhv/PCOTAE7wxR40Odzc4CqCBqtAOZUr4ANdr0FCU5+yshc/OebxJq3yb+4ZnDyqpu6AwS+bVPF+pa/xxdPnk2Wb9Paf0Dv+yZV/0G7/d6kslgWPqvC6vBmhi0lGAwQ6OUY=","key":"__RequestVerificationToken_L0NlemFubmVPbkRlbWFuZA__"}],"responseTime":"879","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#ExternalWorkHistory/@Element\",\n    \"PersonCode\": \"26\",\n    \"FullName\": null,\n    \"EffectiveFrom\": \"2014-01-01T00:00:00\",\n    \"EffectiveTo\": \"2015-03-15T00:00:00\",\n    \"Company\": \"Company 1\",\n    \"CompanyURL\": null,\n    \"CompanySize\": null,\n    \"JobTitle\": \"Finance Director\",\n    \"CurrencyCode\": null,\n    \"ReasonForLeaving\": null,\n    \"GeographicArea\": null,\n    \"FunctionalArea\": null,\n    \"IndustrySector\": null,\n    \"IndustryType\": null,\n    \"CompanyCategory\": null,\n    \"ContractualLevel\": null,\n    \"Location\": null,\n    \"Contract\": null,\n    \"LeavingSalary\": null,\n    \"BaseLeavingSalary\": null,\n    \"Comments\": null,\n    \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedDate\": \"2017-12-16T09:00:04.8492753Z\",\n    \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"BaseCurrencyCode\": null\n}"}],"_postman_id":"41b95fff-9db2-c904-1010-f18307cea787"},{"name":"Update an Employee's External Work History","id":"1743d069-dd2b-4261-bf3f-03b88bf9bfe3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"Comments\": \"Example Comments\"\n}"},"url":"{{url}}/ExternalWorkHistory(PersonCode='[PersonCode]', EffectiveFrom=datetime'[EffectiveFrom]', EffectiveTo=datetime'[EffectiveTo]', JobTitle='[JobTitle]')","description":"<p>This request will update an employee's External Work History record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Request body includes only one field as an example. You can add any extra fields from the table that you require. However, some fields are read-only. \n</li>\n<li>The PersonCode, EffectiveFrom, EffectiveTo and JobTitle cannot be updated as they are the the key fields for this table.</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["ExternalWorkHistory(PersonCode='[PersonCode]', EffectiveFrom=datetime'[EffectiveFrom]', EffectiveTo=datetime'[EffectiveTo]', JobTitle='[JobTitle]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1743d069-dd2b-4261-bf3f-03b88bf9bfe3"},{"name":"Delete an Employee's External Work History","id":"c642c193-4770-334e-cb8d-b34e84125d8d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/ExternalWorkHistory(PersonCode='[PersonCode]', EffectiveFrom=datetime'[EffectiveFrom]', EffectiveTo=datetime'[EffectiveTo]', JobTitle='[JobTitle]')","description":"<p>This request will delete an employee's External Work History record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["ExternalWorkHistory(PersonCode='[PersonCode]', EffectiveFrom=datetime'[EffectiveFrom]', EffectiveTo=datetime'[EffectiveTo]', JobTitle='[JobTitle]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c642c193-4770-334e-cb8d-b34e84125d8d"}],"id":"a8cbd8cb-a912-0970-56ca-c2287f77c5b8","description":"<p>This API enables all information from the External Work History screen for active and inactive employees to be retrieved and modified. </p>\n<p>The identifying keys for External Work History are:</p>\n<ul>\n<li>PersonCode</li>\n<li>EffectiveFrom</li>\n<li>EffectiveTo</li>\n<li>JobTitle</li>\n</ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PersonCode</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>FullName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EffectiveFrom</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>EffectiveTo</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>Company</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>CompanyURL</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>CompanySize</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>JobTitle</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>CurrencyCode</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>ReasonForLeaving</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>GeographicArea</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>FunctionalArea</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>IndustrySector</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>IndustryType</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>CompanyCategory</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>ContractualLevel</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Location</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Contract</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>LeavingSalary</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>BaseLeavingSalary</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Comments</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>BaseCurrencyCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2> Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to their and all subordinate records.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to their own record.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"1cb0e47a-998b-4d49-9d83-3c46517f67ca","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"2787c78b-9c0b-4e63-bca7-b5d198dcbd73","type":"text/javascript","exec":[""]}}],"_postman_id":"a8cbd8cb-a912-0970-56ca-c2287f77c5b8"},{"name":"Language Skills","item":[{"name":"List of Employee Language Skills","id":"7e027ab1-72d6-12c5-da29-e5514ddadadc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/LanguageSkills?$format=json","description":"<p>This request will return a list of Language Skills from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["LanguageSkills"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"3e64d36b-5743-b6d2-87c3-f6592c8aab59","name":"List of Language Skills","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/LanguageSkills?$format=json","host":["{{url}}"],"path":["LanguageSkills"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"no-cache","description":""},{"name":"connection","key":"connection","value":"keep-alive","description":""},{"name":"content-length","key":"content-length","value":"596","description":""},{"name":"content-type","key":"content-type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","description":""},{"name":"dataserviceversion","key":"dataserviceversion","value":"3.0;","description":""},{"name":"date","key":"date","value":"Mon, 31 Jul 2017 15:12:57 GMT","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"513","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#LanguageSkills\",\n    \"value\": [\n        {\n            \"PersonCode\": \"40\",\n            \"FullName\": \"Aaron Cornel\",\n            \"LanguageDescription\": \"Dutch\",\n            \"ProficiencyLevel\": \"Medium\",\n            \"LevelClassification\": null,\n            \"DateAchieved\": \"2012-12-21T00:00:00\",\n            \"Result\": null,\n            \"Fluent\": 1,\n            \"WrittenProficiency\": null,\n            \"ReadingProficiency\": null,\n            \"TranslationProficiency\": null,\n            \"VerbalProficiency\": null,\n            \"Comments\": null,\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2013-01-30T14:33:43.963Z\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\"\n        }\n    ]\n}"}],"_postman_id":"7e027ab1-72d6-12c5-da29-e5514ddadadc"},{"name":"Add an Employee's Language Skills","id":"1d18c6f6-19e1-2439-82cf-8f35698e25e8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"PersonCode\": \"26\",\n  \"LanguageDescription\": \"French\",\n  \"ProficiencyLevel\": \"High\"\n}"},"url":"{{url}}/LanguageSkills?$format=json","description":"<p>This request will insert a Language record for an employee.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["LanguageSkills"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"9869f27d-90a9-c10c-ff5c-5f9cc2a10d87","name":"Add an Employee's Language Skills","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"PersonCode\": \"26\",\n\t\"LanguageDescription\": \"French\",\n\t\"ProficiencyLevel\": \"High\"\n}"},"url":{"raw":"{{url}}/LanguageSkills?$format=json","host":["{{url}}"],"path":["LanguageSkills"],"query":[{"key":"$format","value":"json"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"551","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","name":"Content-Type","description":""},{"key":"DataServiceVersion","value":"3.0;","name":"DataServiceVersion","description":""},{"key":"Date","value":"Tue, 02 Jan 2018 17:15:43 GMT","name":"Date","description":""},{"key":"Location","value":"https://showcase.cezanneondemand.com/cezanneondemand/v2/DataService.svc/LanguageSkills(LanguageDescription='French',PersonCode='26',ProficiencyLevel='High')","name":"Location","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"10FF1C8527C119F7CB4E7C4120B8992C37BA1C8AE5234A9C7292845F5BF38D235F1BB6B2EF2F3728FEB7A384928DF969505638D3077B989C224A35AD3FE86D663EBCCEECF12BB193FF45C084F261369A94F105CDE91537455E5B49C713A694D62D34D7A7888AD9B597BDD3246C7569B4C58B10C159A04F82DF9242075831F7E38CE8DEDD0EEAACDD6CF905FEA56D401CC4DB3789AF82193C78C9A4D6A124EB0BDE5B27B6C1663E44BDFDC68E369CC4FD3AE57BC82F41E15393895D53FCBF45BEF8EE38E5FAC9F414B14AF836AC55E69E37B3A04760F8929B12DD607AB5345FE24508BB570572B35BF0EE26ECE04E899FDAEA1A227AC0432679902DA7737F2B5B8C91E71F7F5A858689E6919028A38ADB","key":"CF_SID"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"-1","key":"CF_SLV"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"/1cGaxGPTBHcD8RBFPNm12FtDYLb3lMpw7XIBqrYFhv/PCOTAE7wxR40Odzc4CqCBqtAOZUr4ANdr0FCU5+yshc/OebxJq3yb+4ZnDyqpu6AwS+bVPF+pa/xxdPnk2Wb9Paf0Dv+yZV/0G7/d6kslgWPqvC6vBmhi0lGAwQ6OUY=","key":"__RequestVerificationToken_L0NlemFubmVPbkRlbWFuZA__"}],"responseTime":"629","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#LanguageSkills/@Element\",\n    \"PersonCode\": \"26\",\n    \"FullName\": null,\n    \"LanguageDescription\": \"French\",\n    \"ProficiencyLevel\": \"High\",\n    \"LevelClassification\": null,\n    \"DateAchieved\": \"2017-12-16T00:00:00\",\n    \"Result\": null,\n    \"Fluent\": 0,\n    \"WrittenProficiency\": null,\n    \"ReadingProficiency\": null,\n    \"TranslationProficiency\": null,\n    \"VerbalProficiency\": null,\n    \"Comments\": null,\n    \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedDate\": \"2017-12-16T09:00:04.9117581Z\",\n    \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\"\n}"}],"_postman_id":"1d18c6f6-19e1-2439-82cf-8f35698e25e8"},{"name":"Update an Employee's Language Skills Record","id":"d459275e-b987-4785-b590-9e45f5962d42","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"Comments\": \"Example Comments\"\n}"},"url":"{{url}}/LanguageSkills(PersonCode='[PersonCode]', LanguageDescription='[LanguageDescription]', ProficiencyLevel='[ProficiencyLevel]')","description":"<p>This request will update an employee's Language Skills record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Request body includes only one field as an example. You can add any extra fields from the table that you require. However, some fields are read-only. \n</li>\n<li>The PersonCode, LanguageDescription and ProficiencyLevel cannot be updated as they are the the key fields for this table.</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["LanguageSkills(PersonCode='[PersonCode]', LanguageDescription='[LanguageDescription]', ProficiencyLevel='[ProficiencyLevel]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d459275e-b987-4785-b590-9e45f5962d42"},{"name":"Delete an Employee's Language Skills Record","id":"c907d1e3-6f6f-f0c2-b2af-7e7443c27fe8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/LanguageSkills(PersonCode='[PersonCode]', LanguageDescription='[LanguageDescription]', ProficiencyLevel='[ProficiencyLevel]')","description":"<p>This request will delete an employee's Language Skills record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["LanguageSkills(PersonCode='[PersonCode]', LanguageDescription='[LanguageDescription]', ProficiencyLevel='[ProficiencyLevel]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c907d1e3-6f6f-f0c2-b2af-7e7443c27fe8"}],"id":"01d896f0-4941-94ec-2b22-c2959757eda9","description":"<p>This API enables all information from the Languages tab on the Skills &amp; Qualifications screen for active and inactive employees to be retrieved and modified. </p>\n<p>The identifying keys for Language Skills are:</p>\n<ul>\n<li>PersonCode</li>\n<li>LanguageDescription</li>\n<li>ProficiencyLevel</li>\n</ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PersonCode</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>FullName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LanguageDescription</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>ProficiencyLevel</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>LevelClassification</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>DateAchieved</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Result</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Fluent</td>\n<td></td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>WrittenProficiency</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>ReadingProficiency</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>TranslationProficiency</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>VerbalProficiency</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Comments</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2> Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to their and all subordinate records.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to their own record.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"8edf7e82-5566-43d1-b05c-d58a13d58c6c","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"5a2d94e5-c110-4bb3-92a4-bf7701b956e4","type":"text/javascript","exec":[""]}}],"_postman_id":"01d896f0-4941-94ec-2b22-c2959757eda9"},{"name":"Personal Skills","item":[{"name":"List of Employee Personal Skills","id":"77c8f897-62dd-2763-a491-5d4c833e901c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/PersonalSkills?$format=json","description":"<p>This request will return a list of Personal Skills from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["PersonalSkills"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"90fcfe09-b778-6787-afb6-82b5fe4fad0f","name":"List of Employee Personal Skills","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/PersonalSkills?$format=json","host":["{{url}}"],"path":["PersonalSkills"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"no-cache","description":""},{"name":"connection","key":"connection","value":"keep-alive","description":""},{"name":"content-length","key":"content-length","value":"624","description":""},{"name":"content-type","key":"content-type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","description":""},{"name":"dataserviceversion","key":"dataserviceversion","value":"3.0;","description":""},{"name":"date","key":"date","value":"Mon, 31 Jul 2017 16:15:58 GMT","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"421","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#PersonalSkills\",\n    \"value\": [\n        {\n            \"PersonalSkillsGUID\": \"35d04256-8625-465c-9f7b-6946378ec48f\",\n            \"PersonCode\": \"807678\",\n            \"FullName\": \"Monday Bandele\",\n            \"SkillDescription\": \"Communication\",\n            \"Level\": \"High\",\n            \"YearLastUsed\": null,\n            \"YearsExperience\": null,\n            \"InterestLevel\": \"High\",\n            \"EvidenceType\": null,\n            \"EvidenceName\": null,\n            \"VerificationDate\": \"2017-07-31T00:00:00\",\n            \"VerifiedBy\": null,\n            \"EvidenceDescription\": null,\n            \"Comments\": null,\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2017-07-31T16:15:55.42Z\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\"\n        }\n    ]\n}"}],"_postman_id":"77c8f897-62dd-2763-a491-5d4c833e901c"},{"name":"Add an Employee's Personal Skills","id":"a94fa58e-85f8-c773-33ad-1ccc0a01421e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Authorization","value":"Bearer Your-API-Token"}],"body":{"mode":"raw","raw":"{\n  \"PersonalSkillsGUID\": \"12345678-1234-1234-1234-123456789101\",\n  \"PersonCode\": \"100\",\n  \"SkillDescription\": \"Advanced Excel\"\n}"},"url":"{{url}}/PersonalSkills?$format=json","description":"<p>This request will insert a Personal Skills record for an employee.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n<li>To add a new Personal Skill, you need to enter a unique PersonalSkillsGUID for each new record in the following format: '12345678-1234-1234-1234-123456789101'\n</li>\n</ul>","urlObject":{"path":["PersonalSkills"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"72ab87b4-7072-54f9-0eec-84e66df3d37f","name":"Add an Employee's Personal Skills","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Authorization","value":"Bearer Your-API-Token"}],"body":{"mode":"raw","raw":"{\n  \"PersonalSkillsGUID\": \"12345678-1234-1234-1234-123456789101\",\n  \"PersonCode\": \"100\",\n  \"SkillDescription\": \"Advanced Excel\"\n}"},"url":{"raw":"{{url}}/PersonalSkills?$format=json","host":["{{url}}"],"path":["PersonalSkills"],"query":[{"key":"$format","value":"json"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"598","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","name":"Content-Type","description":""},{"key":"DataServiceVersion","value":"3.0;","name":"DataServiceVersion","description":""},{"key":"Date","value":"Mon, 08 Jan 2018 12:13:44 GMT","name":"Date","description":""},{"key":"Location","value":"https://showcase.cezanneondemand.com/cezanneondemand/v2/DataService.svc/PersonalSkills(PersonalSkillsGUID=guid'12345678-1234-1234-1234-123456789101',PersonCode='100')","name":"Location","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"10FF1C8527C119F7CB4E7C4120B8992C37BA1C8AE5234A9C7292845F5BF38D235F1BB6B2EF2F3728FEB7A384928DF969505638D3077B989C224A35AD3FE86D663EBCCEECF12BB193FF45C084F261369A94F105CDE91537455E5B49C713A694D62D34D7A7888AD9B597BDD3246C7569B4C58B10C159A04F82DF9242075831F7E38CE8DEDD0EEAACDD6CF905FEA56D401CC4DB3789AF82193C78C9A4D6A124EB0BDE5B27B6C1663E44BDFDC68E369CC4FD3AE57BC82F41E15393895D53FCBF45BEF8EE38E5FAC9F414B14AF836AC55E69E37B3A04760F8929B12DD607AB5345FE24508BB570572B35BF0EE26ECE04E899FDAEA1A227AC0432679902DA7737F2B5B8C91E71F7F5A858689E6919028A38ADB","key":"CF_SID"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"-1","key":"CF_SLV"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"/1cGaxGPTBHcD8RBFPNm12FtDYLb3lMpw7XIBqrYFhv/PCOTAE7wxR40Odzc4CqCBqtAOZUr4ANdr0FCU5+yshc/OebxJq3yb+4ZnDyqpu6AwS+bVPF+pa/xxdPnk2Wb9Paf0Dv+yZV/0G7/d6kslgWPqvC6vBmhi0lGAwQ6OUY=","key":"__RequestVerificationToken_L0NlemFubmVPbkRlbWFuZA__"}],"responseTime":"576","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#PersonalSkills/@Element\",\n    \"PersonalSkillsGUID\": \"12345678-1234-1234-1234-123456789101\",\n    \"PersonCode\": \"100\",\n    \"FullName\": null,\n    \"SkillDescription\": \"Advanced Excel\",\n    \"Level\": null,\n    \"YearLastUsed\": null,\n    \"YearsExperience\": null,\n    \"InterestLevel\": null,\n    \"EvidenceType\": null,\n    \"EvidenceName\": null,\n    \"VerificationDate\": \"2017-12-16T00:00:00\",\n    \"VerifiedBy\": null,\n    \"EvidenceDescription\": null,\n    \"Comments\": null,\n    \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedDate\": \"2017-12-16T09:00:04.7086502Z\",\n    \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\"\n}"}],"_postman_id":"a94fa58e-85f8-c773-33ad-1ccc0a01421e"},{"name":"Update an Employee's Personal Skills","id":"d35d2469-a6c1-4bdc-a15b-5c23d29865a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Authorization","value":"Bearer Your-API-Token"}],"body":{"mode":"raw","raw":"{\n\t\"Comments\": \"Example Comments\"\n}"},"url":"{{url}}/PersonalSkills(PersonCode='[PersonCode]', SkillDescription='[SkillDescription]')","description":"<p>This request will update an employee's Personal Skills record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Request body includes only one field as an example. You can add any extra fields from the table that you require. However, some fields are read-only. \n</li>\n<li>The PersonCode and SkillDescription cannot be updated as they are the the key fields for this table.</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["PersonalSkills(PersonCode='[PersonCode]', SkillDescription='[SkillDescription]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d35d2469-a6c1-4bdc-a15b-5c23d29865a2"},{"name":"Delete an Employee's Personal Skills","id":"64bff75f-29ff-10c3-2d95-3fbea245e87f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"Authorization","value":"Bearer Your-API-Token"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/PersonalSkills(PersonCode='[PersonCode]', SkillDescription='[SkillDescription]')","description":"<p>This request will delete an employee's Personal Skills record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["PersonalSkills(PersonCode='[PersonCode]', SkillDescription='[SkillDescription]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"64bff75f-29ff-10c3-2d95-3fbea245e87f"}],"id":"c2cf04cb-5741-a672-00c8-4505e5f08718","description":"<p>This API enables all information from the Personal Skills tab on the Skills &amp; Qualifications screen for active and inactive employees to be retrieved and modified. </p>\n<p>The identifying keys for Personal Skills are:</p>\n<ul>\n<li>PersonalSkillsGUID</li>\n<li>PersonCode</li>\n</ul>\n\n<h2>Fields</h2>\n\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PersonalSkillsGUID</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>PersonCode</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>FullName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>SkillDescription</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>Level</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>YearLastUsed</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>YearsExperience</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>InterestLevel</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>EvidenceType</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>EvidenceName</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>VerificationDate</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>VerifiedBy</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>EvidenceDescription</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Comments</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2> Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to their and all subordinate records.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to their own record.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"c920f82d-dfa8-4e9f-afa9-74c7e03d1f06","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"1efc6d2c-09ca-45df-82d2-6035018bcc35","type":"text/javascript","exec":[""]}}],"_postman_id":"c2cf04cb-5741-a672-00c8-4505e5f08718"},{"name":"Licences","item":[{"name":"List of Employee Licences","id":"40c88922-d360-6407-b2ac-3291556e3af7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/Licences?$format=json","description":"<p>This request will return a list of Licences from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["Licences"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"4654348d-7592-b455-0897-12774ebbf879","name":"List of Licences","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/Licences?$format=json","host":["{{url}}"],"path":["Licences"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"no-cache","description":""},{"name":"connection","key":"connection","value":"keep-alive","description":""},{"name":"content-length","key":"content-length","value":"540","description":""},{"name":"content-type","key":"content-type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","description":""},{"name":"dataserviceversion","key":"dataserviceversion","value":"3.0;","description":""},{"name":"date","key":"date","value":"Mon, 31 Jul 2017 15:21:04 GMT","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"453","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#Licences\",\n    \"value\": [\n        {\n            \"PersonCode\": \"CEZ23\",\n            \"FullName\": \"Margaret Gray\",\n            \"EffectiveFrom\": \"2001-02-02T00:00:00\",\n            \"EffectiveTo\": \"2002-02-02T00:00:00\",\n            \"LicenceType\": \"Motor Vehicle Personal\",\n            \"Status\": null,\n            \"Name\": \"License Name\",\n            \"IssueDate\": \"2011-07-28T00:00:00\",\n            \"IssuingAuthority\": null,\n            \"Comments\": null,\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2011-07-28T14:49:59.917Z\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\"\n        }\n    ]\n}"}],"_postman_id":"40c88922-d360-6407-b2ac-3291556e3af7"},{"name":"Add an Employee's Licences","id":"450e8682-e693-d912-6b17-179a4f747633","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"PersonCode\": \"26\",\n  \"EffectiveFrom\": \"2017-01-01T00:00:00\",\n  \"EffectiveTo\": \"2017-12-31T00:00:00\",\n  \"LicenceType\": \"Certified Public Accountant\",\n  \"Name\": \"Accountancy\"\n}"},"url":"{{url}}/Licences?$format=json","description":"<p>This request will insert a Licences record for an employee.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["Licences"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"85d6e3e3-4f80-f024-8360-e7281c851dad","name":"Add an Employee's Licences","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"PersonCode\": \"26\",\n  \"EffectiveFrom\": \"2017-01-01T00:00:00\",\n  \"EffectiveTo\": \"2017-12-31T00:00:00\",\n  \"LicenceType\": \"Certified Public Accountant\",\n  \"Name\": \"Accountancy\"\n}"},"url":{"raw":"{{url}}/Licences?$format=json","host":["{{url}}"],"path":["Licences"],"query":[{"key":"$format","value":"json"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"503","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","name":"Content-Type","description":""},{"key":"DataServiceVersion","value":"3.0;","name":"DataServiceVersion","description":""},{"key":"Date","value":"Tue, 02 Jan 2018 17:20:12 GMT","name":"Date","description":""},{"key":"Location","value":"https://showcase.cezanneondemand.com/cezanneondemand/v2/DataService.svc/Licences(EffectiveFrom=datetime'2017-01-01T00%3A00%3A00',EffectiveTo=datetime'2017-12-31T00%3A00%3A00',LicenceType='Certified%20Public%20Accountant',Name='Accountancy',PersonCode='26')","name":"Location","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"10FF1C8527C119F7CB4E7C4120B8992C37BA1C8AE5234A9C7292845F5BF38D235F1BB6B2EF2F3728FEB7A384928DF969505638D3077B989C224A35AD3FE86D663EBCCEECF12BB193FF45C084F261369A94F105CDE91537455E5B49C713A694D62D34D7A7888AD9B597BDD3246C7569B4C58B10C159A04F82DF9242075831F7E38CE8DEDD0EEAACDD6CF905FEA56D401CC4DB3789AF82193C78C9A4D6A124EB0BDE5B27B6C1663E44BDFDC68E369CC4FD3AE57BC82F41E15393895D53FCBF45BEF8EE38E5FAC9F414B14AF836AC55E69E37B3A04760F8929B12DD607AB5345FE24508BB570572B35BF0EE26ECE04E899FDAEA1A227AC0432679902DA7737F2B5B8C91E71F7F5A858689E6919028A38ADB","key":"CF_SID"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"-1","key":"CF_SLV"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"/1cGaxGPTBHcD8RBFPNm12FtDYLb3lMpw7XIBqrYFhv/PCOTAE7wxR40Odzc4CqCBqtAOZUr4ANdr0FCU5+yshc/OebxJq3yb+4ZnDyqpu6AwS+bVPF+pa/xxdPnk2Wb9Paf0Dv+yZV/0G7/d6kslgWPqvC6vBmhi0lGAwQ6OUY=","key":"__RequestVerificationToken_L0NlemFubmVPbkRlbWFuZA__"}],"responseTime":"429","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#Licences/@Element\",\n    \"PersonCode\": \"26\",\n    \"FullName\": null,\n    \"EffectiveFrom\": \"2017-01-01T00:00:00\",\n    \"EffectiveTo\": \"2017-12-31T00:00:00\",\n    \"LicenceType\": \"Certified Public Accountant\",\n    \"Status\": null,\n    \"Name\": \"Accountancy\",\n    \"IssueDate\": \"2017-12-16T00:00:00\",\n    \"IssuingAuthority\": null,\n    \"Comments\": null,\n    \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedDate\": \"2017-12-16T09:00:04.9430082Z\",\n    \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\"\n}"}],"_postman_id":"450e8682-e693-d912-6b17-179a4f747633"},{"name":"Update an Employee's Licences Record","id":"191c5679-7463-4194-aa21-75bccf94ec45","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"Comments\": \"Example Comments\"\n}"},"url":"{{url}}/Licences(PersonCode='[PersonCode]', EffectiveFrom=datetime'[EffectiveFrom]', EffectiveTo=datetime'[EffectiveTo]', LicenceType='[LicenceType]', Name='[Name]')","description":"<p>This request will update an employee's Licences record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Request body includes only one field as an example. You can add any extra fields from the table that you require. However, some fields are read-only. \n</li>\n<li>The PersonCode, EffectiveFrom, EffectiveTo, LicenceType and Name cannot be updated as they are the the key fields for this table.</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["Licences(PersonCode='[PersonCode]', EffectiveFrom=datetime'[EffectiveFrom]', EffectiveTo=datetime'[EffectiveTo]', LicenceType='[LicenceType]', Name='[Name]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"191c5679-7463-4194-aa21-75bccf94ec45"},{"name":"Delete an Employee's Licences Record","id":"da8bd9bc-5bc7-8098-3206-ae8ef5d6252b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/Licences(PersonCode='[PersonCode]', EffectiveFrom=datetime'[EffectiveFrom]', EffectiveTo=datetime'[EffectiveTo]', LicenceType='[LicenceType]', Name='[Name]')","description":"<p>This request will delete an employee's Licences record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["Licences(PersonCode='[PersonCode]', EffectiveFrom=datetime'[EffectiveFrom]', EffectiveTo=datetime'[EffectiveTo]', LicenceType='[LicenceType]', Name='[Name]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"da8bd9bc-5bc7-8098-3206-ae8ef5d6252b"}],"id":"6edc56f1-c82d-a341-9c93-a8a243793411","description":"<p>This API enables all information from the Licences tab on the Skills &amp; Qualifications screen for active and inactive employees to be retrieved and modified. </p>\n<p>The identifying keys for Licences are:</p>\n<ul>\n<li>PersonCode</li>\n<li>EffectiveFrom</li>\n<li>EffectiveTo</li>\n<li>LicenceType</li>\n<li>Name</li>\n</ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PersonCode</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>FullName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EffectiveFrom</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>EffectiveTo</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>LicenceType</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>Status</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Name</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>IssueDate</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>IssuingAuthority</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Comments</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2> Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to their and all subordinate records.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to their own record.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"a0fea27a-b8aa-4413-9569-f97e8febb516","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"c0ec5b58-996a-4717-b841-275401c4f79b","type":"text/javascript","exec":[""]}}],"_postman_id":"6edc56f1-c82d-a341-9c93-a8a243793411"}],"id":"09a2bdd5-c990-0b56-62cb-ba5a93ca2835","_postman_id":"09a2bdd5-c990-0b56-62cb-ba5a93ca2835","description":""},{"name":"Employment","item":[{"name":"Calendar Assignment","item":[{"name":"List of Employee Calendar Assignments","id":"c9a4fecb-76fe-4401-ab77-730042243822","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/CalendarAssignment?$format=json","description":"<p>This request will return a list of Calendar Assignments from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["CalendarAssignment"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"},{"disabled":true,"key":"$top","value":"1"}],"variable":[]}},"response":[],"_postman_id":"c9a4fecb-76fe-4401-ab77-730042243822"},{"name":"Add an Employee Calendar Assignment","id":"a013f61f-fb31-4eb4-afd8-9e898d143c7d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer Your-API-Token"}],"body":{"mode":"raw","raw":"{\n\t\"AbsenceCalendar\": \"England & Wales Calendar Holiday\",\n\t\"PersonCode\": \"0029\",\n\t\"StartDate\": \"2006-03-19T00:00:00\",\n    \"EndDate\": \"2999-12-31T00:00:00\"\n}"},"url":"{{url}}/CalendarAssignment?$format=json","description":"<p>This request will insert a Calendar Assignment record for an employee.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["CalendarAssignment"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"43f00839-2d25-48ee-939a-e467c5e8b3b6","name":"Add an Employee Calendar Assignment","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"AbsenceCalendar\": \"England & Wales Calendar Holiday\",\n\t\"PersonCode\": \"0029\",\n\t\"StartDate\": \"2006-03-19T00:00:00\",\n    \"EndDate\": \"2999-12-31T00:00:00\"\n}"},"url":{"raw":"{{url}}/CalendarAssignment?$format=json","host":["{{url}}"],"path":["CalendarAssignment"],"query":[{"key":"$format","value":"json"},{"key":"$top","value":"1","disabled":true}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Content-Length","value":"450","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"DataServiceVersion","value":"3.0;","name":"DataServiceVersion","description":"Custom header"},{"key":"Date","value":"Fri, 01 Jun 2018 15:49:27 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Location","value":"https://qa.cezanneondemand.com/COD_UPGRADE/v2/DataService.svc/CalendarAssignment(AbsenceCalendar='England%20%26%20Wales%20Calendar%20Holiday',PersonCode='0029',StartDate=datetime'2006-03-19T00%3A00%3A00')","name":"Location","description":"Used in redirection, or when a new resource has been created."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#CalendarAssignment/@Element\",\n    \"AbsenceCalendar\": \"England & Wales Calendar Holiday\",\n    \"BusinessStartTime\": \"1900-01-01T00:00:00\",\n    \"BusinessEndTime\": \"1900-01-01T23:59:00\",\n    \"PersonCode\": \"0029\",\n    \"FullName\": null,\n    \"StartDate\": \"2006-03-19T00:00:00\",\n    \"EndDate\": \"2999-12-31T00:00:00\",\n    \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedDate\": \"2018-06-01T15:13:29.484788Z\"\n}"}],"_postman_id":"a013f61f-fb31-4eb4-afd8-9e898d143c7d"},{"name":"Update an Employee's Calendar Assignment","id":"0296291e-4125-491a-ab9d-430b313e8ce0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"StartDate\": \"2020-01-01T00:00:00\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/CalendarAssignment(AbsenceCalendar='[AbsenceCalendar]', PersonCode='[PersonCode]', StartDate=datetime'[StartDate]')","description":"<p>This request will update an employee's Calendar Assignment record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Request body includes only one field as an example. You can add any extra fields from the table that you require. However, some fields are read-only. \n</li>\n<li>The AbsenceCalendar, PersonCode and StartDate cannot be updated as they are the the key fields for this table.</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["CalendarAssignment(AbsenceCalendar='[AbsenceCalendar]', PersonCode='[PersonCode]', StartDate=datetime'[StartDate]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0296291e-4125-491a-ab9d-430b313e8ce0"},{"name":"Delete an Employee's Calendar Assignment","id":"010a9e04-a66c-4a7f-a64a-191a39606d92","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"DELETE","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{url}}/CalendarAssignment(AbsenceCalendar='[AbsenceCalendar]', PersonCode='[PersonCode]', StartDate=datetime'[StartDate]')","description":"<p>This request will delete an employee's Calendar Assignment record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["CalendarAssignment(AbsenceCalendar='[AbsenceCalendar]', PersonCode='[PersonCode]', StartDate=datetime'[StartDate]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"010a9e04-a66c-4a7f-a64a-191a39606d92"}],"id":"677316ff-c44c-45ec-83f2-02e015854b11","description":"<p>This API enables all information from the Employee Calendar Assignments screen for active and inactive employees to be retrieved and modified.</p>\n<p>The identifying key for Calendar Assignments is:</p>\n<ul>\n<li>AbsenceCalendar</li>\n<li>PersonCode</li>\n<li>StartDate</li>\n</ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AbsenceCalendar</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>BusinessStartTime</td>\n<td></td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>BusinessEndTime</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>PersonCode</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>FullName</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>StartDate</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>EndDate</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2> Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to their and all subordinate records.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to their own record.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"2d27ac10-a156-4e69-a931-c0104bb4d458","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"e52c4d15-8bbd-43e6-a929-e2de5a371960","type":"text/javascript","exec":[""]}}],"_postman_id":"677316ff-c44c-45ec-83f2-02e015854b11"},{"name":"Employments","item":[{"name":"List of Employee Employment Details","id":"634250d2-a7fd-c3b2-55c2-32b4bf8cf10c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/Employments?$format=json","description":"<p>This request will return a list of Employment Details from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["Employments"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"bcad9c93-ef9c-f045-2268-072510cbf0d6","name":"List of Employment Details","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/Employments?$format=json","host":["{{url}}"],"path":["Employments"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"no-cache","description":""},{"name":"connection","key":"connection","value":"keep-alive","description":""},{"name":"content-length","key":"content-length","value":"1444","description":""},{"name":"content-type","key":"content-type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","description":""},{"name":"dataserviceversion","key":"dataserviceversion","value":"3.0;","description":""},{"name":"date","key":"date","value":"Mon, 31 Jul 2017 14:57:00 GMT","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"936","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#Employments\",\n    \"value\": [\n        {\n            \"EmploymentGUID\": \"db162c7c-7526-40a1-a4a3-ebbb5043a6fe\",\n            \"PersonGUID\": \"ee552c7c-9462-40t3-a2b7-ttrr6734a9fe\",\n            \"PersonCode\": \"H807661\",\n            \"FullName\": \"Karl Fletcher\",\n            \"HireDate\": \"2015-05-12T00:00:00\",\n            \"TerminationDate\": \"2015-09-02T00:00:00\",\n            \"EmploymentID\": \"11111\",\n            \"CompanyGUID\": \"2b7f5d5e-966f-41bc-a6dc-c7b9f604d8e8\",\n            \"CompanyCode\": \"OMUK\",\n            \"Company\": \"Omnicrom UK\",\n            \"PrimaryEmployment\": 1,\n            \"EmploymentReason\": null,\n            \"HiringSource\": null,\n            \"OriginalHireDate\": \"2015-05-12T00:00:00\",\n            \"LengthOfService\": \"0.25\",\n            \"LengthOfServiceYears\": 0,\n            \"LengthOfServiceMonths\": 3,\n            \"AdjustedHireDate\": null,\n            \"ContinuousService\": \"0.25\",\n            \"ContinuousServiceYears\": 0,\n            \"ContinuousServiceMonths\": 3,\n            \"DutyEntryDate\": null,\n            \"WorkingTimeOptOut\": 0,\n            \"WorkingTimeOptOutDate\": null,\n            \"HiringComments\": null,\n            \"ProbationPeriodTo\": null,\n            \"ProbationPeriod\": null,\n            \"ProbationPeriodTimeUnits\": null,\n            \"ProbationStatus\": null,\n            \"ProbationExtendedTo\": null,\n            \"NoticePeriod\": null,\n            \"NoticePeriodTimeUnits\": null,\n            \"TerminationReason\": null,\n            \"TimeUntilLeaving\": 0,\n            \"LastWorkedDate\": null,\n            \"LastPaidDate\": null,\n            \"NoticeGivenDate\": null,\n            \"IntendedRetirementDate\": null,\n            \"TerminationComments\": null,\n            \"RedundancyDateStatementSent\": null,\n            \"RedundancyNumberofPaidWeeks\": null,\n            \"RedundancyPaymentCurrency\": null,\n            \"BaseCurrency\": null,\n            \"StatutoryPaymentDue\": null,\n            \"ActualPayment\": null,\n            \"StatutoryPaymentDueBaseCurrency\": null,\n            \"ActualPaymentBaseCurrency\": null,\n            \"RedundancyComments\": null,\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2015-09-03T13:41:55.387Z\",\n            \"UseForPayroll\": 0,\n            \"PayrollCode\": null,\n            \"AdjustedHireDateYear\": null,\n            \"HireDateYear\": 2015,\n            \"OriginalHireDateYear\": 2015,\n            \"AdjustedHireDateMonth\": null,\n            \"HireDateMonth\": \"May\",\n            \"OriginalHireDateMonth\": \"May\",\n            \"InformHmrcOfCodeChange\": 0,\n            \"PreviousPayrollCode\": null,\n            \"FreeCheckbox1\": null,\n            \"FreeCheckbox2\": null,\n            \"FreeDate1\": null,\n            \"FreeDate2\": null,\n            \"FreeNumber1\": null,\n            \"FreeNumber2\": null,\n            \"FreeNumericUpDown1\": null,\n            \"FreeNumericUpDown2\": null,\n            \"FreeRichText1\": null,\n            \"FreeText1\": null,\n            \"FreeText2\": null,\n            \"FreeText3\": null,\n            \"FreeText4\": null,\n            \"FreeText5\": null,\n            \"FreeTextMultiLine1\": null,\n            \"FreeTextMultiLine2\": null\n        }\n    ]\n}"}],"_postman_id":"634250d2-a7fd-c3b2-55c2-32b4bf8cf10c"},{"name":"Add an Employee's Employment Details","id":"d5ac4657-20bd-378b-6f53-bd2662bb715b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"PersonCode\": \"26\",\n  \"HireDate\": \"2017-07-19T00:00:00\",\n  \"TerminationDate\": \"2999-12-31T00:00:00\",\n  \"EmploymentID\": \"EMP00001\",\n  \"CompanyCode\": \"OMUK\"\n}"},"url":"{{url}}/Employments?$format=json","description":"<p>This request will insert an Employment Details record for an employee.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["Employments"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"bab9da71-8248-23d0-0cb9-729bad4b2a6f","name":"Add an Employee's Employment Details","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"PersonCode\": \"26\",\n  \"HireDate\": \"2017-07-19T00:00:00\",\n  \"TerminationDate\": \"2999-12-31T00:00:00\",\n  \"EmploymentID\": \"EMP00001\",\n  \"CompanyCode\": \"OMUK\"\n}"},"url":{"raw":"{{url}}/Employments?$format=json","host":["{{url}}"],"path":["Employments"],"query":[{"key":"$format","value":"json"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"1407","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","name":"Content-Type","description":""},{"key":"DataServiceVersion","value":"3.0;","name":"DataServiceVersion","description":""},{"key":"Date","value":"Tue, 02 Jan 2018 17:22:35 GMT","name":"Date","description":""},{"key":"Location","value":"https://showcase.cezanneondemand.com/cezanneondemand/v2/DataService.svc/Employments(EmploymentID='EMP00001',PersonCode='26')","name":"Location","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"10FF1C8527C119F7CB4E7C4120B8992C37BA1C8AE5234A9C7292845F5BF38D235F1BB6B2EF2F3728FEB7A384928DF969505638D3077B989C224A35AD3FE86D663EBCCEECF12BB193FF45C084F261369A94F105CDE91537455E5B49C713A694D62D34D7A7888AD9B597BDD3246C7569B4C58B10C159A04F82DF9242075831F7E38CE8DEDD0EEAACDD6CF905FEA56D401CC4DB3789AF82193C78C9A4D6A124EB0BDE5B27B6C1663E44BDFDC68E369CC4FD3AE57BC82F41E15393895D53FCBF45BEF8EE38E5FAC9F414B14AF836AC55E69E37B3A04760F8929B12DD607AB5345FE24508BB570572B35BF0EE26ECE04E899FDAEA1A227AC0432679902DA7737F2B5B8C91E71F7F5A858689E6919028A38ADB","key":"CF_SID"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"-1","key":"CF_SLV"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"/1cGaxGPTBHcD8RBFPNm12FtDYLb3lMpw7XIBqrYFhv/PCOTAE7wxR40Odzc4CqCBqtAOZUr4ANdr0FCU5+yshc/OebxJq3yb+4ZnDyqpu6AwS+bVPF+pa/xxdPnk2Wb9Paf0Dv+yZV/0G7/d6kslgWPqvC6vBmhi0lGAwQ6OUY=","key":"__RequestVerificationToken_L0NlemFubmVPbkRlbWFuZA__"}],"responseTime":"451","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#Employments/@Element\",\n    \"EmploymentGUID\": \"db162c7c-7526-40a1-a4a3-ebbb5043a6fe\",\n    \"PersonCode\": \"26\",\n    \"FullName\": null,\n    \"HireDate\": \"2017-07-19T00:00:00\",\n    \"TerminationDate\": \"2999-12-31T00:00:00\",\n    \"EmploymentID\": \"EMP00001\",\n    \"CompanyGUID\": null,\n    \"CompanyCode\": \"OMUK\",\n    \"Company\": null,\n    \"PrimaryEmployment\": 1,\n    \"EmploymentReason\": null,\n    \"HiringSource\": null,\n    \"OriginalHireDate\": null,\n    \"LengthOfService\": null,\n    \"LengthOfServiceYears\": null,\n    \"LengthOfServiceMonths\": null,\n    \"AdjustedHireDate\": null,\n    \"ContinuousService\": null,\n    \"ContinuousServiceYears\": null,\n    \"ContinuousServiceMonths\": null,\n    \"DutyEntryDate\": null,\n    \"WorkingTimeOptOut\": 0,\n    \"WorkingTimeOptOutDate\": null,\n    \"HiringComments\": null,\n    \"ProbationPeriodTo\": null,\n    \"ProbationPeriod\": null,\n    \"ProbationPeriodTimeUnits\": null,\n    \"ProbationStatus\": null,\n    \"ProbationExtendedTo\": null,\n    \"NoticePeriod\": null,\n    \"NoticePeriodTimeUnits\": null,\n    \"TerminationReason\": null,\n    \"TimeUntilLeaving\": null,\n    \"LastWorkedDate\": null,\n    \"LastPaidDate\": null,\n    \"NoticeGivenDate\": null,\n    \"IntendedRetirementDate\": null,\n    \"TerminationComments\": null,\n    \"RedundancyDateStatementSent\": null,\n    \"RedundancyNumberofPaidWeeks\": null,\n    \"RedundancyPaymentCurrency\": null,\n    \"BaseCurrency\": null,\n    \"StatutoryPaymentDue\": null,\n    \"ActualPayment\": null,\n    \"StatutoryPaymentDueBaseCurrency\": null,\n    \"ActualPaymentBaseCurrency\": null,\n    \"RedundancyComments\": null,\n    \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedDate\": \"2017-12-16T09:00:02.3805799Z\",\n    \"UseForPayroll\": 0,\n    \"PayrollCode\": null,\n    \"AdjustedHireDateYear\": null,\n    \"HireDateYear\": 2015,\n    \"OriginalHireDateYear\": 2015,\n    \"AdjustedHireDateMonth\": null,\n    \"HireDateMonth\": \"May\",\n    \"OriginalHireDateMonth\": \"May\",\n    \"FreeCheckbox1\": null,\n    \"FreeCheckbox2\": null,\n    \"FreeDate1\": null,\n    \"FreeDate2\": null,\n    \"FreeNumber1\": null,\n    \"FreeNumber2\": null,\n    \"FreeNumericUpDown1\": null,\n    \"FreeNumericUpDown2\": null,\n    \"FreeRichText1\": null,\n    \"FreeText1\": null,\n    \"FreeText2\": null,\n    \"FreeText3\": null,\n    \"FreeText4\": null,\n    \"FreeText5\": null,\n    \"FreeTextMultiLine1\": null,\n    \"FreeTextMultiLine2\": null\n}"}],"_postman_id":"d5ac4657-20bd-378b-6f53-bd2662bb715b"},{"name":"Update an Employee's Employment Details Record","id":"b71192d3-ffc3-4941-a23e-fbefd540910f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"HiringComments\": \"Example Comments\"\n}"},"url":"{{url}}/Employments(EmploymentID='[EmploymentID]', PersonCode='[PersonCode]')","description":"<p>This request will update an employee's Employment Details record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Request body includes only one field as an example. You can add any extra fields from the table that you require. However, some fields are read-only. \n</li>\n<li>The EmploymentID and PersonCode cannot be updated as they are the the key fields for this table.</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["Employments(EmploymentID='[EmploymentID]', PersonCode='[PersonCode]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b71192d3-ffc3-4941-a23e-fbefd540910f"},{"name":"Delete an Employee's Employment Details Record","id":"31c293f9-d61c-d580-90eb-1d904f351f33","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/Employments(EmploymentID='[EmploymentID]', PersonCode='[PersonCode]')","description":"<p>This request will delete an employee's Employment Details record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["Employments(EmploymentID='[EmploymentID]', PersonCode='[PersonCode]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"31c293f9-d61c-d580-90eb-1d904f351f33"}],"id":"f747ba73-d816-e955-063b-afc56155d58b","description":"<p>The Employments API enables all information from the Employment Details screen for active and inactive employees to be retrieved and modified.</p>\n<p>The identifying keys for Employments are:</p>\n<ul><li><div>EmploymentID</div></li><li><div>PersonCode</div></li></ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>EmploymentGUID</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonGUID</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PersonCode</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>FullName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>HireDate</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>TerminationDate</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>EmploymentID</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>CompanyGUID</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>CompanyCode</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>Company</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>PrimaryEmployment</td>\n<td></td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>EmploymentReason</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>HiringSource</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>OriginalHireDate</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>LengthOfService</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LengthOfServiceYears</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LengthOfServiceMonths</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AdjustedHireDate</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>ContinuousService</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ContinuousServiceYears</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ContinuousServiceMonths</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>DutyEntryDate</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>WorkingTimeOptOut</td>\n<td></td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>WorkingTimeOptOutDate</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>HiringComments</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>ProbationPeriodTo</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>ProbationPeriod</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>ProbationPeriodTimeUnits</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>ProbationStatus</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>ProbationExtendedTo</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>NoticePeriod</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>NoticePeriodTimeUnits</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>TerminationReason</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>TimeUntilLeaving</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>LastWorkedDate</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>LastPaidDate</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>NoticeGivenDate</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>IntendedRetirementDate</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>TerminationComments</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>RedundancyDateStatementSent</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>RedundancyNumberofPaidWeeks</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>RedundancyPaymentCurrency</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>BaseCurrency</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>StatutoryPaymentDue</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>ActualPayment</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>StatutoryPaymentDueBaseCurrency</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ActualPaymentBaseCurrency</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>RedundancyComments</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>UseForPayroll</td>\n<td></td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>PayrollCode</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>AdjustedHireDateYear</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>RegrettableLeaver</td>\n<td></td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>HireDateYear</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>WouldRehire</td>\n<td></td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>OriginalHireDateYear</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AdjustedHireDateMonth</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>HireDateMonth</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>OriginalHireDateMonth</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>InformHmrcOfCodeChange</td>\n<td></td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>PreviousPayrollCode</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>ExitInterviewDate</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>FreeCheckbox1</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeCheckbox2</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeCheckbox3</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeDate1</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeDate2</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeNumber1</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeNumber2</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeNumericUpDown1</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeNumericUpDown2</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeRichText1</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeText1</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeText2</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeText3</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeText4</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeText5</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeTextMultiLine1</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeTextMultiLine2</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to their and all subordinate records.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to their own record.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"6920a44a-894f-4d13-b93d-355606786f38","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"4216b132-c2cc-4582-9dc2-fedbcfa1238c","type":"text/javascript","exec":[""]}}],"_postman_id":"f747ba73-d816-e955-063b-afc56155d58b"},{"name":"Employment Status","item":[{"name":"List of Employee Employment Status","id":"74f332ca-fef5-174b-c0f7-181e39eb6a30","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/EmploymentStatus?$format=json","description":"<p>This request will return a list of Employment Status from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["EmploymentStatus"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"1dc98aee-b7aa-3ac1-0f15-37d6629e4f16","name":"List of Employee Employment Statuses","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/EmploymentStatus?$format=json","host":["{{url}}"],"path":["EmploymentStatus"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"no-cache","description":""},{"name":"connection","key":"connection","value":"keep-alive","description":""},{"name":"content-length","key":"content-length","value":"448","description":""},{"name":"content-type","key":"content-type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","description":""},{"name":"dataserviceversion","key":"dataserviceversion","value":"3.0;","description":""},{"name":"date","key":"date","value":"Mon, 31 Jul 2017 14:43:42 GMT","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"406","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#EmploymentStatus\",\n    \"value\": [\n        {\n            \"PersonCode\": \"26\",\n            \"EffectiveFrom\": \"2016-11-28T00:00:00\",\n            \"EffectiveTo\": \"2999-12-31T00:00:00\",\n            \"EmploymentStatusReason\": \"Retiree\",\n            \"ChangeReason\": null,\n            \"Comments\": null,\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2016-12-01T15:00:08.473Z\",\n            \"ExcludeFromHeadcounts\": 0,\n            \"FreeCheckbox1\": null,\n            \"FreeCheckbox2\": null,\n            \"FreeDate1\": null,\n            \"FreeDate2\": null,\n            \"FreeNumber1\": null,\n            \"FreeNumber2\": null,\n            \"FreeNumericUpDown1\": null,\n            \"FreeNumericUpDown2\": null,\n            \"FreeRichText1\": null,\n            \"FreeText1\": null,\n            \"FreeText2\": null,\n            \"FreeText3\": null,\n            \"FreeText4\": null,\n            \"FreeText5\": null,\n            \"FreeTextMultiLine1\": null,\n            \"FreeTextMultiLine2\": null\n        }\n    ]\n}"}],"_postman_id":"74f332ca-fef5-174b-c0f7-181e39eb6a30"},{"name":"Add an Employee's Employment Status","id":"a77c38f4-7edc-d584-11b3-450dbb22c0a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"PersonCode\": \"26\",\n  \"EffectiveFrom\": \"2017-01-01T00:00:00\",\n  \"EffectiveTo\": \"2017-12-31T00:00:00\",\n  \"EmploymentStatusReason\": \"Leave\",\n  \"ExcludeFromHeadcounts\": \"1\"\n}"},"url":"{{url}}/EmploymentStatus?$format=json","description":"<p>This request will insert an Employment Status record for an employee.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["EmploymentStatus"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"c3db12e9-4b96-9bfb-ef08-90a55cd33989","name":"Add an Employee's Employment Status","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"PersonCode\": \"26\",\n\t\"EffectiveFrom\": \"2017-01-01T00:00:00\",\n\t\"EffectiveTo\": \"2017-12-31T00:00:00\",\n\t\"EmploymentStatusReason\": \"Leave\",\n\t\"ExcludeFromHeadcounts\": \"1\"\n}"},"url":{"raw":"{{url}}/EmploymentStatus?$format=json","host":["{{url}}"],"path":["EmploymentStatus"],"query":[{"key":"$format","value":"json"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"437","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","name":"Content-Type","description":""},{"key":"DataServiceVersion","value":"3.0;","name":"DataServiceVersion","description":""},{"key":"Date","value":"Tue, 02 Jan 2018 17:24:18 GMT","name":"Date","description":""},{"key":"Location","value":"https://showcase.cezanneondemand.com/cezanneondemand/v2/DataService.svc/EmploymentStatus(EffectiveFrom=datetime'2017-01-01T00%3A00%3A00',EmploymentStatusReason='Leave',PersonCode='26')","name":"Location","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"10FF1C8527C119F7CB4E7C4120B8992C37BA1C8AE5234A9C7292845F5BF38D235F1BB6B2EF2F3728FEB7A384928DF969505638D3077B989C224A35AD3FE86D663EBCCEECF12BB193FF45C084F261369A94F105CDE91537455E5B49C713A694D62D34D7A7888AD9B597BDD3246C7569B4C58B10C159A04F82DF9242075831F7E38CE8DEDD0EEAACDD6CF905FEA56D401CC4DB3789AF82193C78C9A4D6A124EB0BDE5B27B6C1663E44BDFDC68E369CC4FD3AE57BC82F41E15393895D53FCBF45BEF8EE38E5FAC9F414B14AF836AC55E69E37B3A04760F8929B12DD607AB5345FE24508BB570572B35BF0EE26ECE04E899FDAEA1A227AC0432679902DA7737F2B5B8C91E71F7F5A858689E6919028A38ADB","key":"CF_SID"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"-1","key":"CF_SLV"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"/1cGaxGPTBHcD8RBFPNm12FtDYLb3lMpw7XIBqrYFhv/PCOTAE7wxR40Odzc4CqCBqtAOZUr4ANdr0FCU5+yshc/OebxJq3yb+4ZnDyqpu6AwS+bVPF+pa/xxdPnk2Wb9Paf0Dv+yZV/0G7/d6kslgWPqvC6vBmhi0lGAwQ6OUY=","key":"__RequestVerificationToken_L0NlemFubmVPbkRlbWFuZA__"}],"responseTime":"585","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#EmploymentStatus/@Element\",\n    \"PersonCode\": \"26\",\n    \"EffectiveFrom\": \"2017-01-01T00:00:00\",\n    \"EffectiveTo\": \"2017-12-31T00:00:00\",\n    \"EmploymentStatusReason\": \"Leave\",\n    \"ChangeReason\": null,\n    \"Comments\": null,\n    \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedDate\": \"2017-12-16T09:00:02.4118234Z\",\n    \"ExcludeFromHeadcounts\": 1,\n    \"FreeCheckbox1\": null,\n    \"FreeCheckbox2\": null,\n    \"FreeDate1\": null,\n    \"FreeDate2\": null,\n    \"FreeNumber1\": null,\n    \"FreeNumber2\": null,\n    \"FreeNumericUpDown1\": null,\n    \"FreeNumericUpDown2\": null,\n    \"FreeRichText1\": null,\n    \"FreeText1\": null,\n    \"FreeText2\": null,\n    \"FreeText3\": null,\n    \"FreeText4\": null,\n    \"FreeText5\": null,\n    \"FreeTextMultiLine1\": null,\n    \"FreeTextMultiLine2\": null\n}"}],"_postman_id":"a77c38f4-7edc-d584-11b3-450dbb22c0a5"},{"name":"Update an Employee's Employment Status Record","id":"c83c5f51-ecf0-48e6-9801-18745db3649c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"Comments\": \"Example Comments\"\n}"},"url":"{{url}}/EmploymentStatus(PersonCode='[PersonCode]', EffectiveFrom=datetime'[EffectiveFrom]', EmploymentStatusReason='[EmploymentStatusReason]')","description":"<p>This request will update an employee's Employment Status record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Request body includes only one field as an example. You can add any extra fields from the table that you require. However, some fields are read-only. \n</li>\n<li>The PersonCode, EffectiveFrom and EmploymentStatusReason cannot be updated as they are the the key fields for this table.</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["EmploymentStatus(PersonCode='[PersonCode]', EffectiveFrom=datetime'[EffectiveFrom]', EmploymentStatusReason='[EmploymentStatusReason]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c83c5f51-ecf0-48e6-9801-18745db3649c"},{"name":"Delete an Employee's Employment Status Record","id":"cfce9116-1875-a2ac-3553-03632b6e4a9e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/EmploymentStatus(PersonCode='[PersonCode]', EffectiveFrom=datetime'[EffectiveFrom]', EmploymentStatusReason='[EmploymentStatusReason]')","description":"<p>This request will delete an employee's Employment Status record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["EmploymentStatus(PersonCode='[PersonCode]', EffectiveFrom=datetime'[EffectiveFrom]', EmploymentStatusReason='[EmploymentStatusReason]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"cfce9116-1875-a2ac-3553-03632b6e4a9e"}],"id":"e2ff895f-680e-b8db-4385-84f1df637eea","description":"<p>This API enables all information from the Employment Status screen for active and inactive employees to be retrieved and modified through this API.</p>\n<p>The identifying keys for Employment Status are:</p>\n<ul>\n<li>PersonCode</li>\n<li>EffectiveFrom</li>\n<li>EmploymentStatusReason</li>\n</ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PersonCode</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>EffectiveFrom</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>EffectiveTo</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>EmploymentStatusReason</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>ChangeReason</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Comments</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ExcludeFromHeadcounts</td>\n<td>Y</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>FreeCheckbox1</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field  within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeCheckbox2</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field  within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeCheckbox3</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field  within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeDate1</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field  within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeDate2</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field  within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeNumber1</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field  within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeNumber2</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field  within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeNumericUpDown1</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field  within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeNumericUpDown2</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field  within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeRichText1</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field  within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeText1</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field  within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeText2</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field  within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeText3</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field  within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeText4</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field  within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeText5</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field  within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeTextMultiLine1</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field  within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeTextMultiLine2</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field  within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n</tbody>\n</table>\n</div><h2> Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"e0c0553b-af63-441a-93b0-ff6972e49778","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"4b470e7c-fbfd-42bb-998e-67279a8c65e8","type":"text/javascript","exec":[""]}}],"_postman_id":"e2ff895f-680e-b8db-4385-84f1df637eea"},{"name":"Employment Contracts","item":[{"name":"List of Employee Contracts","id":"8480d0fc-baac-24a9-4945-a1f4d1f583a3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/EmploymentContracts?$format=json","description":"<p>This request will return a list of Employee Contracts from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["EmploymentContracts"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"e0bcf32d-b847-7e81-0fcb-0a6ac830c66b","name":"List of Employee Contracts","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/EmploymentContracts?$format=json","host":["{{url}}"],"path":["EmploymentContracts"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"no-cache","description":""},{"name":"connection","key":"connection","value":"keep-alive","description":""},{"name":"content-length","key":"content-length","value":"605","description":""},{"name":"content-type","key":"content-type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","description":""},{"name":"dataserviceversion","key":"dataserviceversion","value":"3.0;","description":""},{"name":"date","key":"date","value":"Mon, 31 Jul 2017 14:40:56 GMT","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"903","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#EmploymentContracts\",\n    \"value\": [\n        {\n            \"PersonGUID\": \"0c62d13f-49da-4f8d-97db-92bf2511b582\",\n            \"PersonCode\": \"L0589\",\n            \"EmploymentID\": \"L0589\",\n            \"EmploymentPrimaryEmployment\": 1,\n            \"EffectiveFrom\": \"2000-01-03T00:00:00\",\n            \"EffectiveTo\": \"2001-11-16T00:00:00\",\n            \"EmploymentGUID\": \"b400983a-1443-4b2e-a0c3-d13112dde256\",\n            \"ContractTermCode\": \"T1\",\n            \"ContractTerm\": \"Full Time\",\n            \"IsEmployee\": 1,\n            \"ContractNameCode\": \"C2\",\n            \"ContractName\": \"Standard\",\n            \"PayrollSchedule\": null,\n            \"PayrollGroup\": null,\n            \"Comments\": null,\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2011-07-28T14:57:54.023Z\"\n        }\n    ]\n}"}],"_postman_id":"8480d0fc-baac-24a9-4945-a1f4d1f583a3"},{"name":"Add an Employee's Employment Contract","id":"dfeb0bd4-c63f-dc64-5fae-2e4646dfa590","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"PersonCode\": \"26\",\n  \"EmploymentID\": \"EMP00001\",\n  \"EffectiveFrom\": \"2017-07-19T00:00:00\",\n  \"EffectiveTo\": \"2017-12-31T00:00:00\"\n}"},"url":"{{url}}/EmploymentContracts?$format=json","description":"<p>This request will insert an Employment Contract record for an employee.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["EmploymentContracts"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"e040274c-5488-2505-2303-d9b8adfeff74","name":"Add an Employee's Employment Contract","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"PersonCode\": \"26\",\n\t\"EmploymentID\": \"EMP00001\",\n\t\"EffectiveFrom\": \"2017-07-19T00:00:00\",\n\t\"EffectiveTo\": \"2017-12-31T00:00:00\"\n}"},"url":{"raw":"{{url}}/EmploymentContracts?$format=json","host":["{{url}}"],"path":["EmploymentContracts"],"query":[{"key":"$format","value":"json"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"565","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","name":"Content-Type","description":""},{"key":"DataServiceVersion","value":"3.0;","name":"DataServiceVersion","description":""},{"key":"Date","value":"Tue, 02 Jan 2018 17:32:56 GMT","name":"Date","description":""},{"key":"Location","value":"https://showcase.cezanneondemand.com/cezanneondemand/v2/DataService.svc/EmploymentContracts(EffectiveFrom=datetime'2017-07-19T00%3A00%3A00',EmploymentID='EMP00001',PersonCode='26')","name":"Location","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"10FF1C8527C119F7CB4E7C4120B8992C37BA1C8AE5234A9C7292845F5BF38D235F1BB6B2EF2F3728FEB7A384928DF969505638D3077B989C224A35AD3FE86D663EBCCEECF12BB193FF45C084F261369A94F105CDE91537455E5B49C713A694D62D34D7A7888AD9B597BDD3246C7569B4C58B10C159A04F82DF9242075831F7E38CE8DEDD0EEAACDD6CF905FEA56D401CC4DB3789AF82193C78C9A4D6A124EB0BDE5B27B6C1663E44BDFDC68E369CC4FD3AE57BC82F41E15393895D53FCBF45BEF8EE38E5FAC9F414B14AF836AC55E69E37B3A04760F8929B12DD607AB5345FE24508BB570572B35BF0EE26ECE04E899FDAEA1A227AC0432679902DA7737F2B5B8C91E71F7F5A858689E6919028A38ADB","key":"CF_SID"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"-1","key":"CF_SLV"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"/1cGaxGPTBHcD8RBFPNm12FtDYLb3lMpw7XIBqrYFhv/PCOTAE7wxR40Odzc4CqCBqtAOZUr4ANdr0FCU5+yshc/OebxJq3yb+4ZnDyqpu6AwS+bVPF+pa/xxdPnk2Wb9Paf0Dv+yZV/0G7/d6kslgWPqvC6vBmhi0lGAwQ6OUY=","key":"__RequestVerificationToken_L0NlemFubmVPbkRlbWFuZA__"}],"responseTime":"478","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#EmploymentContracts/@Element\",\n    \"PersonGUID\": null,\n    \"PersonCode\": \"26\",\n    \"EmploymentID\": \"EMP00001\",\n    \"EmploymentPrimaryEmployment\": 1,\n    \"EffectiveFrom\": \"2017-07-19T00:00:00\",\n    \"EffectiveTo\": \"2017-12-31T00:00:00\",\n    \"EmploymentGUID\": null,    \n    \"ContractTermCode\": null,\n    \"ContractTerm\": null,\n    \"IsEmployee\": 0,\n    \"ContractNameCode\": null,\n    \"ContractName\": null,\n    \"PayrollSchedule\": null,\n    \"PayrollGroup\": null,\n    \"Comments\": null,\n    \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedDate\": \"2017-12-16T09:00:02.4118234Z\"\n}"}],"_postman_id":"dfeb0bd4-c63f-dc64-5fae-2e4646dfa590"},{"name":"Update an Employee's Employment Contract","id":"86daa3fd-5e25-4812-b9f9-449185d39ad6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"Comments\": \"Example Comments\"\n}"},"url":"{{url}}/EmploymentContracts(PersonCode='[PersonCode]', EmploymentID='[EmploymentID]', EffectiveFrom=datetime'[EffectiveFrom]')","description":"<p>This request will update an employee's Employment Contract record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Request body includes only one field as an example. You can add any extra fields from the table that you require. However, some fields are read-only. \n</li>\n<li>The PersonCode, EmploymentID and EffectiveFrom cannot be updated as they are the the key fields for this table.</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["EmploymentContracts(PersonCode='[PersonCode]', EmploymentID='[EmploymentID]', EffectiveFrom=datetime'[EffectiveFrom]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"86daa3fd-5e25-4812-b9f9-449185d39ad6"},{"name":"Delete an Employee's Employment Contract","id":"533a4cdb-c318-d21d-d3fa-85b5c18f66a4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/EmploymentContracts(PersonCode='[PersonCode]', EmploymentID='[EmploymentID]', EffectiveFrom=datetime'[EffectiveFrom]')","description":"<p>This request will delete an employee's Employment Contract record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["EmploymentContracts(PersonCode='[PersonCode]', EmploymentID='[EmploymentID]', EffectiveFrom=datetime'[EffectiveFrom]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"533a4cdb-c318-d21d-d3fa-85b5c18f66a4"}],"id":"d35167e2-c404-4969-7440-1e123e5fd8e9","description":"<p>This API enables all information from the Contract History tab on the Employment Details screen for active and inactive employees to be retrieved and modified.</p>\n<p>The unique keys for Employment Contracts are:</p>\n<ul>\n<li>PersonCode</li>\n<li>EmploymentID</li>\n<li>EffectiveFrom</li>\n</ul>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PersonGUID</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PersonCode</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>EmploymentID</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>EmploymentPrimaryEmployment</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>EffectiveFrom</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>EffectiveTo</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>EmploymentGUID</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ContractTermCode</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>ContractTerm</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>IsEmployee</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>ContractNameCode</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>ContractName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PayrollSchedule</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>PayrollGroup</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Comments</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2> Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to their and all subordinate records.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to their own record.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"ba14edfd-4a66-49f4-9d86-97628ed11b8d","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"55e37afb-a71b-42cb-bcc7-01a5a92e4417","type":"text/javascript","exec":[""]}}],"_postman_id":"d35167e2-c404-4969-7440-1e123e5fd8e9"},{"name":"SMCR","item":[{"name":"List of Employee SMCR Records","id":"8a9a7686-e9e8-453e-9831-5bb5f6fdf3a8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"clientSecret":"<client-secret>","clientId":"<client-id>","challengeAlgorithm":"<challenge-algorithm>","scope":"<scope>","grant_type":"<grant_type>","client_authentication":"<client_authentication>","accessTokenUrl":"<access-token-url>","tokenType":"<token-type>","headerPrefix":"<header-prefix>","tokenName":"<token-name>"},"isInherited":false},"method":"GET","header":[],"url":"{{url}}/SMCR?$format=json","description":"<p>This request will return a list of SMCR records from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["SMCR"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"df838a75-7cda-4d9a-a31f-235a3e6c370a","name":"List of Employee SMCR Records","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{url}}/SMCR?$format=json","host":["{{url}}"],"path":["SMCR"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 30 Sep 2021 16:29:41 GMT"},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8"},{"key":"Content-Length","value":"1608"},{"key":"Connection","value":"keep-alive"},{"key":"Set-Cookie","value":"AWSALB=XOJDDAKNj6gTarZCy12rzpBdtyOP0BMNW1gUWcCtJNqzrf01aNSW03cNV0IrLlHDHjFWp9yiESlmMR7XaNJqkfzE2FVSFue8JrZ6r+2iYeF3SQH93b1NJ6PneUiC; Expires=Thu, 07 Oct 2021 16:29:35 GMT; Path=/"},{"key":"Set-Cookie","value":"AWSALBCORS=XOJDDAKNj6gTarZCy12rzpBdtyOP0BMNW1gUWcCtJNqzrf01aNSW03cNV0IrLlHDHjFWp9yiESlmMR7XaNJqkfzE2FVSFue8JrZ6r+2iYeF3SQH93b1NJ6PneUiC; Expires=Thu, 07 Oct 2021 16:29:35 GMT; Path=/; SameSite=None; Secure"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"DataServiceVersion","value":"3.0;"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"https://w3.cezanneondemand.com/cezanneondemand/v5/DataService.svc/$metadata#SMCR\",\n    \"value\": [\n        {\n            \"PersonGuid\": \"5ab5ef7a-43cd-345f-852a-bbee6666ad72\",\n            \"SMCRCertificateGuid\": \"4444c07b-37dc-41d9-t754-88743da81bde\",\n            \"EffectiveFromDate\": \"2021-09-23T00:00:00\",\n            \"EffectiveToDate\": \"2022-09-23T00:00:00\",\n            \"Fitness&ProprietaryAssessmentCompleted\": 1,\n            \"NextFitness&ProprietaryAssessmentDate\": \"2022-09-01T00:00:00\",\n            \"DeclarationSigned\": 1,\n            \"DeclarationRenewalDate\": \"2022-09-02T00:00:00\",\n            \"Comments\": \"Prescribed Responsibilities include:\\n\\n- Responsibility for the firm's performance of its obligations under the senior management regime.\\n- Responsibility for compliance with the requirements of the regulatory system about the management responsibilities map.\\n- Responsibility for overseeing the adoption of the firm's culture in the day-to-day management of the firm.\\n- Responsibility for the development and maintenance of the firm's business model by the governing body.\\n\\nOverall Responsibilities:\\n\\n- Responsibility for estate management, including facilities.\\n- Responsibility for corporate social responsibility, including equality and diversity.\",\n            \"Type\": \"Senior Manager\",\n            \"OrgUnitPosition\": \"BRD (CHAIR) - Chairman of the Board\",\n            \"ImportKey\": \"20210923CEZ01SMF1SMCRCERTIFICATESdZ2NPvyyy3uEnBiIzxRFdeEpj5r66KK\",\n            \"PositionCode\": \"CHAIR\",\n            \"OrgUnitPositionEffectiveFrom\": \"2007-01-01T00:00:00\",\n            \"PersonCode\": \"CEZ01\",\n            \"IsPrimaryDeployment\": 1,\n            \"SeniorManagerFunctionCode\": \"SMF1\",\n            \"SeniorManagerFunction\": \"SMF1 - Chief Executive Function\",\n            \"CertificationFunction\": null,\n            \"CertificationFunctionCode\": null,\n            \"OrgUnitCode\": \"BRD\"\n        }\n    ]\n}"}],"_postman_id":"8a9a7686-e9e8-453e-9831-5bb5f6fdf3a8"},{"name":"Add an Employee's SMCR Record","id":"fe773718-346f-4ff4-b33c-a0d237db1930","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"clientId":"<client-id>","clientSecret":"<client-secret>","accessToken":"<access-token>","tokenType":"<token-type>","challengeAlgorithm":"<challenge-algorithm>","scope":"<scope>","grant_type":"<grant_type>","client_authentication":"<client_authentication>","accessTokenUrl":"<access-token-url>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"        {\n            \"PersonCode\": \"CEZ01\",\n            \"SMCRCertificateGuid\": \"6037c07b-37dc-41d9-b868-73344da81bdf\",\n            \"EffectiveFromDate\": \"2023-09-24T00:00:00\",\n            \"EffectiveToDate\": \"2024-09-23T00:00:00\",\n            \"Type\": \"Senior Manager\",\n            \"PositionCode\": \"CHAIR\",\n            \"OrgUnitPositionEffectiveFrom\": \"2007-01-01T00:00:00\",\n            \"SeniorManagerFunctionCode\": \"SMF1\",\n            \"SeniorManagerFunction\": \"SMF1 - Chief Executive Function\",\n            \"OrgUnitCode\": \"BRD\"\n        }"},"url":"{{url}}/SMCR?$format=json","description":"<p>This request will insert an SMCR record for an employee.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["SMCR"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"92c0c5a2-2876-413d-a9e0-1ff31794de7b","name":"Add an Employee's Employment Contract Copy","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"        {\n            \"PersonCode\": \"CEZ01\",\n            \"SMCRCertificateGuid\": \"6037c07b-37dc-41d9-b868-73344da81bdf\",\n            \"EffectiveFromDate\": \"2023-09-24T00:00:00\",\n            \"EffectiveToDate\": \"2024-09-23T00:00:00\",\n            \"Type\": \"Senior Manager\",\n            \"PositionCode\": \"CHAIR\",\n            \"OrgUnitPositionEffectiveFrom\": \"2007-01-01T00:00:00\",\n            \"SeniorManagerFunctionCode\": \"SMF1\",\n            \"SeniorManagerFunction\": \"SMF1 - Chief Executive Function\",\n            \"OrgUnitCode\": \"BRD\"\n        }"},"url":{"raw":"https://w3.cezanneondemand.com/cezanneondemand/v5/dataservice.svc/SMCR?$format=json","protocol":"https","host":["w3","cezanneondemand","com"],"path":["cezanneondemand","v5","dataservice.svc","SMCR"],"query":[{"key":"$format","value":"json"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 30 Sep 2021 16:53:07 GMT"},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8"},{"key":"Content-Length","value":"784"},{"key":"Connection","value":"keep-alive"},{"key":"Set-Cookie","value":"AWSALB=U7YYkXPPNF7gFOBXcWERgLCR8Mp6iUXaz6EdRoutru2VRdXQO7uNyZmVh/bpp/JspmAZw26cTnZexVWArHL0ArO0RKgOOo1IA7MPW42Rp7ZhTSKKVO4CZj2IM7/V; Expires=Thu, 07 Oct 2021 16:53:07 GMT; Path=/"},{"key":"Set-Cookie","value":"AWSALBCORS=U7YYkXPPNF7gFOBXcWERgLCR8Mp6iUXaz6EdRoutru2VRdXQO7uNyZmVh/bpp/JspmAZw26cTnZexVWArHL0ArO0RKgOOo1IA7MPW42Rp7ZhTSKKVO4CZj2IM7/V; Expires=Thu, 07 Oct 2021 16:53:07 GMT; Path=/; SameSite=None; Secure"},{"key":"Cache-Control","value":"no-cache"},{"key":"Location","value":"https://qaalb.cezanneondemand.com/COD_F033B/v5/DataService.svc/SMCR(guid'6037c07b-37dc-41d9-b868-73344da81bdf')"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"DataServiceVersion","value":"3.0;"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"https://w3.cezanneondemand.com/cezanneondemand/v5/DataService.svc/$metadata#SMCR/@Element\",\n    \"PersonGuid\": null,\n    \"SMCRCertificateGuid\": \"6037c07b-37dc-41d9-b868-73344da81bdf\",\n    \"EffectiveFromDate\": \"2023-09-24T00:00:00\",\n    \"EffectiveToDate\": \"2024-09-23T00:00:00\",\n    \"Fitness&ProprietaryAssessmentCompleted\": 0,\n    \"NextFitness&ProprietaryAssessmentDate\": null,\n    \"DeclarationSigned\": 0,\n    \"DeclarationRenewalDate\": null,\n    \"Comments\": null,\n    \"Type\": \"Senior Manager\",\n    \"OrgUnitPosition\": null,\n    \"ImportKey\": null,\n    \"PositionCode\": \"CHAIR\",\n    \"OrgUnitPositionEffectiveFrom\": \"2007-01-01T00:00:00\",\n    \"PersonCode\": \"CEZ01\",\n    \"IsPrimaryDeployment\": 1,\n    \"SeniorManagerFunctionCode\": \"SMF1\",\n    \"SeniorManagerFunction\": \"SMF1 - Chief Executive Function\",\n    \"CertificationFunction\": null,\n    \"CertificationFunctionCode\": null,\n    \"OrgUnitCode\": \"BRD\"\n}"}],"_postman_id":"fe773718-346f-4ff4-b33c-a0d237db1930"},{"name":"Update an Employee's SMCR Record","id":"2d673b5d-1820-4f1a-b863-88e9c6f12eb1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"Comments\": \"Example Comments\"\n}"},"url":"{{url}}/EmploymentContracts(SMCRCertificateGuid='[SMCRCertificateGuid]')","description":"<p>This request will update an employee's SMCR record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Request body includes only one field as an example. You can add any extra fields from the table that you require. However, some fields are read-only. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["EmploymentContracts(SMCRCertificateGuid='[SMCRCertificateGuid]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2d673b5d-1820-4f1a-b863-88e9c6f12eb1"},{"name":"Delete an Employee's SMCR Record","id":"fd198a8f-2b41-45ee-9f32-621a49b5fd50","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/SMCR(SMCRCertificateGuid='[SMCRCertificateGuid]')","description":"<p>This request will delete an employee's SMCR record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["SMCR(SMCRCertificateGuid='[SMCRCertificateGuid]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"fd198a8f-2b41-45ee-9f32-621a49b5fd50"}],"id":"69c9a7e9-2958-4e13-ade7-0c7d4f49510a","description":"<p>This API enables all information from the SMCR screen for active and inactive employees to be retrieved and modified.</p>\n<p>The unique keys for SMCR:</p>\n<ul>\n<li>SMCRCertificateGuid</li>\n</ul>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PersonGuid</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>SMCRCertificateGuid</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>EffectiveFromDate</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>EffectiveToDate</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>Fitness&amp;ProprietaryAssessmentCompleted</td>\n<td></td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>NextFitness&amp;ProprietaryAssessmentDate</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>DeclarationSigned</td>\n<td></td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>DeclarationRenewalDate</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Comments</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Type</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>OrgUnitPosition</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>ImportKey</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>PositionCode</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>OrgUnitPositionEffectiveFrom</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>PersonCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>IsPrimaryDeployment</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>SeniorManagerFunctionCode</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>SeniorManagerFunction</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>CertificationFunction</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>CertificationFunctionCode</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>OrgUnitCode</td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2> Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to their and all subordinate records.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to their own record.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"69c9a7e9-2958-4e13-ade7-0c7d4f49510a"},{"name":"National Contract Salary Levels (Read-Only)","item":[{"name":"List of National Contract Salary Levels","id":"702ea822-a611-71c8-a02a-e9ca5cd05e55","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/NationalContractSalaryLevels?$format=json","description":"<p>This request will return a list of National Contract Salary Levels from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["NationalContractSalaryLevels"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"a93f3fee-1da6-75a5-9df7-db93e152e8de","name":"List of National Contract Salary Levels","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/NationalContractSalaryLevels?$format=json","host":["{{url}}"],"path":["NationalContractSalaryLevels"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"no-cache","description":""},{"name":"connection","key":"connection","value":"keep-alive","description":""},{"name":"content-length","key":"content-length","value":"660","description":""},{"name":"content-type","key":"content-type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","description":""},{"name":"dataserviceversion","key":"dataserviceversion","value":"3.0;","description":""},{"name":"date","key":"date","value":"Wed, 26 Jul 2017 16:02:31 GMT","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"464","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#NationalContractSalaryLevels\",\n    \"value\": [\n        {\n            \"PersonCode\": \"26\",\n            \"FullName\": \"Cheryl Abrahams\",\n            \"EmploymentID\": \"EMP0001\",\n            \"SalaryLevelCompanyCode\": \"OMHOLD\",\n            \"SalaryLevelCompanyName\": \"Omnicrom Holding Ltd\",\n            \"ContractualSalaryLevel\": \"Manager\",\n            \"ContractualSalaryLevelCode\": \"A1\",\n            \"CCNL\": \"Collective Bargaining Agreement\",\n            \"CCNLCode\": \"21\",\n            \"EffectiveFrom\": \"2006-01-01T00:00:00\",\n            \"EffectiveTo\": \"2006-02-01T00:00:00\",\n            \"SalaryLevelReason\": \"565656545646\",\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2015-12-23T10:39:29.837Z\"\n        }\n    ]\n}"}],"_postman_id":"702ea822-a611-71c8-a02a-e9ca5cd05e55"}],"id":"64546845-4906-41fc-1419-f80d6cc73139","description":"<p>This API enables all information from the Salary Levels tab on the National Contract Details screen for active and inactive employees to be retrieved and modified. </p>\n<p>The identifying keys for National Contract Salary Levels are:</p>\n<ul>\n<li>PersonCode</li>\n<li>EmploymentID</li>\n<li>ContractualSalaryLevel</li>\n<li>EffectiveFrom</li>\n</ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PersonCode</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>FullName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EmploymentID</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>SalaryLevelCompanyCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>SalaryLevelCompanyName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ContractualSalaryLevel</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>ContractualSalaryLevelCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>CCNL</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>CCNLCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EffectiveFrom</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>EffectiveTo</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>SalaryLevelReason</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2> Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has read-only access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to their and all subordinate records.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to their own record.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"54096227-22bc-4828-a0e9-ee0c3ad22c1d","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"00d63778-9c53-40fe-8461-07c5b4a6f19d","type":"text/javascript","exec":[""]}}],"_postman_id":"64546845-4906-41fc-1419-f80d6cc73139"},{"name":"National Contract Qualifications","item":[{"name":"List of Employee National Contract Qualifications","id":"a7688e2d-050f-42a1-1f12-a2068d9a1443","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/NationalContractQualifications?$format=json","description":"<p>This request will return a list of National Contract Qualifications from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["NationalContractQualifications"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"4efe3917-3497-027f-2536-d3d6f8f96814","name":"List of National Contract Qualifications","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/NationalContractQualifications?$format=json","host":["{{url}}"],"path":["NationalContractQualifications"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"no-cache","description":""},{"name":"connection","key":"connection","value":"keep-alive","description":""},{"name":"content-length","key":"content-length","value":"647","description":""},{"name":"content-type","key":"content-type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","description":""},{"name":"dataserviceversion","key":"dataserviceversion","value":"3.0;","description":""},{"name":"date","key":"date","value":"Mon, 31 Jul 2017 15:32:27 GMT","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"440","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#NationalContractQualifications\",\n    \"value\": [\n        {\n            \"PersonCode\": \"26\",\n            \"FullName\": \"Cheryl Abrahams\",\n            \"EmploymentID\": \"EMP0001\",\n            \"QualificationCompanyCode\": \"OMHOLD\",\n            \"QualificationCompanyName\": \"Omnicrom Holding Ltd\",\n            \"Qualification\": \"Blue Collar\",\n            \"QualificationCode\": \"O\",\n            \"EffectiveFrom\": \"2016-12-01T00:00:00\",\n            \"EffectiveTo\": \"2999-12-31T00:00:00\",\n            \"DirectManufacturing\": 1,\n            \"NationalContractReason\": null,\n            \"NationalContractReasonCode\": null,\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2016-12-01T14:58:03.223Z\"\n        }\n    ]\n}"}],"_postman_id":"a7688e2d-050f-42a1-1f12-a2068d9a1443"},{"name":"Add an Employee's National Contract Qualifications","id":"7fa0c303-8a7e-d326-f469-d61389978732","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"PersonCode\": \"26\",\n  \"EmploymentID\": \"EMP00001\",\n  \"Qualification\": \"Manager\",\n  \"EffectiveFrom\": \"2017-01-01T00:00:00\",\n  \"EffectiveTo\": \"2017-12-31T00:00:00\",\n  \"DirectManufacturing\": \"0\"\n}"},"url":"{{url}}/NationalContractQualifications?$format=json","description":"<p>This request will insert a National Contract Qualification record for an employee.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["NationalContractQualifications"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"4084679b-5f7a-d930-2b4e-0d40676329bd","name":"Add an Employee's National Contract Qualifications","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"PersonCode\": \"26\",\n\t\"EmploymentID\": \"EMP00001\",\n\t\"Qualification\": \"Manager\",\n\t\"EffectiveFrom\": \"2017-01-01T00:00:00\",\n\t\"EffectiveTo\": \"2017-12-31T00:00:00\",\n\t\"DirectManufacturing\": \"0\"\n}"},"url":{"raw":"{{url}}/NationalContractQualifications?$format=json","host":["{{url}}"],"path":["NationalContractQualifications"],"query":[{"key":"$format","value":"json"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"601","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","name":"Content-Type","description":""},{"key":"DataServiceVersion","value":"3.0;","name":"DataServiceVersion","description":""},{"key":"Date","value":"Tue, 02 Jan 2018 17:37:28 GMT","name":"Date","description":""},{"key":"Location","value":"https://showcase.cezanneondemand.com/cezanneondemand/v2/DataService.svc/NationalContractQualifications(EffectiveFrom=datetime'2017-01-01T00%3A00%3A00',EmploymentID='EMP00001',PersonCode='26',Qualification='Manager')","name":"Location","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"10FF1C8527C119F7CB4E7C4120B8992C37BA1C8AE5234A9C7292845F5BF38D235F1BB6B2EF2F3728FEB7A384928DF969505638D3077B989C224A35AD3FE86D663EBCCEECF12BB193FF45C084F261369A94F105CDE91537455E5B49C713A694D62D34D7A7888AD9B597BDD3246C7569B4C58B10C159A04F82DF9242075831F7E38CE8DEDD0EEAACDD6CF905FEA56D401CC4DB3789AF82193C78C9A4D6A124EB0BDE5B27B6C1663E44BDFDC68E369CC4FD3AE57BC82F41E15393895D53FCBF45BEF8EE38E5FAC9F414B14AF836AC55E69E37B3A04760F8929B12DD607AB5345FE24508BB570572B35BF0EE26ECE04E899FDAEA1A227AC0432679902DA7737F2B5B8C91E71F7F5A858689E6919028A38ADB","key":"CF_SID"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"-1","key":"CF_SLV"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"/1cGaxGPTBHcD8RBFPNm12FtDYLb3lMpw7XIBqrYFhv/PCOTAE7wxR40Odzc4CqCBqtAOZUr4ANdr0FCU5+yshc/OebxJq3yb+4ZnDyqpu6AwS+bVPF+pa/xxdPnk2Wb9Paf0Dv+yZV/0G7/d6kslgWPqvC6vBmhi0lGAwQ6OUY=","key":"__RequestVerificationToken_L0NlemFubmVPbkRlbWFuZA__"}],"responseTime":"1133","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#NationalContractQualifications/@Element\",\n    \"PersonCode\": \"26\",\n    \"FullName\": null,\n    \"EmploymentID\": \"EMP00001\",\n    \"QualificationCompanyCode\": null,\n    \"QualificationCompanyName\": null,\n    \"Qualification\": \"Manager\",\n    \"QualificationCode\": null,\n    \"EffectiveFrom\": \"2017-01-01T00:00:00\",\n    \"EffectiveTo\": \"2017-12-31T00:00:00\",\n    \"DirectManufacturing\": 0,\n    \"NationalContractReason\": null,\n    \"NationalContractReasonCode\": null,\n    \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedDate\": \"2017-12-16T09:00:04.1305245Z\"\n}"}],"_postman_id":"7fa0c303-8a7e-d326-f469-d61389978732"},{"name":"Update an Employee's National Contract Qualifications record","id":"dc916f72-f717-430a-82f9-3f5fec3f44c6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"NationalContractReason\": \"Example Reason\"\n}"},"url":"{{url}}/NationalContractQualifications(PersonCode='[PersonCode]', EmploymentID='[EmploymentID]', Qualification='[Qualification]', EffectiveFrom=datetime'[EffectiveFrom]')","description":"<p>This request will update an employee's National Contract Qualification record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Request body includes only one field as an example. You can add any extra fields from the table that you require. However, some fields are read-only. \n</li>\n<li>The PersonCode, EmploymentID, Qualification and EffectiveFrom cannot be updated as they are the the key fields for this table.</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["NationalContractQualifications(PersonCode='[PersonCode]', EmploymentID='[EmploymentID]', Qualification='[Qualification]', EffectiveFrom=datetime'[EffectiveFrom]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"dc916f72-f717-430a-82f9-3f5fec3f44c6"},{"name":"Delete an Employee's National Contract Qualifications record","id":"b21f2a86-7f53-2172-01f8-67e80a812ab3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/NationalContractQualifications(PersonCode='[PersonCode]', EmploymentID='[EmploymentID]', Qualification='[Qualification]', EffectiveFrom=datetime'[EffectiveFrom]')","description":"<p>This request will delete an employee's National Contract Qualification record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["NationalContractQualifications(PersonCode='[PersonCode]', EmploymentID='[EmploymentID]', Qualification='[Qualification]', EffectiveFrom=datetime'[EffectiveFrom]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b21f2a86-7f53-2172-01f8-67e80a812ab3"}],"id":"b3df190c-4ed4-eb59-aaa2-d1a92e28e23d","description":"<p>This API enables all information from the Qualifications tab on the National Contract Details screen for active and inactive employees to be retrieved and modified.</p>\n<p>The identifying keys for National Contract Qualifications are:</p>\n<ul><li><p>PersonCode</p></li><li><p>EmploymentID</p></li><li><p>Qualification</p></li><li><p>EffectiveFrom</p></li></ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PersonCode</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>FullName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EmploymentID</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>QualificationCompanyCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>QualificationCompanyName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Qualification</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>QualificationCode</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>EffectiveFrom</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>EffectiveTo</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>DirectManufacturing</td>\n<td>Y</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>NationalContractReason</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>NationalContractReasonCode</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to their and all subordinate records.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to their own record.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"99624faa-ad31-4ffa-9d9d-0788aa467fb6","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"b48180a5-90a3-4334-8f68-737d5edfa976","type":"text/javascript","exec":[""]}}],"_postman_id":"b3df190c-4ed4-eb59-aaa2-d1a92e28e23d"}],"id":"5bd7ba33-608c-f9ae-2abc-523d10733a25","_postman_id":"5bd7ba33-608c-f9ae-2abc-523d10733a25","description":""},{"name":"Deployment","item":[{"name":"Person Grades","item":[{"name":"List of Person Grades","id":"1cf28a71-094b-b4f0-e966-532554762f45","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/PersonGrades?$format=json","description":"<p>This request will return a list of Person Grades from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["PersonGrades"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"dd27afe3-b830-0ce6-4749-29dd84db91a9","name":"List of Person Grades","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/PersonGrades?$format=json","host":["{{url}}"],"path":["PersonGrades"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"no-cache","description":""},{"name":"connection","key":"connection","value":"keep-alive","description":""},{"name":"content-length","key":"content-length","value":"530","description":""},{"name":"content-type","key":"content-type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","description":""},{"name":"dataserviceversion","key":"dataserviceversion","value":"3.0;","description":""},{"name":"date","key":"date","value":"Mon, 31 Jul 2017 15:42:06 GMT","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"581","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#PersonGrades\",\n    \"value\": [\n        {\n            \"PersonGradeGUID\": \"db162c7c-7526-40a1-a4a3-ebbb5043a6fe\",\n            \"PersonCode\": \"8925\",\n            \"FullName\": \"Richard Harrison\",\n            \"EffectiveFrom\": \"2000-01-08T00:00:00\",\n            \"EffectiveTo\": \"2999-12-31T00:00:00\",\n            \"PrimaryGrade\": 1,\n            \"Comments\": null,\n            \"DeploymentReason\": null,\n            \"DeploymentReasonCode\": null,\n            \"Grade\": \"24\",\n            \"GradeCode\": \"24\",\n            \"GradeGroup\": null,\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2011-07-28T15:15:09.037Z\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"GradeEmploymentID\": null\n        }\n    ]\n}"}],"_postman_id":"1cf28a71-094b-b4f0-e966-532554762f45"},{"name":"Add an Employee's Person Grade","id":"812cc955-05b4-65b3-6d95-9d1edfe9ec88","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"PersonCode\": \"26\",\n  \"EffectiveFrom\": \"2017-01-01T00:00:00\",\n  \"EffectiveTo\": \"2017-12-31T00:00:00\",\n  \"PrimaryGrade\": \"1\",\n  \"Grade\": \"Grade 6\",\n  \"GradeCode\": \"Grade 6\"\n}"},"url":"{{url}}/PersonGrades?$format=json","description":"<p>This request will insert a Person Grade record for an employee.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["PersonGrades"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"a36bf455-a70f-7036-4fe8-6da097554d5a","name":"Add an Employee's Person Grade","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"PersonCode\": \"26\",\n\t\"EffectiveFrom\": \"2017-01-01T00:00:00\",\n\t\"EffectiveTo\": \"2017-12-31T00:00:00\",\n\t\"PrimaryGrade\": \"1\",\n\t\"Grade\": \"Grade 6\",\n\t\"GradeCode\": \"Grade 6\"\n}"},"url":{"raw":"{{url}}/PersonGrades?$format=json","host":["{{url}}"],"path":["PersonGrades"],"query":[{"key":"$format","value":"json"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"497","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","name":"Content-Type","description":""},{"key":"DataServiceVersion","value":"3.0;","name":"DataServiceVersion","description":""},{"key":"Date","value":"Tue, 02 Jan 2018 17:39:10 GMT","name":"Date","description":""},{"key":"Location","value":"https://showcase.cezanneondemand.com/cezanneondemand/v2/DataService.svc/PersonGrades(EffectiveFrom=datetime'2017-01-01T00%3A00%3A00',GradeCode='Grade%206',PersonCode='26',PrimaryGrade=1)","name":"Location","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"10FF1C8527C119F7CB4E7C4120B8992C37BA1C8AE5234A9C7292845F5BF38D235F1BB6B2EF2F3728FEB7A384928DF969505638D3077B989C224A35AD3FE86D663EBCCEECF12BB193FF45C084F261369A94F105CDE91537455E5B49C713A694D62D34D7A7888AD9B597BDD3246C7569B4C58B10C159A04F82DF9242075831F7E38CE8DEDD0EEAACDD6CF905FEA56D401CC4DB3789AF82193C78C9A4D6A124EB0BDE5B27B6C1663E44BDFDC68E369CC4FD3AE57BC82F41E15393895D53FCBF45BEF8EE38E5FAC9F414B14AF836AC55E69E37B3A04760F8929B12DD607AB5345FE24508BB570572B35BF0EE26ECE04E899FDAEA1A227AC0432679902DA7737F2B5B8C91E71F7F5A858689E6919028A38ADB","key":"CF_SID"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"-1","key":"CF_SLV"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"/1cGaxGPTBHcD8RBFPNm12FtDYLb3lMpw7XIBqrYFhv/PCOTAE7wxR40Odzc4CqCBqtAOZUr4ANdr0FCU5+yshc/OebxJq3yb+4ZnDyqpu6AwS+bVPF+pa/xxdPnk2Wb9Paf0Dv+yZV/0G7/d6kslgWPqvC6vBmhi0lGAwQ6OUY=","key":"__RequestVerificationToken_L0NlemFubmVPbkRlbWFuZA__"}],"responseTime":"676","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#PersonGrades/@Element\",\n    \"PersonCode\": \"26\",\n    \"FullName\": null,\n    \"EffectiveFrom\": \"2017-01-01T00:00:00\",\n    \"EffectiveTo\": \"2017-12-31T00:00:00\",\n    \"PrimaryGrade\": 1,\n    \"Comments\": null,\n    \"DeploymentReason\": null,\n    \"DeploymentReasonCode\": null,\n    \"Grade\": \"Grade 6\",\n    \"GradeCode\": \"Grade 6\",\n    \"GradeGroup\": null,\n    \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedDate\": \"2017-12-16T09:00:02.8961782Z\",\n    \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\"\n}"}],"_postman_id":"812cc955-05b4-65b3-6d95-9d1edfe9ec88"},{"name":"Update an Employee's Person Grade record","id":"a2a3927a-e7be-4da1-8346-ecb728db21fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"Comments\": \"Example Comments\"\n}"},"url":"{{url}}/PersonGrades(PersonCode='[PersonCode]', EffectiveFrom=datetime'[EffectiveFrom]', PrimaryGrade='[PrimaryGrade]', GradeCode='[GradeCode]')","description":"<p>This request will update an employee's Person Grade record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Request body includes only one field as an example. You can add any extra fields from the table that you require. However, some fields are read-only. \n</li>\n<li>The PersonCode, EffectiveFrom, PrimaryGrade and GradeCode cannot be updated as they are the the key fields for this table.</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["PersonGrades(PersonCode='[PersonCode]', EffectiveFrom=datetime'[EffectiveFrom]', PrimaryGrade='[PrimaryGrade]', GradeCode='[GradeCode]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a2a3927a-e7be-4da1-8346-ecb728db21fa"},{"name":"Delete an Employee's Person Grade record","id":"505f5af2-3521-11fc-ceac-d9dc0838ab01","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/PersonGrades(PersonCode='[PersonCode]', EffectiveFrom=datetime'[EffectiveFrom]', PrimaryGrade='[PrimaryGrade]', GradeCode='[GradeCode]')","description":"<p>This request will delete an employee's Person Grade record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["PersonGrades(PersonCode='[PersonCode]', EffectiveFrom=datetime'[EffectiveFrom]', PrimaryGrade='[PrimaryGrade]', GradeCode='[GradeCode]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"505f5af2-3521-11fc-ceac-d9dc0838ab01"}],"id":"2be9eb13-87d0-58e0-338e-fefb007a819f","description":"<p>This API enables all information from the Person Deployment Grades screen for active and inactive employees to be retrieved and modified. </p>\n<p>The identifying key for Person Grades is:</p>\n<ul>\n<li>PersonGradeGUID</li>\n</ul>\n\n<h3>Note:</h3>For API v1 to v4, the identifying keys for Person Grades are:\n<ul>\n<li>PersonCode</li>\n<li>EffectiveFrom</li>\n<li>PrimaryGrade</li>\n<li>GradeCode</li>\n</ul>\n\n<h2>Fields</h2>\n\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PersonGradeGUID</td>\n<td>Y</td>\n<td>Key.Read-only.</td>\n</tr>\n<tr>\n<td>PersonCode</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>FullName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EffectiveFrom</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>EffectiveTo</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>PrimaryGrade</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>Comments</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>DeploymentReason</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>DeploymentReasonCode</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Grade</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>GradeCode</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>GradeGroup</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>GradeEmploymentID</td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2> Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to their and all subordinate records.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to their own record.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"f850195d-1a43-448d-ac75-d5cfd7cd3200","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"672b2c1c-0f59-44b0-84c2-0e6e8dc8b6d4","type":"text/javascript","exec":[""]}}],"_postman_id":"2be9eb13-87d0-58e0-338e-fefb007a819f"},{"name":"Location Deployments","item":[{"name":"List of Employee Location Deployments","id":"fb9506a8-58af-e56a-9a73-ba15ed235add","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/dataservice.svc/LocationDeployments?$format=json","description":"<p>This request will return a list of Employee Location Deployments from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["dataservice.svc","LocationDeployments"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"69a8039c-586d-1acd-dd26-7d3aba91e12c","name":"List of Employee Location Deployments","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/LocationDeployments?$format=json","host":["{{url}}"],"path":["LocationDeployments"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"no-cache","description":""},{"name":"connection","key":"connection","value":"keep-alive","description":""},{"name":"content-length","key":"content-length","value":"599","description":""},{"name":"content-type","key":"content-type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","description":""},{"name":"dataserviceversion","key":"dataserviceversion","value":"3.0;","description":""},{"name":"date","key":"date","value":"Mon, 31 Jul 2017 15:23:21 GMT","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"485","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#LocationDeployments\",\n    \"value\": [\n        {\n            \"CompanyLocationCode\": \"Bristol\",\n            \"CompanyLocationName\": \"Bristol\",\n            \"EffectiveFrom\": \"2000-02-02T00:00:00\",\n            \"EffectiveTo\": \"2003-04-22T00:00:00\",\n            \"PersonCode\": \"L0595\",\n            \"FormattedName\": \"Gurdip Raffa\",\n            \"PrimaryLocation\": 1,\n            \"DeploymentReason\": null,\n            \"DeploymentReasonCode\": null,\n            \"LocationWorkingTimePercentage\": \"100.00\",\n            \"Comments\": null,\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2011-07-28T15:11:35.227Z\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\"\n        }\n    ]\n}"}],"_postman_id":"fb9506a8-58af-e56a-9a73-ba15ed235add"},{"name":"Add an Employee's Location Deployment","id":"c1b02fa2-f5f6-f3f8-5473-56792668d952","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"CompanyLocationName\": \"Derby\",\n  \"EffectiveFrom\": \"2017-01-01T00:00:00\",\n  \"EffectiveTo\": \"2017-12-31T00:00:00\",\n  \"PersonCode\": \"26\"\n}"},"url":"{{url}}/LocationDeployments?$format=json","description":"<p>This request will insert a Location record for an employee.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["LocationDeployments"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"793c3534-ce79-0121-0a7c-f313170462ac","name":"Add an Employee's Location Deployment","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"CompanyLocationName\": \"Derby\",\n\t\"EffectiveFrom\": \"2017-01-01T00:00:00\",\n\t\"EffectiveTo\": \"2017-12-31T00:00:00\",\n\t\"PersonCode\": \"26\"\n}"},"url":{"raw":"{{url}}/LocationDeployments?$format=json","host":["{{url}}"],"path":["LocationDeployments"],"query":[{"key":"$format","value":"json"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"548","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","name":"Content-Type","description":""},{"key":"DataServiceVersion","value":"3.0;","name":"DataServiceVersion","description":""},{"key":"Date","value":"Wed, 03 Jan 2018 08:39:25 GMT","name":"Date","description":""},{"key":"Location","value":"https://showcase.cezanneondemand.com/cezanneondemand/v2/DataService.svc/LocationDeployments(CompanyLocationName='Derby',EffectiveFrom=datetime'2017-01-01T00%3A00%3A00',PersonCode='26')","name":"Location","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"10FF1C8527C119F7CB4E7C4120B8992C37BA1C8AE5234A9C7292845F5BF38D235F1BB6B2EF2F3728FEB7A384928DF969505638D3077B989C224A35AD3FE86D663EBCCEECF12BB193FF45C084F261369A94F105CDE91537455E5B49C713A694D62D34D7A7888AD9B597BDD3246C7569B4C58B10C159A04F82DF9242075831F7E38CE8DEDD0EEAACDD6CF905FEA56D401CC4DB3789AF82193C78C9A4D6A124EB0BDE5B27B6C1663E44BDFDC68E369CC4FD3AE57BC82F41E15393895D53FCBF45BEF8EE38E5FAC9F414B14AF836AC55E69E37B3A04760F8929B12DD607AB5345FE24508BB570572B35BF0EE26ECE04E899FDAEA1A227AC0432679902DA7737F2B5B8C91E71F7F5A858689E6919028A38ADB","key":"CF_SID"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"-1","key":"CF_SLV"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"/1cGaxGPTBHcD8RBFPNm12FtDYLb3lMpw7XIBqrYFhv/PCOTAE7wxR40Odzc4CqCBqtAOZUr4ANdr0FCU5+yshc/OebxJq3yb+4ZnDyqpu6AwS+bVPF+pa/xxdPnk2Wb9Paf0Dv+yZV/0G7/d6kslgWPqvC6vBmhi0lGAwQ6OUY=","key":"__RequestVerificationToken_L0NlemFubmVPbkRlbWFuZA__"}],"responseTime":"3752","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#LocationDeployments/@Element\",\n    \"CompanyLocationCode\": null,\n    \"CompanyLocationName\": \"Derby\",\n    \"EffectiveFrom\": \"2017-01-01T00:00:00\",\n    \"EffectiveTo\": \"2017-12-31T00:00:00\",\n    \"PersonCode\": \"26\",\n    \"FormattedName\": null,\n    \"PrimaryLocation\": 1,\n    \"DeploymentReason\": null,\n    \"DeploymentReasonCode\": null,\n    \"LocationWorkingTimePercentage\": \"100\",\n    \"Comments\": null,\n    \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedDate\": \"2017-12-16T09:00:02.833699Z\",\n    \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\"\n}"}],"_postman_id":"c1b02fa2-f5f6-f3f8-5473-56792668d952"},{"name":"Update an Employee's Location Deployment record","id":"39734ace-10c5-4524-b42e-c7dab9cbae0b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"Comments\": \"Example Comments\"\n}"},"url":"{{url}}/LocationDeployments(CompanyLocationName='[CompanyLocationName]', EffectiveFrom=datetime'[EffectiveFrom]', PersonCode='[PersonCode]')","description":"<p>This request will update an employee's Location record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Request body includes only one field as an example. You can add any extra fields from the table that you require. However, some fields are read-only. \n</li>\n<li>The CompanyLocationName, EffectiveFrom and PersonCode cannot be updated as they are the the key fields for this table.</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["LocationDeployments(CompanyLocationName='[CompanyLocationName]', EffectiveFrom=datetime'[EffectiveFrom]', PersonCode='[PersonCode]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"39734ace-10c5-4524-b42e-c7dab9cbae0b"},{"name":"Delete an Employee's Location Deployment record","id":"c9a8b236-0267-0446-813e-02521a31d8b0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/LocationDeployments(CompanyLocationName='[CompanyLocationName]', EffectiveFrom=datetime'[EffectiveFrom]', PersonCode='[PersonCode]')","description":"<p>This request will delete an employee's Location record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["LocationDeployments(CompanyLocationName='[CompanyLocationName]', EffectiveFrom=datetime'[EffectiveFrom]', PersonCode='[PersonCode]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c9a8b236-0267-0446-813e-02521a31d8b0"}],"id":"6eba7f4c-7985-5b45-3b4c-e82664978dbf","description":"<p>This API enables all information from the Location screen for active and inactive employees to be retrieved and modified. </p>\n<p>The identifying keys for Location Deployments are:</p>\n<ul>\n<li>CompanyLocationName</li>\n<li>EffectiveFrom</li>\n<li>PersonCode</li>\n</ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CompanyLocationCode</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>CompanyLocationName</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>EffectiveFrom</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>EffectiveTo</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonCode</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>FormattedName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PrimaryLocation</td>\n<td></td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>DeploymentReason</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>DeploymentReasonCode</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>LocationWorkingTimePercentage</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Comments</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2> Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to their and all subordinate records.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to their own record.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"ea62a910-4163-4362-9789-892b5f956088","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"ce3e6286-d4c6-4ebe-afca-97badd8d3d98","type":"text/javascript","exec":[""]}}],"_postman_id":"6eba7f4c-7985-5b45-3b4c-e82664978dbf"},{"name":"Job Deployments","item":[{"name":"List of Job Deployments","id":"bf372d7f-c32a-37af-cd50-6defdd79318f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/JobDeployments?$format=json","description":"<p>This request will return a list of Employee Job Deployments from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["JobDeployments"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"00691f3c-cfd7-673d-7d3b-922dd36c4b3b","name":"List of Job Deployments","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/JobDeployments?$format=json","host":["{{url}}"],"path":["JobDeployments"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"no-cache","description":""},{"name":"connection","key":"connection","value":"keep-alive","description":""},{"name":"content-length","key":"content-length","value":"574","description":""},{"name":"content-type","key":"content-type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","description":""},{"name":"dataserviceversion","key":"dataserviceversion","value":"3.0;","description":""},{"name":"date","key":"date","value":"Mon, 31 Jul 2017 15:06:22 GMT","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"452","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#JobDeployments\",\n    \"value\": [\n        {\n            \"PersonCode\": \"CEZ50\",\n            \"FullName\": \"Roger Fullwood\",\n            \"EffectiveFrom\": \"2007-01-01T00:00:00\",\n            \"EffectiveTo\": \"2999-12-31T00:00:00\",\n            \"PrimaryJobDeployment\": 1,\n            \"Comments\": null,\n            \"DeploymentReason\": \"New Hire\",\n            \"DeploymentReasonCode\": \"DR1\",\n            \"JobDeploymentEmploymentGUID\": \"f8cf0627-5815-4aeb-b818-9ba9b281dd6e\",\n            \"JobDeploymentEmploymentID\": \"EMP0023\",\n            \"JobGUID\": \"5cd8a71e-4c27-4bcf-8f89-992f0d5872c2\",\n            \"JobName\": \"Board Member\",\n            \"JobCode\": \"BRDMEMBER\",\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2015-05-19T11:04:08.817Z\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\"\n        }\n    ]\n}"}],"_postman_id":"bf372d7f-c32a-37af-cd50-6defdd79318f"},{"name":"Add an Employee's Job Deployment","id":"18165f09-46ab-bfc8-2ec9-713a03b00638","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"PersonCode\": \"26\",\n  \"EffectiveFrom\": \"2017-01-01T00:00:00\",\n  \"EffectiveTo\": \"2017-12-31T00:00:00\",\n  \"PrimaryJobDeployment\": \"1\",\n  \"JobName\": \"Administration\",\n  \"JobCode\": \"ADM\"\n}"},"url":"{{url}}/JobDeployments?$format=json","description":"<p>This request will insert a Job Deployment record for an employee.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["JobDeployments"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"430668ec-ea6f-e2be-bb56-0540f0fb194c","name":"Add an Employee's Job Deployment","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"PersonCode\": \"26\",\n\t\"EffectiveFrom\": \"2017-01-01T00:00:00\",\n\t\"EffectiveTo\": \"2017-12-31T00:00:00\",\n\t\"PrimaryJobDeployment\": \"1\",\n\t\"JobName\": \"Administration\",\n\t\"JobCode\": \"ADM\"\n}"},"url":{"raw":"{{url}}/JobDeployments?$format=json","host":["{{url}}"],"path":["JobDeployments"],"query":[{"key":"$format","value":"json"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"525","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","name":"Content-Type","description":""},{"key":"DataServiceVersion","value":"3.0;","name":"DataServiceVersion","description":""},{"key":"Date","value":"Wed, 03 Jan 2018 08:40:57 GMT","name":"Date","description":""},{"key":"Location","value":"https://showcase.cezanneondemand.com/cezanneondemand/v2/DataService.svc/JobDeployments(EffectiveFrom=datetime'2017-01-01T00%3A00%3A00',JobCode='ADM',PersonCode='26',PrimaryJobDeployment=1)","name":"Location","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"10FF1C8527C119F7CB4E7C4120B8992C37BA1C8AE5234A9C7292845F5BF38D235F1BB6B2EF2F3728FEB7A384928DF969505638D3077B989C224A35AD3FE86D663EBCCEECF12BB193FF45C084F261369A94F105CDE91537455E5B49C713A694D62D34D7A7888AD9B597BDD3246C7569B4C58B10C159A04F82DF9242075831F7E38CE8DEDD0EEAACDD6CF905FEA56D401CC4DB3789AF82193C78C9A4D6A124EB0BDE5B27B6C1663E44BDFDC68E369CC4FD3AE57BC82F41E15393895D53FCBF45BEF8EE38E5FAC9F414B14AF836AC55E69E37B3A04760F8929B12DD607AB5345FE24508BB570572B35BF0EE26ECE04E899FDAEA1A227AC0432679902DA7737F2B5B8C91E71F7F5A858689E6919028A38ADB","key":"CF_SID"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"-1","key":"CF_SLV"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"/1cGaxGPTBHcD8RBFPNm12FtDYLb3lMpw7XIBqrYFhv/PCOTAE7wxR40Odzc4CqCBqtAOZUr4ANdr0FCU5+yshc/OebxJq3yb+4ZnDyqpu6AwS+bVPF+pa/xxdPnk2Wb9Paf0Dv+yZV/0G7/d6kslgWPqvC6vBmhi0lGAwQ6OUY=","key":"__RequestVerificationToken_L0NlemFubmVPbkRlbWFuZA__"}],"responseTime":"1422","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#JobDeployments/@Element\",\n    \"PersonCode\": \"26\",\n    \"FullName\": null,\n    \"EffectiveFrom\": \"2017-01-01T00:00:00\",\n    \"EffectiveTo\": \"2017-12-31T00:00:00\",\n    \"PrimaryJobDeployment\": 1,\n    \"Comments\": null,\n    \"DeploymentReason\": null,\n    \"DeploymentReasonCode\": null,\n    \"JobDeploymentEmploymentGUID\": null,\n    \"JobDeploymentEmploymentID\": null,\n    \"JobGUID\": null,\n    \"JobName\": \"Administration\",\n    \"JobCode\": \"ADM\",\n    \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedDate\": \"2017-12-16T09:00:02.8180905Z\",\n    \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\"\n}"}],"_postman_id":"18165f09-46ab-bfc8-2ec9-713a03b00638"},{"name":"Update an Employee's Job Deployment record","id":"95af6640-afcb-4a13-a557-61743cf4ad96","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"Comments\": \"Example Comments\"\n}"},"url":"{{url}}/JobDeployments(PersonCode='[PersonCode]', EffectiveFrom=datetime'[EffectiveFrom]', PrimaryJobDeployment=[PrimaryJobDeployment], JobCode='[JobCode]')","description":"<p>This request will update an employee's Job Deployment record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Request body includes only one field as an example. You can add any extra fields from the table that you require. However, some fields are read-only. \n</li>\n<li>The PersonCode, EffectiveFrom, PrimaryJobDeployment and JobCode cannot be updated as they are the the key fields for this table.</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["JobDeployments(PersonCode='[PersonCode]', EffectiveFrom=datetime'[EffectiveFrom]', PrimaryJobDeployment=[PrimaryJobDeployment], JobCode='[JobCode]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"95af6640-afcb-4a13-a557-61743cf4ad96"},{"name":"Delete an Employee's Job Deployment record","id":"f315fe31-e080-f08b-6ffa-caac53dc5924","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/JobDeployments(PersonCode='[PersonCode]', EffectiveFrom=datetime'[EffectiveFrom]', PrimaryJobDeployment=[PrimaryJobDeployment], JobCode='[JobCode]')","description":"<p>This request will delete an employee's Job Deployment record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["JobDeployments(PersonCode='[PersonCode]', EffectiveFrom=datetime'[EffectiveFrom]', PrimaryJobDeployment=[PrimaryJobDeployment], JobCode='[JobCode]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f315fe31-e080-f08b-6ffa-caac53dc5924"}],"id":"bd139199-5646-75dd-a3aa-390003b8ae17","description":"<p>This API enables all information from the Person Job Deployments screen for active and inactive employees to be retrieved and modified. </p>\n<p>The identifying keys for Job Deployments are:</p>\n<ul>\n<li>PersonCode</li>\n<li>EffectiveFrom</li>\n<li>PrimaryJobDeployment</li>\n<li>JobCode</li>\n</ul>\n\n<h2>Fields</h2>\n\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PersonCode</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>FullName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EffectiveFrom</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>EffectiveTo</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>PrimaryJobDeployment</td>\n<td>Y</td>\n<td>Key. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>Comments</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>DeploymentReason</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>DeploymentReasonCode</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>JobDeploymentEmploymentGUID</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>JobDeploymentEmploymentID</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>JobGUID</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>JobName</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>JobCode</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2> Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to their and all subordinate records.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to their own record.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"f48c936c-d73a-4ed5-b1d2-b602e1c58ced","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"f7502559-479c-4b20-80b6-bb090e6d7abf","type":"text/javascript","exec":[""]}}],"_postman_id":"bd139199-5646-75dd-a3aa-390003b8ae17"},{"name":"Deployments (Org Unit / Positions)","item":[{"name":"List of Employee Deployments","id":"330d4211-de3d-b37d-57e1-5a2c88bea565","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/OrgUnitPositionDeployments?$format=json","description":"<p>This request will return a list of Employee Org Unit / Position Deployments from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["OrgUnitPositionDeployments"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"fcb1d90c-90b7-5503-df23-8dd65a9daf40","name":"List of Employee Deployments","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/OrgUnitPositionDeployments?$format=json","host":["{{url}}"],"path":["OrgUnitPositionDeployments"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"no-cache","description":""},{"name":"connection","key":"connection","value":"keep-alive","description":""},{"name":"content-length","key":"content-length","value":"757","description":""},{"name":"content-type","key":"content-type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","description":""},{"name":"dataserviceversion","key":"dataserviceversion","value":"3.0;","description":""},{"name":"date","key":"date","value":"Mon, 31 Jul 2017 12:00:49 GMT","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"1123","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#OrgUnitPositionDeployments\",\n    \"value\": [\n        {\n            \"PersonGUID\": \"35ac3768-0db0-4c1d-a9e4-3149d9ded7bf\",\n            \"DeploymentGUID\": \"db162c7c-7526-40a1-a4a3-ebbb5043a6fe\",\n            \"PersonCode\": \"0590\",\n            \"FullName\": \"Lawrence Edwards\",\n            \"EffectiveFrom\": \"1990-01-01T00:00:00\",\n            \"EffectiveTo\": \"2008-03-29T00:00:00\",\n            \"SortOrder\": 0,\n            \"OrgUnitGUID\": \"6816adf2-92b1-4424-a3e1-884f053261a6\",\n            \"OrgUnitCode\": \"cccc\",\n            \"OrgUnitName\": \"Personnel - USA\",\n            \"OrgUnitArea\": \"Human Resources\",\n            \"OrgUnitType\": null,\n            \"PersonGrade\": null,\n            \"PositionGUID\": null,\n            \"PositionCode\": null,\n            \"PositionTitle\": null,\n            \"DeploymentReason\": null,\n            \"DeploymentReasonCode\": null,\n            \"DeploymentEmploymentGUID\": null,\n            \"DeploymentEmploymentID\": null,\n            \"BusinessTitle\": null,\n            \"PrimaryDeployment\": 1,\n            \"ManagerOfUnit\": 1,\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2011-08-03T11:07:29.013Z\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"NumberOfSubordinates\": 3,\n            \"FreeCheckbox1\": null,\n            \"FreeCheckbox2\": null,\n            \"FreeDate1\": null,\n            \"FreeDate2\": null,\n            \"FreeNumber1\": null,\n            \"FreeNumber2\": null,\n            \"FreeNumericUpDown1\": null,\n            \"FreeNumericUpDown2\": null,\n            \"FreeRichText1\": null,\n            \"FreeText1\": null,\n            \"FreeText2\": null,\n            \"FreeText3\": null,\n            \"FreeText4\": null,\n            \"FreeText5\": null,\n            \"FreeTextMultiLine1\": null,\n            \"FreeTextMultiLine2\": null\n        }\n    ]\n}"}],"_postman_id":"330d4211-de3d-b37d-57e1-5a2c88bea565"},{"name":"Add an Employee's Org Unit Deployment","id":"259b938b-6a25-aa6f-409e-f412d8277569","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"clientSecret":"<client-secret>","clientId":"<client-id>","challengeAlgorithm":"<challenge-algorithm>","scope":"<scope>","grant_type":"<grant_type>","client_authentication":"<client_authentication>","accessTokenUrl":"<access-token-url>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"DeploymentGUID\": \"5535c41b-3eb8-4d00-9910-0022453a333f\",\n  \"PersonCode\": \"CEZ0094\",\n  \"EffectiveFrom\": \"2017-01-01T00:00:00\",\n  \"EffectiveTo\": \"2017-12-31T00:00:00\",\n  \"OrgUnitCode\": \"ADM\",\n  \"PrimaryDeployment\": \"1\",\n  \"ManagerOfUnit\": \"0\"\n}"},"url":"{{url}}/OrgUnitPositionDeployments?$format=json","description":"<p>This request will insert an Org Unit Deployment record for an employee.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["OrgUnitPositionDeployments"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"91b4e482-0604-1bdd-c21e-68b301b553e6","name":"Add an Employee's Org Unit Deployment","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"DeploymentGUID\": \"5535c41b-3eb8-4d00-9910-0022453a333f\",\n\t\"PersonCode\": \"CEZ0094\",\n\t\"EffectiveFrom\": \"2017-01-01T00:00:00\",\n\t\"EffectiveTo\": \"2017-12-31T00:00:00\",\n\t\"OrgUnitCode\": \"ADM\",\n\t\"PrimaryDeployment\": \"1\",\n\t\"ManagerOfUnit\": \"0\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{url}}/OrgUnitPositionDeployments?$format=json","host":["{{url}}"],"path":["OrgUnitPositionDeployments"],"query":[{"key":"$format","value":"json"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"695","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","name":"Content-Type","description":""},{"key":"DataServiceVersion","value":"3.0;","name":"DataServiceVersion","description":""},{"key":"Date","value":"Wed, 03 Jan 2018 08:48:21 GMT","name":"Date","description":""},{"key":"Location","value":"https://showcase.cezanneondemand.com/cezanneondemand/v2/DataService.svc/OrgUnitPositionDeployments(EffectiveFrom=datetime'2017-01-01T00%3A00%3A00',OrgUnitCode='ADM',PersonCode='CEZ0094',PrimaryDeployment=1)","name":"Location","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"10FF1C8527C119F7CB4E7C4120B8992C37BA1C8AE5234A9C7292845F5BF38D235F1BB6B2EF2F3728FEB7A384928DF969505638D3077B989C224A35AD3FE86D663EBCCEECF12BB193FF45C084F261369A94F105CDE91537455E5B49C713A694D62D34D7A7888AD9B597BDD3246C7569B4C58B10C159A04F82DF9242075831F7E38CE8DEDD0EEAACDD6CF905FEA56D401CC4DB3789AF82193C78C9A4D6A124EB0BDE5B27B6C1663E44BDFDC68E369CC4FD3AE57BC82F41E15393895D53FCBF45BEF8EE38E5FAC9F414B14AF836AC55E69E37B3A04760F8929B12DD607AB5345FE24508BB570572B35BF0EE26ECE04E899FDAEA1A227AC0432679902DA7737F2B5B8C91E71F7F5A858689E6919028A38ADB","key":"CF_SID"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"-1","key":"CF_SLV"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"/1cGaxGPTBHcD8RBFPNm12FtDYLb3lMpw7XIBqrYFhv/PCOTAE7wxR40Odzc4CqCBqtAOZUr4ANdr0FCU5+yshc/OebxJq3yb+4ZnDyqpu6AwS+bVPF+pa/xxdPnk2Wb9Paf0Dv+yZV/0G7/d6kslgWPqvC6vBmhi0lGAwQ6OUY=","key":"__RequestVerificationToken_L0NlemFubmVPbkRlbWFuZA__"}],"responseTime":"1407","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#OrgUnitPositionDeployments/@Element\",\n    \"PersonGUID\": null,\n    \"DeploymentGUID\": \"5535c41b-3eb8-4d00-9910-0022453a333f\",\n    \"PersonCode\": \"CEZ0094\",\n    \"FullName\": null,\n    \"EffectiveFrom\": \"2017-01-01T00:00:00\",\n    \"EffectiveTo\": \"2017-12-31T00:00:00\",\n    \"SortOrder\": 0,\n    \"OrgUnitGUID\": null,\n    \"OrgUnitCode\": \"ADM\",\n    \"OrgUnitName\": null,\n    \"OrgUnitArea\": null,\n    \"OrgUnitType\": null,\n    \"PersonGrade\": null,\n    \"PositionGUID\": null,\n    \"PositionCode\": null,\n    \"PositionTitle\": null,\n    \"DeploymentReason\": null,\n    \"DeploymentReasonCode\": null,\n    \"DeploymentEmploymentGUID\": null,\n    \"DeploymentEmploymentID\": null,\n    \"BusinessTitle\": null,\n    \"PrimaryDeployment\": 1,\n    \"ManagerOfUnit\": 0,\n    \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedDate\": \"2017-12-16T09:00:02.8180905Z\",\n    \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"NumberOfSubordinates\": null,\n    \"FreeCheckbox1\": null,\n    \"FreeCheckbox2\": null,\n    \"FreeDate1\": null,\n    \"FreeDate2\": null,\n    \"FreeNumber1\": null,\n    \"FreeNumber2\": null,\n    \"FreeNumericUpDown1\": null,\n    \"FreeNumericUpDown2\": null,\n    \"FreeRichText1\": null,\n    \"FreeText1\": null,\n    \"FreeText2\": null,\n    \"FreeText3\": null,\n    \"FreeText4\": null,\n    \"FreeText5\": null,\n    \"FreeTextMultiLine1\": null,\n    \"FreeTextMultiLine2\": null\n}"}],"_postman_id":"259b938b-6a25-aa6f-409e-f412d8277569"},{"name":"Update an Employee's Org Unit Deployment","id":"fb404c88-35a6-46e9-a9ba-7cffea813775","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"DeploymentReason\": \"Example Reason\"\n}"},"url":"{{url}}/OrgUnitPositionDeployments(DeploymentGUID=guid'[DeploymentGUID]')","description":"<p>This request will update an employee's Org Unit Deployment record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["OrgUnitPositionDeployments(DeploymentGUID=guid'[DeploymentGUID]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"fb404c88-35a6-46e9-a9ba-7cffea813775"},{"name":"Delete an Employee's Org Unit Deployment","id":"09e4cae9-2069-e9f2-4bbf-3b91a20027a3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/OrgUnitPositionDeployments(DeploymentGUID='[DeploymentGUID]')","description":"<p>This request will delete an employee's Org Unit Deployment record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["OrgUnitPositionDeployments(DeploymentGUID='[DeploymentGUID]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"09e4cae9-2069-e9f2-4bbf-3b91a20027a3"}],"id":"d803480c-4785-29b9-f51c-762c0b356b8f","description":"<p>This API enables all information from the Org Units / Positions screen for active and inactive employees to be retrieved and modified. </p>\n<p>The identifying key for Deployments is:</p>\n<ul>\n<li>DeploymentGUID</li>\n</ul>\n\n\n<h3>Note:</h3>\nIn v1 and v2 of the API, the identifying keys are:\n<ul>\n<li>PersonCode</li>\n<li>EffectiveFrom</li>\n<li>OrgUnitCode</li>\n<li>PrimaryDeployment</li>\n</ul>\n\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PersonGUID</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>DeploymentGUID</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>PersonCode</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>FullName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EffectiveFrom</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EffectiveTo</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>SortOrder</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>OrgUnitGUID</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>OrgUnitCode</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>OrgUnitName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>OrgUnitArea</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>OrgUnitType</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PersonGrade</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PositionGUID</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PositionCode</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>PositionTitle</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>DeploymentReason</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>DeploymentReasonCode</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>DeploymentEmploymentGUID</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>DeploymentEmploymentID</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>BusinessTitle</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>PrimaryDeployment</td>\n<td>Y</td>\n<td>Key. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>ManagerOfUnit</td>\n<td>Y</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>NumberOfSubordinates</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>FreeCheckbox1</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field  within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeCheckbox2</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field  within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeCheckbox3</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field  within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeDate1</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field  within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeDate2</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field  within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeNumber1</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field  within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeNumber2</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field  within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeNumericUpDown1</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field  within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeNumericUpDown2</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field  within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeRichText1</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field  within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeText1</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field  within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeText2</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field  within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeText3</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field  within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeText4</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field  within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeText5</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field  within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeTextMultiLine1</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field  within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n<tr>\n<td>FreeTextMultiLine2</td>\n<td></td>\n<td>Available if enabled for the API User's Security Role from the Security tab for the free field  within Object Management (Administration &gt;&gt; Object Management)</td>\n</tr>\n</tbody>\n</table>\n</div><h2> Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has read-only access to everyone in the system.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to everyone in the system.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to everyone in the system.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"3dbb6e97-a62e-4eb4-be45-02dd0c97a1b9","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"48e2a40d-3d29-4df1-9b01-cdd6af413aa6","type":"text/javascript","exec":[""]}}],"_postman_id":"d803480c-4785-29b9-f51c-762c0b356b8f"},{"name":"Cost Centre Deployments","item":[{"name":"List of Employee Cost Centre Deployments","id":"a4d56e81-f487-d0e8-9abf-89968b2f34da","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/CostCentreDeployments?$format=json","description":"<p>This request will return a list of Cost Centre Deployments from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["CostCentreDeployments"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"3acf0bc8-8606-d67a-9dee-7d3505e4aadd","name":"List of Employee Cost Centre Deployments","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/CostCentreDeployments?$format=json","host":["{{url}}"],"path":["CostCentreDeployments"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"no-cache","description":""},{"name":"connection","key":"connection","value":"keep-alive","description":""},{"name":"content-length","key":"content-length","value":"603","description":""},{"name":"content-type","key":"content-type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","description":""},{"name":"dataserviceversion","key":"dataserviceversion","value":"3.0;","description":""},{"name":"date","key":"date","value":"Mon, 31 Jul 2017 11:29:16 GMT","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"533","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#CostCentreDeployments\",\n    \"value\": [\n        {\n            \"PersonCode\": \"CE59\",\n            \"FullName\": \"Shawn Acker\",\n            \"EffectiveFrom\": \"2007-01-01T00:00:00\",\n            \"EffectiveTo\": \"2015-06-18T00:00:00\",\n            \"CostCentreEmploymentId\": \"EMP0002\",\n            \"PrimaryCostCentre\": 1,\n            \"DeploymentReason\": \"New Hire\",\n            \"DeploymentReasonCode\": \"DR1\",\n            \"CostCentreName\": \"OM000 - Board\",\n            \"CostCentreCode\": \"OM000\",\n            \"Comments\": null,\n            \"WorkingTimePercentage\": \"100.00\",\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2015-06-19T10:53:58.527Z\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\"\n        }\n    ]\n}"}],"_postman_id":"a4d56e81-f487-d0e8-9abf-89968b2f34da"},{"name":"Add an Employee's Cost Centre Deployment","id":"160723b1-8d84-97f4-1cd1-da9c4822ffa8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"PersonCode\": \"26\",\n  \"EffectiveFrom\": \"2017-01-01T00:00:00\",\n  \"EffectiveTo\": \"2017-12-31T00:00:00\",\n  \"PrimaryCostCentre\": \"1\",\n  \"CostCentreName\": \"Sales\",\n  \"CostCentreCode\": \"TCC001\"\n}"},"url":"{{url}}/CostCentreDeployments?$format=json","description":"<p>This request will insert a Cost Centre Deployment record for an employee.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["CostCentreDeployments"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"7a70d096-46b8-3d27-537e-54f7b50ebad1","name":"Add an Employee's Cost Centre Deployment","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"PersonCode\": \"26\",\n\t\"EffectiveFrom\": \"2017-01-01T00:00:00\",\n\t\"EffectiveTo\": \"2017-12-31T00:00:00\",\n\t\"PrimaryCostCentre\": \"1\",\n\t\"CostCentreName\": \"Sales\",\n\t\"CostCentreCode\": \"TCC001\"\n}"},"url":{"raw":"{{url}}/CostCentreDeployments?$format=json","host":["{{url}}"],"path":["CostCentreDeployments"],"query":[{"key":"$format","value":"json"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"563","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","name":"Content-Type","description":""},{"key":"DataServiceVersion","value":"3.0;","name":"DataServiceVersion","description":""},{"key":"Date","value":"Wed, 03 Jan 2018 08:50:34 GMT","name":"Date","description":""},{"key":"Location","value":"https://showcase.cezanneondemand.com/cezanneondemand/v2/DataService.svc/CostCentreDeployments(CostCentreCode='TCC001',EffectiveFrom=datetime'2017-01-01T00%3A00%3A00',PersonCode='26',PrimaryCostCentre=1)","name":"Location","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"10FF1C8527C119F7CB4E7C4120B8992C37BA1C8AE5234A9C7292845F5BF38D235F1BB6B2EF2F3728FEB7A384928DF969505638D3077B989C224A35AD3FE86D663EBCCEECF12BB193FF45C084F261369A94F105CDE91537455E5B49C713A694D62D34D7A7888AD9B597BDD3246C7569B4C58B10C159A04F82DF9242075831F7E38CE8DEDD0EEAACDD6CF905FEA56D401CC4DB3789AF82193C78C9A4D6A124EB0BDE5B27B6C1663E44BDFDC68E369CC4FD3AE57BC82F41E15393895D53FCBF45BEF8EE38E5FAC9F414B14AF836AC55E69E37B3A04760F8929B12DD607AB5345FE24508BB570572B35BF0EE26ECE04E899FDAEA1A227AC0432679902DA7737F2B5B8C91E71F7F5A858689E6919028A38ADB","key":"CF_SID"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"-1","key":"CF_SLV"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"/1cGaxGPTBHcD8RBFPNm12FtDYLb3lMpw7XIBqrYFhv/PCOTAE7wxR40Odzc4CqCBqtAOZUr4ANdr0FCU5+yshc/OebxJq3yb+4ZnDyqpu6AwS+bVPF+pa/xxdPnk2Wb9Paf0Dv+yZV/0G7/d6kslgWPqvC6vBmhi0lGAwQ6OUY=","key":"__RequestVerificationToken_L0NlemFubmVPbkRlbWFuZA__"}],"responseTime":"850","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#CostCentreDeployments/@Element\",\n    \"PersonCode\": \"26\",\n    \"FullName\": null,\n    \"EffectiveFrom\": \"2017-01-01T00:00:00\",\n    \"EffectiveTo\": \"2017-12-31T00:00:00\",\n    \"CostCentreEmploymentId\": null,\n    \"PrimaryCostCentre\": 1,\n    \"DeploymentReason\": null,\n    \"DeploymentReasonCode\": null,\n    \"CostCentreName\": \"Sales\",\n    \"CostCentreCode\": \"TCC001\",\n    \"Comments\": null,\n    \"WorkingTimePercentage\": \"100\",\n    \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedDate\": \"2017-12-16T09:00:02.833699Z\",\n    \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\"\n}"}],"_postman_id":"160723b1-8d84-97f4-1cd1-da9c4822ffa8"},{"name":"Update an Employee's Cost Centre Deployment","id":"09d2e22f-d035-4ca9-a5a3-ded0313a6ed2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"Comments\": \"Example Comments\"\n}"},"url":"{{url}}/CostCentreDeployments(PersonCode='[PersonCode]', EffectiveFrom=datetime'[EffectiveFrom]', PrimaryCostCentre='[PrimaryCostCentre]', CostCentreCode='[CostCentreCode]')","description":"<p>This request will update an employee's Cost Centre Deployment record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Request body includes only one field as an example. You can add any extra fields from the table that you require. However, some fields are read-only. \n</li>\n<li>The PersonCode, EffectiveFrom, PrimaryCostCentre and CostCentreCode cannot be updated as they are the the key fields for this table.</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["CostCentreDeployments(PersonCode='[PersonCode]', EffectiveFrom=datetime'[EffectiveFrom]', PrimaryCostCentre='[PrimaryCostCentre]', CostCentreCode='[CostCentreCode]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"09d2e22f-d035-4ca9-a5a3-ded0313a6ed2"},{"name":"Delete an Employee's Cost Centre Deployment","id":"72714f27-3d2c-6754-b715-2517508b756b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/CostCentreDeployments(PersonCode='[PersonCode]', EffectiveFrom=datetime'[EffectiveFrom]', PrimaryCostCentre='[PrimaryCostCentre]', CostCentreCode='[CostCentreCode]')","description":"<p>This request will delete an employee's Cost Centre Deployment record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["CostCentreDeployments(PersonCode='[PersonCode]', EffectiveFrom=datetime'[EffectiveFrom]', PrimaryCostCentre='[PrimaryCostCentre]', CostCentreCode='[CostCentreCode]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"72714f27-3d2c-6754-b715-2517508b756b"}],"id":"fd37f31f-0556-9474-9736-953a5ce21821","description":"<p>This API enables all information from the Person Cost Centre Deployments screen for active and inactive employees to be retrieved and modified. </p>\n<p>The identifying keys for Cost Centre Deployments are:</p>\n<ul>\n<li>PersonCode</li>\n<li>EffectiveFrom</li>\n<li>PrimaryCostCentre</li>\n<li>CostCentreCode</li>\n</ul>\n\n<h2>Fields</h2>\n\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PersonCode</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>FullName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EffectiveFrom</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>EffectiveTo</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>CostCentreEmploymentId</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>PrimaryCostCentre</td>\n<td>Y</td>\n<td>Key. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>DeploymentReason</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>DeploymentReasonCode</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>CostCentreName</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>CostCentreCode</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>Comments</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>WorkingTimePercentage</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2> Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to their and all subordinate records.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to their own record.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"af9a9b7a-90ec-4668-a610-8d9e05282675","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"9e12d404-c415-43fb-b1d8-1f9b5953d4be","type":"text/javascript","exec":[""]}}],"_postman_id":"fd37f31f-0556-9474-9736-953a5ce21821"},{"name":"Reports To (Read-Only)","item":[{"name":"List of Employee Reports To / Supervisor Records","id":"b2c9c9d5-6763-45b7-9bd1-500ca8ad5356","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[],"url":"{{url}}/PersonReportsTo?$format=json","description":"<p>This request will return a list of Reports To / Supervisor Records from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["PersonReportsTo"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"d8ede915-a572-414f-b786-ee010371d858","name":"List of Employee Reports To / Supervisor Records","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{url}}/PersonReportsTo?$format=json","host":["{{url}}"],"path":["PersonReportsTo"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"DataServiceVersion","value":"3.0;"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Date","value":"Fri, 07 Jun 2019 17:12:41 GMT"},{"key":"Content-Length","value":"1796"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#PersonReportsTo\",\n    \"value\": [\n        {\n            \"PersonGUID\": \"5d6yg0e1-546b-61f7-a445-023e0b84ad6d\",\n            \"ReportsToGUID\": \"556745d3-26b8-4hgr-a16d-86f5t785r775\",\n            \"FamilyName\": \"Harper\",\n            \"FirstName\": \"Claire\",\n            \"FullName\": \"Claire Harper\",\n            \"KnownAs\": \"Claire\",\n            \"PersonCode\": \"6098\",\n            \"InternalEmail\": \"ClaireHarper@omnicrom.com\",\n            \"WorkNumber\": \"0117 366 5001\",\n            \"WorkExtension\": null,\n            \"MobileNumber\": null,\n            \"EmploymentID\": \"6098\",\n            \"ActiveEmployee\": 1,\n            \"CompanyCode\": \"OMMAN\",\n            \"CompanyName\": \"Omnicrom Manufacturing Ltd\",\n            \"DeploymentEmploymentID\": null,\n            \"DeploymentActiveEmployee\": 0,\n            \"DeploymentCompanyCode\": null,\n            \"DeploymentCompanyName\": null,\n            \"ManagerOfUnit\": 0,\n            \"ReportingOverride\": 0,\n            \"LastModifiedDate\": \"2011-02-15T14:00:58.973Z\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"OrgUnitCode\": \"MEGOP\",\n            \"OrgUnitName\": \"Operations\",\n            \"PositionCode\": \"PRO5105\",\n            \"PositionTitle\": \"Programmer\",\n            \"SupervisorPersonGUID\": \"385c1995-87d1-3957-bd97-294rta09e905\",\n            \"SupervisorFamilyName\": \"Sing\",\n            \"SupervisorFirstName\": \"Sharma\",\n            \"SupervisorFullName\": \"Sharma Sing\",\n            \"SupervisorKnownAs\": \"Sharma\",\n            \"SupervisorPersonID\": \"8921\",\n            \"SupervisorInternalEmailAddress\": \"SharmaSing@omnicrom.com\",\n            \"SupervisorWorkNumber\": \"01225 456 221\",\n            \"SupervisorWorkExtension\": null,\n            \"SupervisorMobileNumber\": null,\n            \"SupervisorEmploymentID\": \"8921\",\n            \"SupervisorActiveEmployee\": 1,\n            \"SupervisorCompanyCode\": \"OMMAN\",\n            \"SupervisorCompanyName\": \"Omnicrom Manufacturing Ltd\",\n            \"SupervisorDeploymentEmploymentID\": null,\n            \"SupervisorDeploymentActiveEmployee\": 0,\n            \"SupervisorDeploymentCompanyCode\": null,\n            \"SupervisorDeploymentCompanyName\": null,\n            \"SupervisorManagerOfUnit\": 1,\n            \"SupervisorOrgUnitCode\": \"MEGOP\",\n            \"SupervisorOrgUnitName\": \"Operations\",\n            \"SupervisorPositionCode\": \"CP2680\",\n            \"SupervisorPositionTitle\": \"Operations Director\",\n            \"PrimaryDeployment\": \"1\"\n        }\n    ]\n}"}],"_postman_id":"b2c9c9d5-6763-45b7-9bd1-500ca8ad5356"}],"id":"4189ed02-8210-46f5-a94a-a14f2568b672","description":"<p>This API enables all information from the Reports To tab on the Org Units / Positions screen and supervisor information for active and inactive employees to be retrieved. </p>\n<p>The identifying keys for Person Reports To are:</p>\n<ul>\n<li>PersonGUID</li>\n<li>ReportsToGUID</li>\n</ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PersonGUID</td>\n<td></td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>ReportsToGUID</td>\n<td></td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>FamilyName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>FirstName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>FullName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>KnownAs</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PersonCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>InternalEmail</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>WorkNumber</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>WorkExtension</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>MobileNumber</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EmploymentID</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ActiveEmployee</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>CompanyCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>CompanyName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>DeploymentEmploymentID</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>DeploymentActiveEmployee</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>DeploymentCompanyCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>DeploymentCompanyName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ManagerOfUnit</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ReportingOverride</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>OrgUnitCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>OrgUnitName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PositionCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PositionTitle</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>SupervisorPersonGUID</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>SupervisorFamilyName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>SupervisorFirstName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>SupervisorFullName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>SupervisorKnownAs</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>SupervisorPersonID</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>SupervisorInternalEmailAddress</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>SupervisorWorkNumber</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>SupervisorWorkExtension</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>SupervisorMobileNumber</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>SupervisorEmploymentID</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>SupervisorActiveEmployee</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>SupervisorCompanyCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>SupervisorCompanyName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>SupervisorDeploymentEmploymentID</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>SupervisorDeploymentActiveEmployee</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>SupervisorDeploymentCompanyCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>SupervisorDeploymentCompanyName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>SupervisorManagerOfUnit</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>SupervisorOrgUnitCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>SupervisorOrgUnitName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>SupervisorPositionCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>SupervisorPositionTitle</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PrimaryDeployment</td>\n<td></td>\n<td>Read-only. 1 = Primary, 0 = Non-Primary.</td>\n</tr>\n</tbody>\n</table>\n</div><h2> Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"eafd57b3-350a-4ca2-aa93-28b263b83a49","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"9cd8a69f-1c81-4016-8a3c-4f0828fa88ff","type":"text/javascript","exec":[""]}}],"_postman_id":"4189ed02-8210-46f5-a94a-a14f2568b672"},{"name":"Approvers by Type (Read-Only)","item":[{"name":"List of Employee Approvers by Type Records","id":"8545c9d4-66ea-4e25-869d-2eefaae4284b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[],"url":"{{url}}/ApproversByType?$format=json","description":"<p>This request will return a list of Reports To / Supervisor Records from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["ApproversByType"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"15ed0683-32fb-4a2e-bff5-7eae49fc1049","name":"List of Employee Approvers by Type Records","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{url}}/PersonReportsTo?$format=json","host":["{{url}}"],"path":["PersonReportsTo"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"DataServiceVersion","value":"3.0;"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Date","value":"Fri, 07 Jun 2019 17:12:41 GMT"},{"key":"Content-Length","value":"1796"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#ApproversByType\",\n    \"value\": [\n        {\n            \"PersonGUID\": \"5d6yg0e1-546b-61f7-a445-023e0b84ad6d\",\n            \"PersonCode\": \"6098\",\n            \"PersonName\": \"Claire Harper\",\n            \"AdditionalApproversGUID\": \"556745d3-26b8-4hgr-a16d-86f5t785r775\",\n            \"EffectiveFrom\": \"2020-02-15T00:00:00Z\",\n            \"EffectiveTo\": \"2020-10-15T00:00:00Z\",\n            \"ApproverTypeDescription\": \"Claire Harper\",\n            \"ApproverUserGUID\": \"385c1995-87d1-3957-bd97-294rta09e905\",\n            \"ApproverUserName\": \"SharmaSing@omnicrom.com\",\n            \"CategoryName\": \"All Categories\",\n            \"Comments\": null,\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2020-02-15T14:00:58.973Z\",\n            \"WorkflowProcessName\": null,\n            \"WorkflowIsTerminated\": \"0\"\n        }\n    ]\n}"}],"_postman_id":"8545c9d4-66ea-4e25-869d-2eefaae4284b"}],"id":"2aef051f-2ddd-47a1-a740-bfd9307da5a0","description":"<p>This API enables all information from the Approvers by Type screen for active and inactive employees to be retrieved. </p>\n<p>The identifying keys for Approvers by Type are:</p>\n<ul>\n<li>PersonGUID</li>\n<li>ReportsToGUID</li>\n</ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PersonGUID</td>\n<td></td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>PersonCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PersonName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AdditionalApproversGUID</td>\n<td></td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>EffectiveFrom</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EffectiveTo</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ApproverTypeDescription</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ApproverUserGUID</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ApproverUserName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>CategoryName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Comments</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>WorkflowProcessName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>WorkflowIsTerminated</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2> Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"40be0d4d-be1a-43d3-82b8-3f4b07fe1484","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"0487b49e-4d72-4775-9362-060279679cdb","type":"text/javascript","exec":[""]}}],"_postman_id":"2aef051f-2ddd-47a1-a740-bfd9307da5a0"}],"id":"12689d37-6799-0169-370f-ae9deb83197c","_postman_id":"12689d37-6799-0169-370f-ae9deb83197c","description":""},{"name":"Inventory Items","item":[{"name":"Inventory Items","item":[{"name":"List all Inventory Items","id":"4e4b09f8-7569-4914-9c05-b0629798deda","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/InventoryItems?$format=json","description":"<p>This request will return a list of Inventory Items from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["InventoryItems"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"},{"disabled":true,"key":"$top","value":"1"}],"variable":[]}},"response":[{"id":"328a00a8-917d-4729-8fe5-885cd65194c2","name":"List all Inventory Items","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token","disabled":false}],"url":{"raw":"{{url}}/InventoryItems?$format=json","host":["{{url}}"],"path":["InventoryItems"],"query":[{"key":"$format","value":"json"},{"key":"$top","value":"1","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Content-Length","value":"613","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"DataServiceVersion","value":"3.0;","name":"DataServiceVersion","description":"Custom header"},{"key":"Date","value":"Fri, 01 Jun 2018 16:00:54 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#InventoryItems\",\n    \"value\": [\n        {\n            \"InventoryItemGUID\": \"a58c9cfd-249f-49f0-93a5-93a73533ffb6\",\n            \"Name\": \"Lenovo Laptop 3248\",\n            \"Description\": null,\n            \"InventoryType\": \"Laptop computer\",\n            \"Model\": \"T61\",\n            \"Version\": null,\n            \"SerialNumber\": \"34859347-84259-8245092\",\n            \"AssetNumber\": \"3248\",\n            \"PurchaseDate\": \"2010-02-26T00:00:00\",\n            \"RetiredDate\": null,\n            \"DepreciationTime\": \"4\",\n            \"OrgUnit\": \"Finance\",\n            \"ItemStatus\": \"Active\",\n            \"Comments\": null,\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2010-10-04T11:51:34.827Z\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\"\n        }\n    ]\n}"}],"_postman_id":"4e4b09f8-7569-4914-9c05-b0629798deda"},{"name":"Add a new Inventory Item","id":"9fe251a3-f6c0-4c8a-8d08-2f58a1c58eb4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"Name\": \"Lenovo Laptop 3257\",\n\t\"InventoryType\": \"Laptop computer\",\n\t\"AssetNumber\": \"3258\"\n}"},"url":"{{url}}/InventoryItems?$format=json","description":"<p>This request will insert an Inventory Item record to the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["InventoryItems"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[],"_postman_id":"9fe251a3-f6c0-4c8a-8d08-2f58a1c58eb4"},{"name":"Update an Inventory Item","id":"2b8324e5-2423-44ef-afd2-9c0c1cfb4274","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"Name\": \"Lenovo Laptop 3257\"\n}"},"url":"{{url}}/InventoryItems(InventoryItemGUID=guid'[InventoryItemGUID]')","description":"<p>This request will update an Inventory Item in the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Request body includes only one field as an example. You can add any extra fields from the table that you require. However, some fields are read-only. \n</li>\n<li>The InventoryItemGUID cannot be updated as it is the the key field for this table.</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["InventoryItems(InventoryItemGUID=guid'[InventoryItemGUID]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2b8324e5-2423-44ef-afd2-9c0c1cfb4274"},{"name":"Delete an Inventory Item","id":"42e35a79-692c-4b92-bb7b-db20fe077204","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"url":"{{url}}/InventoryItems(InventoryItemGUID=guid'[InventoryItemGUID]')","description":"<p>This request will delete an Inventory Item from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["InventoryItems(InventoryItemGUID=guid'[InventoryItemGUID]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"42e35a79-692c-4b92-bb7b-db20fe077204"}],"id":"79473e38-6a1f-4dbf-b761-8b4c5aec5c2f","description":"<p>This API enables all information from the Inventory Items screen for active and inactive employees to be retrieved and modified.</p>\n<p>The identifying key for Inventory Items is:</p>\n<ul>\n<li>InventoryItemGUID</li>\n</ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>InventoryItemGUID</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>Name</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>InventoryType</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>Model</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Version</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>SerialNumber</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>AssetNumber</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>PurchaseDate</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>RetiredDate</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>DepreciationTime</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>OrgUnit</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>ItemStatus</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Comments</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2> Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to all records.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to their and all subordinate records.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to their own record.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"81f6111b-1cc9-401f-bb4b-40ba4e077e7e","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"3f404111-5100-4c29-9f97-d7bf4452e812","type":"text/javascript","exec":[""]}}],"_postman_id":"79473e38-6a1f-4dbf-b761-8b4c5aec5c2f"},{"name":"Inventory Assignment","item":[{"name":"List of Employee Inventory Assignments","id":"27de597c-4b9a-43c2-b728-cbf09376e74f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/InventoryAssignment?$format=json","description":"<p>This request will return a list of Inventory Assignments from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["InventoryAssignment"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[],"_postman_id":"27de597c-4b9a-43c2-b728-cbf09376e74f"},{"name":"Add an Employee's Inventory Assignment","id":"fcdb90c1-4f16-4465-8e3c-ba00679f46b3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"EffectiveFrom\": \"2010-01-01T00:00:00\",\n\t\"InventoryItemGUID\": \"a58c9cfd-249f-49f0-93a5-93a73533ffb6\",\n\t\"PersonCode\": \"CEZ01\"\n}"},"url":"{{url}}/InventoryItems?$format=json","description":"<p>This request will insert an Inventory Assignment record for an employee.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["InventoryItems"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[],"_postman_id":"fcdb90c1-4f16-4465-8e3c-ba00679f46b3"},{"name":"Update an Employee's Inventory Assignment","id":"307d9652-b4a7-4b4a-adbe-920a62fdc629","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"Reason\": \"Example Reason\"\n}"},"url":"{{url}}/InventoryAssignment(EffectiveFrom=datetime'[EffectiveFrom]', InventoryItemGUID=guid'[InventoryItemGUID]', PersonCode='[PersonCode]')","description":"<p>This request will update an employee's Inventory Assignment record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Request body includes only one field as an example. You can add any extra fields from the table that you require. However, some fields are read-only. \n</li>\n<li>The EffectiveFrom, InventoryItemGUID, and PersonCode cannot be updated as they are the the key fields for this table.</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["InventoryAssignment(EffectiveFrom=datetime'[EffectiveFrom]', InventoryItemGUID=guid'[InventoryItemGUID]', PersonCode='[PersonCode]')"],"host":["{{url}}"],"query":[{"disabled":true,"key":"$top","value":"1"}],"variable":[]}},"response":[],"_postman_id":"307d9652-b4a7-4b4a-adbe-920a62fdc629"},{"name":"Delete an Employee's Inventory Assignment","id":"ed3c26a8-8360-4b77-92ee-c0d3b411166c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"url":"{{url}}/InventoryAssignment(EffectiveFrom=datetime'[EffectiveFrom]', InventoryItemGUID=guid'[InventoryItemGUID]', PersonCode='[PersonCode]')","description":"<p>This request will delete an employee's Inventory Assignment record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["InventoryAssignment(EffectiveFrom=datetime'[EffectiveFrom]', InventoryItemGUID=guid'[InventoryItemGUID]', PersonCode='[PersonCode]')"],"host":["{{url}}"],"query":[{"disabled":true,"key":"$top","value":"1"}],"variable":[]}},"response":[],"_postman_id":"ed3c26a8-8360-4b77-92ee-c0d3b411166c"}],"id":"3778a723-8d40-4aa4-bc34-efe4d008e4f1","description":"<p>This API enables all information from the Employee Inventory Assignments screen for active and inactive employees to be retrieved and modified.</p>\n<p>The identifying keys for Inventory Assignments are:</p>\n<ul>\n<li>EffectiveFrom</li>\n<li>InventoryItemGUID</li>\n<li>PersonCode</li>\n</ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PersonCode</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>InventoryItemGUID</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>Model</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Version</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>EffectiveFrom</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>EffectiveTo</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>Reason</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>AssigneeName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>InventoryItem</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>InventoryItemType</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AssetNumber</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>SerialNumber</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Comments</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2> Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to their and all subordinate records.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to their own record.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"1dfc39f0-5eca-4283-9f72-a1ec6a0616ca","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"8e27a730-aa6b-4769-82e8-29c5e803020b","type":"text/javascript","exec":[""]}}],"_postman_id":"3778a723-8d40-4aa4-bc34-efe4d008e4f1"}],"id":"d32dcc13-e592-4258-83bb-a69d84de5a39","_postman_id":"d32dcc13-e592-4258-83bb-a69d84de5a39","description":""}],"id":"1860f4df-45e5-952b-0e73-dbc444ead93f","_postman_id":"1860f4df-45e5-952b-0e73-dbc444ead93f","description":""},{"name":"Absences","item":[{"name":"Adjustments (Read-Only)","item":[{"name":"List of Employee Absence Plan Adjustments","id":"bf8cd065-c5e8-aaf2-e996-7b398e3886db","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/PersonAbsencePlanAdjustments?$format=json","description":"<p>This request will return a list of Absence Plan Adjustments from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["PersonAbsencePlanAdjustments"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"c1c2e232-2956-dbb3-4410-2c2788733004","name":"List of Employee Absence Plan Adjustments","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/PersonAbsencePlanAdjustments?$format=json","host":["{{url}}"],"path":["PersonAbsencePlanAdjustments"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"no-cache","description":""},{"name":"connection","key":"connection","value":"keep-alive","description":""},{"name":"content-length","key":"content-length","value":"581","description":""},{"name":"content-type","key":"content-type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","description":""},{"name":"dataserviceversion","key":"dataserviceversion","value":"3.0;","description":""},{"name":"date","key":"date","value":"Thu, 27 Jul 2017 15:39:56 GMT","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"708","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#PersonAbsencePlanAdjustments\",\n    \"value\": [\n        {\n            \"AdjustmentEffectiveDate\": \"2017-01-01T00:00:00\",\n            \"AdjustmentAmount\": \"1.00\",\n            \"Notes\": null,\n            \"TimeUnit\": \"Days\",\n            \"AbsencePlanName\": \"Holiday\",\n            \"ApprovedBy\": null,\n            \"AdjustmentReason\": null,\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2016-11-29T12:18:31.453Z\",\n            \"PersonCode\": \"40\",\n            \"AbsencePlanEffectiveFrom\": \"2007-01-01T00:00:00\",\n            \"AbsencePlanEffectiveTo\": \"2018-06-24T00:00:00\"\n        }\n    ]\n}"}],"_postman_id":"bf8cd065-c5e8-aaf2-e996-7b398e3886db"}],"id":"fed218c7-e153-3665-cd15-a17d8118fa9c","description":"<p>This API enables information from the Person Absence Plan Adjustments screen for active and inactive employees to be retrieved. </p>\n<p>The identifying keys for Absence Adjustments are:</p>\n<ul>\n<li>AdjustmentEffectiveDate</li>\n<li>AbsencePlanName</li>\n<li>PersonCode</li>\n<li>AbsencePlanEffectiveFrom</li>\n<li>AbsencePlanEffectiveTo</li>\n</ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AdjustmentEffectiveDate</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>AdjustmentAmount</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Notes</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TimeUnit</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AbsencePlanName</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>ApprovedBy</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AdjustmentReason</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PersonCode</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>AbsencePlanEffectiveFrom</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>AbsencePlanEffectiveTo</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2> Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"e164ad62-4ea7-4954-aa0d-18290ce1c3dc","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"22f2fd21-424c-4465-9cf5-0d21bbb7533b","type":"text/javascript","exec":[""]}}],"_postman_id":"fed218c7-e153-3665-cd15-a17d8118fa9c"},{"name":"Absence Event Details (Read-Only)","item":[{"name":"List of Person Absence Event Details","id":"a3de2714-8047-88e9-6ca7-230288789325","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>","tokenName":"<token-name>","clientSecret":"{{clientsecret}}","clientId":"{{clientId}}","client_authentication":"<client_authentication>","challengeAlgorithm":"<challenge-algorithm>","scope":"<scope>","grant_type":"<grant_type>","accessTokenUrl":"<access-token-url>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/PersonAbsenceEventDetails?$format=json","description":"<p>This request will return a list of Absence Event Details from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["PersonAbsenceEventDetails"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"},{"disabled":true,"key":"$filter","value":"ReferenceDate ge datetime'2023-04-06'"}],"variable":[]}},"response":[{"id":"f51c6c51-4549-e9ba-ae23-a7ba65495ef6","name":"List of Absence Event Details","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/PersonAbsenceEventDetails?$format=json","host":["{{url}}"],"path":["PersonAbsenceEventDetails"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"no-cache","description":""},{"name":"connection","key":"connection","value":"keep-alive","description":""},{"name":"content-length","key":"content-length","value":"1602","description":""},{"name":"content-type","key":"content-type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","description":""},{"name":"dataserviceversion","key":"dataserviceversion","value":"3.0;","description":""},{"name":"date","key":"date","value":"Wed, 26 Jul 2017 16:06:53 GMT","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"3150","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#PersonAbsenceEventDetails\",\n    \"value\": [\n        {\n            \"ReferenceDate\": \"2010-08-03T00:00:00\",\n            \"AMStartTime\": null,\n            \"AMEndTime\": null,\n            \"AMWorkingHours\": \"0.00\",\n            \"PMEndTime\": \"1900-01-01T17:30:00\",\n            \"PMStartTime\": \"1900-01-01T13:45:00\",\n            \"PMWorkingHours\": \"3.75\",\n            \"DayTotalWorkingHours\": \"3.75\",\n            \"WeekDay\": \"Tuesday\",\n            \"AbsenceEventDetailInsertUser\": \"* cheryl.abrahams@omnicrom.com\",\n            \"AbsenceEventDetailLastModifiedDate\": \"2016-10-13T14:17:58.873\",\n            \"AbsenceEventDetailLastModifiedUser\": \"* cheryl.abrahams@omnicrom.com\",\n            \"AbsenceEventSubmittedOn\": \"2011-08-02T16:07:52.23\",\n            \"AbsenceEventRepliedOn\": \"2011-08-02T16:07:52.23\",\n            \"AbsenceEventComments\": null,\n            \"AbsenceEventEffectiveFrom\": \"2010-08-01T00:00:00\",\n            \"AbsenceEventEffectiveTo\": \"2010-08-18T00:00:00\",\n            \"Approver\": \"Philip Hobbs\",\n            \"ApproverPersonCode\": \"9816\",\n            \"AbsenceStatus\": \"Approved\",\n            \"AbsenceReason\": \"Holiday\",\n            \"AbsenceEventInsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"AbsenceEventLastModifiedDate\": \"2016-10-13T14:17:58.873\",\n            \"AbsenceEventInsertDate\": \"2013-01-30T10:12:35.78\",\n            \"AbsenceEventLastModifiedUser\": \"* philip.hobbs@omnicrom.com\",\n            \"AbsencePlanTypeName\": \"Holiday\",\n            \"AbsenceTypeName\": \"Holiday\",\n            \"AbsenceCategory\": \"Holiday\",\n            \"FirstName\": \"Cheryl\",\n            \"FamilyName\": \"Abrahams\",\n            \"FullName\": \"Cheryl Abrahams\",\n            \"PersonCode\": \"26\",\n            \"EmploymentId\": \"7637\",\n            \"CompanyCode\": \"OMMAN\",\n            \"CompanyName\": \"Omnicrom Manufacturing Ltd\",\n            \"OrgUnitCode\": \"Marketing\",\n            \"OrgUnitName\": \"Marketing - USA\",\n            \"ActiveEmployee\": 1,\n            \"AbsenceEventDetailCode\": \"5a728e94-83c0-414f-b952-000028f8081b\",\n            \"AbsenceEventCode\": \"9e56e35a-3599-4dec-a43c-b037f19d7314\",\n            \"SickPay\": 0\n        }\n    ]\n}"}],"_postman_id":"a3de2714-8047-88e9-6ca7-230288789325"}],"id":"84ae9166-089e-fbc7-bd45-14860bf4d22d","description":"<p>This API enables information from the Absence Event screen for active and inactive employees to be retrieved.</p>\n<p>The identifying key for Absence Event Details is:</p>\n<ul><li><div>AbsenceEventDetailCode</div></li></ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ReferenceDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AMStartTime</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AMEndTime</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AMWorkingHours</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PMEndTime</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PMStartTime</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PMWorkingHours</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>DayTotalWorkingHours</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>WeekDay</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AbsenceEventDetailInsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AbsenceEventDetailLastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AbsenceEventDetailLastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AbsenceEventSubmittedOn</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AbsenceEventRepliedOn</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AbsenceEventComments</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AbsenceEventEffectiveFrom</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AbsenceEventEffectiveTo</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Approver</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ApproverPersonCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AbsenceStatus</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AbsenceReason</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AbsenceEventInsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AbsenceEventLastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AbsenceEventInsertDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AbsenceEventLastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AbsencePlanTypeName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AbsenceTypeName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AbsenceCategory</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>FirstName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>FamilyName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>FullName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PersonCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EmploymentId</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>CompanyCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>CompanyName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>OrgUnitCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>OrgUnitName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ActiveEmployee</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>AbsenceEventDetailCode</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>AbsenceEventCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>SickPay</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>ExcludeFromBradfordFactor</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"0909e903-848c-41ec-b68d-a154fae1a614","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"f986768a-f75a-4dd3-8ca8-ab4211be4dfc","type":"text/javascript","exec":[""]}}],"_postman_id":"84ae9166-089e-fbc7-bd45-14860bf4d22d"},{"name":"Absence Events (Read-Only)","item":[{"name":"List of Person Absence Events","id":"cf1ad7be-d853-7da5-62d8-18f9194ee292","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/PersonAbsenceEvents?$format=json","description":"<p>This request will return a list of Absence Events from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["PersonAbsenceEvents"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"857e6af8-5986-cdf3-5b28-3e29cab05966","name":"List of Absence Events","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/PersonAbsenceEvents?$format=json","host":["{{url}}"],"path":["PersonAbsenceEvents"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"no-cache","description":""},{"name":"connection","key":"connection","value":"keep-alive","description":""},{"name":"content-length","key":"content-length","value":"1346","description":""},{"name":"content-type","key":"content-type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","description":""},{"name":"dataserviceversion","key":"dataserviceversion","value":"3.0;","description":""},{"name":"date","key":"date","value":"Wed, 26 Jul 2017 16:08:48 GMT","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"2051","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#PersonAbsenceEvents\",\n    \"value\": [\n        {\n            \"PersonGUID\": \"1c586055-c095-4582-bb15-c76aec89b75d\",\n            \"PersonAbsenceEventGUID\": \"23d7b9f1-b9e3-484a-89e3-0000725c9846\",\n            \"AbsenceEventSubmittedOn\": \"2015-12-11T00:00:00\",\n            \"AbsenceEventRepliedOn\": \"2015-12-11T00:00:00\",\n            \"AbsenceNotes\": null,\n            \"AbsenceEventEffectiveFrom\": \"2015-12-29T00:00:00\",\n            \"AbsenceEventEffectiveTo\": \"2015-12-29T00:00:00\",\n            \"Approver\": null,\n            \"ApproverPersonCode\": null,\n            \"AbsenceStatus\": \"Approved\",\n            \"AbsenceReason\": \"Holiday\",\n            \"AbsenceEventInsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"AbsenceEventLastModifiedDate\": \"2016-10-13T14:20:40.62\",\n            \"AbsenceEventInsertDate\": \"2015-12-11T16:07:06.28\",\n            \"AbsenceEventLastModifiedUser\": \"* cheryl.abrahams@omnicrom.com\",\n            \"AbsencePlanTypeName\": \"Holiday\",\n            \"AbsenceTypeName\": \"Holiday\",\n            \"AbsenceCategory\": \"Holiday\",\n            \"FirstName\": \"Peter\",\n            \"FamilyName\": \"Masters\",\n            \"FullName\": \"Peter Masters\",\n            \"PersonCode\": \"5648\",\n            \"EmploymentID\": \"5648\",\n            \"CompanyCode\": \"OMMAN\",\n            \"CompanyName\": \"Omnicrom Manufacturing Ltd\",\n            \"OrgUnitCode\": \"HR\",\n            \"OrgUnitName\": \"HR\",\n            \"ActiveEmployee\": 1,\n            \"CommencesCode\": \"M\",\n            \"Commences\": \"Middle of Day\",\n            \"FinishesCode\": \"E\",\n            \"Finishes\": \"End of Day\",\n            \"TimeUnits\": \"Days\",\n            \"TotalByTimeUnit\": \"0.50\",\n            \"TotalDays\": \"0.50\",\n            \"TotalWorkingTimeTakenByTimeUnit\": \"0.50\",\n            \"AbsenceEventTotalWorkingHours\": \"3.75\",\n            \"OpenEndedSickness\": 0,\n            \"ApproverPersonGUID\": \"9d5c2433-9211-477b-b3cc-a76adc6d89ca\",\n            \"EmploymentGUID\": \"d9ebc669-2667-4f17-ad7b-a745f4479690\",\n            \"CompanyGUID\": \"9e91e0db-0e96-4917-8f64-3021c3213012\",\n            \"OrgUnitGUID\": \"9ae84ac4-8ed5-4382-85c5-d256c7d25617\"\n        }\n    ]\n}"}],"_postman_id":"cf1ad7be-d853-7da5-62d8-18f9194ee292"}],"id":"b7650931-d92f-a492-cfa1-4bd6cb486569","description":"<p>This API enables information from the Absence Event screen for active and inactive employees to be retrieved.</p>\n<p>The identifying key for Absence Events is:</p>\n<ul><li><div>PersonAbsenceEventGUID</div></li></ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PersonGUID</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PersonAbsenceEventGUID</td>\n<td></td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>AbsenceEventSubmittedOn</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AbsenceEventRepliedOn</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AbsenceNotes</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AbsenceEventEffectiveFrom</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AbsenceEventEffectiveTo</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Approver</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ApproverPersonCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AbsenceStatus</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AbsenceReason</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AbsenceEventInsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AbsenceEventLastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AbsenceEventInsertDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AbsenceEventLastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AbsencePlanTypeName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AbsenceTypeName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AbsenceCategory</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>FirstName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>FamilyName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>FullName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PersonCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EmploymentID</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>CompanyCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>CompanyName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>OrgUnitCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>OrgUnitName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ActiveEmployee</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>CommencesCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Commences</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>FinishesCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Finishes</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TimeUnits</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TotalByTimeUnit</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TotalDays</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TotalWorkingTimeTakenByTimeUnit</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AbsenceEventTotalWorkingHours</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>OpenEndedSickness</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>ApproverPersonGUID</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EmploymentGUID</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>CompanyGUID</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>OrgUnitGUID</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ExcludeFromBradfordFactor</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"238c51c5-496d-4a64-8091-c68858ce2f9f","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"2261efd6-9f37-441e-afbd-000cb0e8de87","type":"text/javascript","exec":[""]}}],"_postman_id":"b7650931-d92f-a492-cfa1-4bd6cb486569"},{"name":"Deleted Absence Events (Read-Only)","item":[{"name":"List of Deleted Absence Events","id":"8b9987bc-db95-4b4c-9b46-d90e48e7727f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer Your-API-Token","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."}],"url":"{{url}}/PersonAbsenceDeletedEvents?$format=json","description":"<p>This request will return a list of physically Deleted Absence Event Details from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["PersonAbsenceDeletedEvents"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"33cfb2b3-30e1-499f-8016-e3b9a304cdca","name":"List of Deleted Absence Events","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{url}}/PersonAbsenceDeletedEvents?$format=json","host":["{{url}}"],"path":["PersonAbsenceDeletedEvents"],"query":[{"key":"$format","value":"json"},{"key":"$top","value":"1","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"DataServiceVersion","value":"3.0;"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Date","value":"Fri, 08 Feb 2019 10:37:16 GMT"},{"key":"Content-Length","value":"385"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#PersonAbsenceDeletedEvents\",\n    \"value\": [\n        {\n            \"PersonCode\": \"CEZ01\",\n            \"PersonAbsenceEventsDeleteAuditCode\": \"543789ba-d3fc-2222-45c7-244b0f6790d5\",\n            \"ActionDate\": \"2017-12-07T00:00:00\",\n            \"AbsenceEventGuid\": \"4325670a-8795-4446-bfc3-dc03bf56bc11\",\n            \"EffectiveFrom\": \"2015-09-07T00:00:00\",\n            \"EffectiveTo\": \"2015-09-28T00:00:00\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\"\n        }\n    ]\n}"}],"_postman_id":"8b9987bc-db95-4b4c-9b46-d90e48e7727f"}],"id":"f2f92115-44c6-4059-a0b6-49a2d830192b","description":"<p>This API enables information about physically deleted absence events for active and inactive employees to be retrieved.</p>\n<p>The identifying key for Deleted Absence Events is:</p>\n<ul>\n<li>PersonAbsenceEventsDeleteAuditCode</li>\n</ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PersonCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PersonAbsenceEventsDeleteAuditCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ActionDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AbsenceEventGuid</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EffectiveFrom</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EffectiveTo</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2> Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"9796aa27-2f01-4a1e-b62b-0823eccaa627","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"f971c20a-cfb8-4c47-b947-891d01f6c611","type":"text/javascript","exec":[""]}}],"_postman_id":"f2f92115-44c6-4059-a0b6-49a2d830192b"},{"name":"Time Off In Lieu (TOIL) (Read-Only)","item":[{"name":"List of Time Off In Lieu (TOIL) records","id":"2d8cae3c-6367-43c1-a8ba-d9c9563b52d2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer Your-API-Token","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."}],"url":"{{url}}/TimeOffInLieu?$format=json","description":"<p>This request will return a list of Time Off In Lieu (TOIL) Event Details from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["TimeOffInLieu"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"7efd111c-6ee6-45aa-996b-67b752d94d58","name":"List of all Time Off In Lieu (TOIL) records","originalRequest":{"method":"GET","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer Your-API-Token","type":"text"}],"url":{"raw":"{{url}}/TimeOffInLieu?$format=json","host":["{{url}}"],"path":["TimeOffInLieu"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"DataServiceVersion","value":"3.0;"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Date","value":"Thu, 28 Mar 2019 14:32:39 GMT"},{"key":"Content-Length","value":"695"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#TimeOffInLieu\",\n    \"value\": [\n        {\n            \"PersonCode\": \"CEZ03\",\n            \"UsedTOIL\": \"0.00\",\n            \"RemainingTOIL\": \"0.00\",\n            \"EmployeeName\": \"Brenda Becker\",\n            \"PersonAbsenceToilGuid\": \"6f5555e6-3cf3-2e1c-34df-bvr33a3c467e\",\n            \"AbsenceType\": \"Holiday\",\n            \"WorkedFrom\": \"2019-03-30T00:00:00\",\n            \"WorkedTo\": \"2019-03-30T00:00:00\",\n            \"Reason\": \"Weekday Overtime\",\n            \"TakenAsPay\": 1,\n            \"TOILEffectiveFrom\": \"2019-03-31T00:00:00\",\n            \"TOILExpiry\": \"2999-12-31T00:00:00\",\n            \"Notes\": null,\n            \"TOILEarned\": \"0.00\",\n            \"TOILTimeUnits\": \"Days\",\n            \"Status\": \"Approved\",\n            \"Rate\": \"1.00\",\n            \"Approver\": \"Cheryl Abrahams\",\n            \"OvertimeWorked\": \"1.00\",\n            \"OvertimeTimeUnits\": \"Days\",\n            \"RateDescription\": \"Standard\"\n        }\n    ]\n}"}],"_postman_id":"2d8cae3c-6367-43c1-a8ba-d9c9563b52d2"}],"id":"28212c41-20e7-4150-87cf-44dea3157cb8","description":"<p>This API enables all information from the Time Off In Lieu (TOIL) screen for active and inactive employees to be retrieved.</p>\n<p>The identifying key for TOIL is:</p>\n<ul>\n<li>PersonAbsenceToilGuid</li>\n</ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PersonCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>UsedTOIL</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>RemainingTOIL</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EmployeeName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PersonAbsenceToilGuid</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AbsenceType</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>WorkedFrom</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>WorkedTo</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Reason</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TakenAsPay</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TOILEffectiveFrom</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TOILExpiry</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Notes</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TimeUnits</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TOILEarned</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Status</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Rate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Approver</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>OvertimeWorked</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>OvertimeTimeUnits</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>RateDescription</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2> Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"4ba325f3-4a11-4ad6-b74f-553b6180b960","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"cc94288f-2aab-4ab4-9d9b-6fae01c7c064","type":"text/javascript","exec":[""]}}],"_postman_id":"28212c41-20e7-4150-87cf-44dea3157cb8"},{"name":"Absence Types (Read-Only)","item":[{"name":"List of Absence Types","id":"839d236f-337d-40c4-9f05-c8b31b1253a1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer Your-API-Token","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."}],"url":"{{url}}/AbsenceTypes?$format=json","description":"<p>This request will return a list of Absence Type Details from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["AbsenceTypes"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"22dd27b3-a766-4444-a089-7c65137d2346","name":"List of Absence Types","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer Your-API-Token","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."}],"url":{"raw":"{{url}}/AbsenceTypes?$format=json","host":["{{url}}"],"path":["AbsenceTypes"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"DataServiceVersion","value":"3.0;"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Date","value":"Fri, 06 Nov 2020 10:21:34 GMT"},{"key":"Content-Length","value":"461"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#AbsenceTypes\",\n    \"value\": [\n        {\n            \"AbsenceTypeGuid\": \"e0cf26dc-9042-4c18-bbc0-c45867732135\",\n            \"Name\": \"Holiday\",\n            \"TranslatedName\": \"Holiday\",\n            \"Description\": \"Holiday\",\n            \"CalendarType\": 1,\n            \"EventType\": 1,\n            \"Category\": \"Holiday\",\n            \"TimeUnits\": \"Days\",\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2019-11-04T00:00:00Z\",\n            \"Colour\": \"#FF50B288\"\n        }\n    ]\n}"}],"_postman_id":"839d236f-337d-40c4-9f05-c8b31b1253a1"}],"id":"b9b49b20-4f95-4e70-91b1-41c746ccd11f","description":"<p>This API enables information about Absence Types in the system to be retrieved.</p>\n<p>The identifying key for Absence Types is:</p>\n<ul>\n<li>AbsenceTypeGuid</li>\n</ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AbsenceTypeGuid</td>\n<td></td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>Name</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TranslatedName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>CalendarType</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EventType</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Category</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TimeUnits</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Colour</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2> Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to all types within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has read-only access to all types within the system.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to all types within the system.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to all types within the system.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"a2dcd401-a8d1-4ffd-a96b-fb759cbf7673","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"d733b7ca-3cb4-4b92-a8ef-6df4c8896d5b","type":"text/javascript","exec":[""]}}],"_postman_id":"b9b49b20-4f95-4e70-91b1-41c746ccd11f"},{"name":"Absence Type Translations (Read-Only) ","item":[{"name":"List of Absence Type Translations","id":"42baf3bf-01d7-4add-8294-4c1860e81045","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer Your-API-Token","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."}],"url":"{{url}}/AbsenceTypeTranslations?$format=json","description":"<p>This request will return a list of Absence Type Translations from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["AbsenceTypeTranslations"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"4a82badb-5a63-4bbe-8a11-0c6d5f853e35","name":"List of Absence Type Translations","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer Your-API-Token","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."}],"url":{"raw":"{{url}}/AbsenceTypeTranslations?$format=json","host":["{{url}}"],"path":["AbsenceTypeTranslations"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"DataServiceVersion","value":"3.0;"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Date","value":"Fri, 06 Nov 2020 13:39:27 GMT"},{"key":"Content-Length","value":"408"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#AbsenceTypeTranslations\",\n    \"value\": [\n        {\n            \"TranslationGuid\": \"da30ddd0-ce63-47b3-bf11-e94494187fd7\",\n            \"LocaleId\": 1031,\n            \"LocaleDescription\": \"German (Germany)\",\n            \"TranslatedAbsenceTypeName\": \"Elternzeit\",\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2019-11-04T00:00:00Z\"\n        }\n    ]\n}"}],"_postman_id":"42baf3bf-01d7-4add-8294-4c1860e81045"}],"id":"a0628505-a158-4350-b162-8916cc997fd3","description":"<p>This API enables information about Absence Type Translations in the system to be retrieved.</p>\n<p>The identifying keys for Absence Type Translations are:</p>\n<ul>\n<li>LocaleId</li>\n<li>TranslationGuid</li>\n</ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>TranslationGuid</td>\n<td></td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>LocaleId</td>\n<td></td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>LocaleDescription</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TranslatedAbsenceTypeName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2> Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to all type translations within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has read-only access to all type translations within the system.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to all type translations within the system.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to all type translations within the system.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"6866e075-a28d-4b3e-96e6-f8fb2622cfe2","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"70797fa8-a09a-4a4a-ae15-7715c26fafa1","type":"text/javascript","exec":[""]}}],"_postman_id":"a0628505-a158-4350-b162-8916cc997fd3"},{"name":"Absence Type Reasons (Read-Only) ","item":[{"name":"List of Absence Type Reasons","id":"b4adc559-d70d-4375-ba6c-775cddce8755","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer Your-API-Token","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."}],"url":"{{url}}/AbsenceTypeReasons?$format=json","description":"<p>This request will return a list of Absence Reasons which are associated with Absence Types in the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n<li>In order to retrieve the Name of the Absence Reason, you can link this API to AbsenceTypeReasonsCodeTable using the AbsenceReasonCodeGuid and CodeGuid fields and looking at the CodeDescription field.</li>\n<li>If you want to retrieve the translations of an Absence Reason, you can link this API to AbsenceTypeReasonsCodeTableTranslations using the AbsenceReasonCodeGuid and CodeGuid fields and looking at the LocaleDescription and CodeDescription fields.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["AbsenceTypeReasons"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"5b6c294c-e45d-40d9-ab0e-93deb265dae3","name":"List of Absence Type Reasons","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer Your-API-Token","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."}],"url":{"raw":"{{url}}/AbsenceTypeReasons?$format=json","host":["{{url}}"],"path":["AbsenceTypeReasons"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"DataServiceVersion","value":"3.0;"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Date","value":"Fri, 06 Nov 2020 13:25:06 GMT"},{"key":"Content-Length","value":"431"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#AbsenceTypeReasons\",\n    \"value\": [\n        {\n            \"AbsenceTypeReasonGuid\": \"9f686a8d-c61d-49e8-b7c6-fa0bee5affe2\",\n            \"AbsenceTypeGuid\": \"74f5bfe1-caa3-417d-a8ff-e38ded77105a\",\n            \"AbsenceReasonCodeGuid\": \"4b4fd08c-cb48-4fef-9619-a1b071e17f45\",\n            \"SortOrder\": 5,\n            \"InsertUser\": \"chery;.abrahams@omnicrom.com\",\n            \"LastModifiedUser\": \"chery;.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2019-11-16T00:00:00Z\"\n        }\n    ]\n}"}],"_postman_id":"b4adc559-d70d-4375-ba6c-775cddce8755"}],"id":"0a80b324-c269-4ae6-be68-64ca1cf89692","description":"<p>This API enables information about Absence Reasons associated to Absence Types in the system to be retrieved.</p>\n<p>The identifying key for Absence Type Reasons is:</p>\n<ul>\n<li>AbsenceTypeReasonGuid</li>\n</ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>AbsenceTypeReasonGuid</td>\n<td></td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>AbsenceTypeGuid</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AbsenceReasonCodeGuid</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>SortOrder</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2> Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to all type reasons within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has full access to all type reasons within the system.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"64ec1b6d-ddab-4ad8-a233-39e672f971f8","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"6b75d040-e7de-4c5d-bab4-7cf3c83abb8f","type":"text/javascript","exec":[""]}}],"_postman_id":"0a80b324-c269-4ae6-be68-64ca1cf89692"},{"name":"Absence Type Reasons Picklist (Read-Only) ","item":[{"name":"List of Absence Type Reasons Picklist Items","id":"a4a6e6d6-90bd-4788-a6b3-5ce7317f55c7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer Your-API-Token","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."}],"url":"{{url}}/AbsenceTypeReasonsCodeTable?$format=json&$top=1","description":"<p>This request will return a list of Absence Reason picklist entries in the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["AbsenceTypeReasonsCodeTable"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"},{"key":"$top","value":"1"}],"variable":[]}},"response":[{"id":"d1a62cb6-add2-4a57-ae1d-9599a6b5bf11","name":"List of Absence Type Reasons Picklist Items","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer Your-API-Token","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."}],"url":{"raw":"{{url}}/AbsenceTypeReasonsCodeTable?$format=json","host":["{{url}}"],"path":["AbsenceTypeReasonsCodeTable"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"DataServiceVersion","value":"3.0;"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Date","value":"Fri, 06 Nov 2020 13:28:51 GMT"},{"key":"Content-Length","value":"343"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#AbsenceTypeReasonsCodeTable\",\n    \"value\": [\n        {\n            \"CodeGuid\": \"988d78a2-c91e-4c79-9d03-ea24daa622c8\",\n            \"Code\": \"SickLT\",\n            \"CodeDescription\": \"Sickness (Long Term)\",\n            \"SortOrder\": 10,\n            \"Inactive\": 0,\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2019-11-04T11:59:20.78Z\"\n        }\n    ]\n}"}],"_postman_id":"a4a6e6d6-90bd-4788-a6b3-5ce7317f55c7"}],"id":"461e3311-1479-49a1-bbfe-d0b0cef16fc1","description":"<p>This API enables information about entries from the Absence Reasons picklist in the system to be retrieved.</p>\n<p>The identifying key for Absence Type Reasons Picklist is:</p>\n<ul><li><div>CodeGuid</div></li></ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CodeGuid</td>\n<td></td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>Code</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>CodeDescription</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>SortOrder</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Inactive</td>\n<td></td>\n<td>Read-only. 1 = inactive, 0 = active.</td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to all reason picklist entries within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has read-only access to all reason picklist entries within the system.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to all reason picklist entries within the system.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to all reason picklist entries within the system.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"17ae7e28-8fa7-4b7e-a53c-c6c269a2b0ae","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"4acd5507-574f-4ebe-8f78-c58bd81ace00","type":"text/javascript","exec":[""]}}],"_postman_id":"461e3311-1479-49a1-bbfe-d0b0cef16fc1"},{"name":"Absence Type Reasons Translations (Read-Only) ","item":[{"name":"List of Absence Type Reasons Translations","id":"488c8c59-4239-4171-869f-d0ada53de94b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer Your-API-Token","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."}],"url":"{{url}}/AbsenceTypeReasonsCodeTableTranslations?$format=json","description":"<p>This request will return a list of Absence Type Reasons tranlsations in the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["AbsenceTypeReasonsCodeTableTranslations"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"9c70d71b-cf0a-43a8-9bf5-f4b34596496c","name":"List of Absence Type Reasons Translations","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer Your-API-Token","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."}],"url":{"raw":"{{url}}/AbsenceTypeReasonsCodeTableTranslations?$format=json","host":["{{url}}"],"path":["AbsenceTypeReasonsCodeTableTranslations"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"DataServiceVersion","value":"3.0;"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Date","value":"Fri, 06 Nov 2020 13:33:56 GMT"},{"key":"Content-Length","value":"382"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#AbsenceTypeReasonsCodeTableTranslations\",\n    \"value\": [\n        {\n            \"CodeGuid\": \"0e187e31-f1cb-4ed3-b883-f3c00e0e5ddd\",\n            \"LocaleID\": 1031,\n            \"LocaleDescription\": \"German (Germany)\",\n            \"CodeDescription\": \"Krankheit (Langzeit)\",\n            \"Code\": \"SickLT\",\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2019-11-04T11:59:20.78Z\"\n        }\n    ]\n}"},{"id":"d1ab4ef8-07fc-45f4-af4f-96b3abf343b3","name":"List of Absence Type Reasons Picklist Items","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer Your-API-Token","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."}],"url":{"raw":"{{url}}/AbsenceTypeReasonsCodeTable?$format=json","host":["{{url}}"],"path":["AbsenceTypeReasonsCodeTable"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"DataServiceVersion","value":"3.0;"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Date","value":"Fri, 06 Nov 2020 13:28:51 GMT"},{"key":"Content-Length","value":"343"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#AbsenceTypeReasonsCodeTable\",\n    \"value\": [\n        {\n            \"CodeGuid\": \"988d78a2-c91e-4c79-9d03-ea24daa622c8\",\n            \"Code\": \"SickLT\",\n            \"CodeDescription\": \"Sickness (Long Term)\",\n            \"SortOrder\": 10,\n            \"Inactive\": 0,\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2019-11-04T11:59:20.78Z\"\n        }\n    ]\n}"}],"_postman_id":"488c8c59-4239-4171-869f-d0ada53de94b"}],"id":"579e1d2d-5fef-413f-be55-28cb61e50d58","description":"<p>This API enables information about the translations of entries from the Absence Reasons picklist in the system to be retrieved.</p>\n<p>The identifying keys for Absence Type Reasons Translations are:</p>\n<ul><li><div>CodeGuid</div></li><li><div>LocaleID</div></li></ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CodeGuid</td>\n<td></td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>LocaleID</td>\n<td></td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>LocaleDescription</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>CodeDescription</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Code</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to all reason translations within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has read-only access to all reason translations within the system.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to all reason translations within the system.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to all reason translations within the system.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"af1840c2-42c1-46dc-b4e6-e2b1d4a764bc","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"d7d82e9a-06bc-404e-8632-d1fe8a2cbc96","type":"text/javascript","exec":[""]}}],"_postman_id":"579e1d2d-5fef-413f-be55-28cb61e50d58"}],"id":"b71b1acd-2c4c-5e83-d7c5-9dfab1c2531f","_postman_id":"b71b1acd-2c4c-5e83-d7c5-9dfab1c2531f","description":""},{"name":"Compensation and Benefits","item":[{"name":"Benefits","item":[{"name":"List of Employee Benefits","id":"86e6244b-2909-ccdc-85f8-f8acb3aaa0fc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/Benefits?$format=json","description":"<p>This request will return a list of Employee Benefits from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["Benefits"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"1ad5090f-5c10-7f30-855f-21edcbea9176","name":"List of Employee Benefits","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/Benefits?$format=json","host":["{{url}}"],"path":["Benefits"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"no-cache","description":""},{"name":"connection","key":"connection","value":"keep-alive","description":""},{"name":"content-length","key":"content-length","value":"748","description":""},{"name":"content-type","key":"content-type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","description":""},{"name":"dataserviceversion","key":"dataserviceversion","value":"3.0;","description":""},{"name":"date","key":"date","value":"Thu, 27 Jul 2017 13:38:45 GMT","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"605","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#Benefits\",\n    \"value\": [\n        {\n            \"PersonBenefitCode\": \"cbba5def-f666-990e-b4fa-6e888b670e2b\",\n            \"PersonGUID\": \"05dc20e3-7319-473d-bbe3-cfe18876fc7e\",\n            \"PersonCode\": \"107\",\n            \"AccountOrMembershipNo\": \"1234567\",\n            \"BenefitDescription\": null,\n            \"BenefitType\": \"Health Insurance\",\n            \"SchemeName\": \"AZA Health Insurance\",\n            \"SchemeProvider\": null,\n            \"SchemeJoinDate\": \"2014-05-01T00:00:00\",\n            \"SchemeLeaveDate\": \"2999-12-31T00:00:00\",\n            \"ValidToJoinDate\": null,\n            \"SchemeOfferDate\": null,\n            \"BenefitsEmploymentID\": null,\n            \"AssociatedDocuments\": null,\n            \"IssuedToEmployee\": null,\n            \"ReturnedByEmployee\": null,\n            \"SentToProvider\": null,\n            \"Comments\": null,\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2014-05-01T11:25:00.287Z\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\"\n        }\n    ]\n}"}],"_postman_id":"86e6244b-2909-ccdc-85f8-f8acb3aaa0fc"},{"name":"Add an Employee's Benefits","id":"49f72048-eef2-ac5e-8021-2ec097e82b42","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"PersonCode\": \"26\",\n  \"AccountOrMembershipNo\": \"563689\",\n  \"BenefitType\": \"Pension\",\n  \"SchemeName\": \"Omnicrom Pension Fund\",\n  \"SchemeJoinDate\": \"2017-01-01T00:00:00\",\n  \"SchemeLeaveDate\": \"2017-12-31T00:00:00\"\n}"},"url":"{{url}}/Benefits?$format=json","description":"<p>This request will insert a Benefits record for an employee.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["Benefits"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"728a55d7-93af-ee43-958c-685f9b6e1ced","name":"Add an Employee's Benefits","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"PersonCode\": \"26\",\n\t\"AccountOrMembershipNo\": \"563689\",\n\t\"BenefitType\": \"Pension\",\n\t\"SchemeName\": \"Omnicrom Pension Fund\",\n\t\"SchemeJoinDate\": \"2017-01-01T00:00:00\",\n\t\"SchemeLeaveDate\": \"2017-12-31T00:00:00\"\n}"},"url":{"raw":"{{url}}/Benefits?$format=json","host":["{{url}}"],"path":["Benefits"],"query":[{"key":"$format","value":"json"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"695","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","name":"Content-Type","description":""},{"key":"DataServiceVersion","value":"3.0;","name":"DataServiceVersion","description":""},{"key":"Date","value":"Wed, 03 Jan 2018 10:11:05 GMT","name":"Date","description":""},{"key":"Location","value":"https://showcase.cezanneondemand.com/cezanneondemand/v2/DataService.svc/Benefits(PersonCode='26',SchemeJoinDate=datetime'2017-01-01T00%3A00%3A00',SchemeName='Omnicrom%20Pension%20Fund')","name":"Location","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"10FF1C8527C119F7CB4E7C4120B8992C37BA1C8AE5234A9C7292845F5BF38D235F1BB6B2EF2F3728FEB7A384928DF969505638D3077B989C224A35AD3FE86D663EBCCEECF12BB193FF45C084F261369A94F105CDE91537455E5B49C713A694D62D34D7A7888AD9B597BDD3246C7569B4C58B10C159A04F82DF9242075831F7E38CE8DEDD0EEAACDD6CF905FEA56D401CC4DB3789AF82193C78C9A4D6A124EB0BDE5B27B6C1663E44BDFDC68E369CC4FD3AE57BC82F41E15393895D53FCBF45BEF8EE38E5FAC9F414B14AF836AC55E69E37B3A04760F8929B12DD607AB5345FE24508BB570572B35BF0EE26ECE04E899FDAEA1A227AC0432679902DA7737F2B5B8C91E71F7F5A858689E6919028A38ADB","key":"CF_SID"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"-1","key":"CF_SLV"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"/1cGaxGPTBHcD8RBFPNm12FtDYLb3lMpw7XIBqrYFhv/PCOTAE7wxR40Odzc4CqCBqtAOZUr4ANdr0FCU5+yshc/OebxJq3yb+4ZnDyqpu6AwS+bVPF+pa/xxdPnk2Wb9Paf0Dv+yZV/0G7/d6kslgWPqvC6vBmhi0lGAwQ6OUY=","key":"__RequestVerificationToken_L0NlemFubmVPbkRlbWFuZA__"}],"responseTime":"709","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#Benefits/@Element\",\n    \"PersonBenefitCode\": null,\n    \"PersonGUID\": null,\n    \"PersonCode\": \"26\",\n    \"AccountOrMembershipNo\": \"563689\",\n    \"BenefitDescription\": null,\n    \"BenefitType\": \"Pension\",\n    \"SchemeName\": \"Omnicrom Pension Fund\",\n    \"SchemeProvider\": null,\n    \"SchemeJoinDate\": \"2017-01-01T00:00:00\",\n    \"SchemeLeaveDate\": \"2017-12-31T00:00:00\",\n    \"ValidToJoinDate\": null,\n    \"SchemeOfferDate\": null,\n    \"BenefitsEmploymentID\": null,\n    \"AssociatedDocuments\": null,\n    \"IssuedToEmployee\": null,\n    \"ReturnedByEmployee\": null,\n    \"SentToProvider\": null,\n    \"Comments\": null,\n    \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedDate\": \"2017-12-16T09:00:03.8493002Z\",\n    \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\"\n}"}],"_postman_id":"49f72048-eef2-ac5e-8021-2ec097e82b42"},{"name":"Update an Employee's Benefits record","id":"f22315b7-c258-4b42-9445-33a3342fd92d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"Comments\": \"Example Comments\"\n}"},"url":"{{url}}/Benefits(PersonCode='[PersonCode]', SchemeName='[SchemeName]', SchemeJoinDate=datetime'[SchemeJoinDate]')","description":"<p>This request will update an employee's Benefits record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Request body includes only one field as an example. You can add any extra fields from the table that you require. However, some fields are read-only. \n</li>\n<li>The PersonCode, SchemeName and SchemeJoinDate cannot be updated as they are the the key fields for this table.</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["Benefits(PersonCode='[PersonCode]', SchemeName='[SchemeName]', SchemeJoinDate=datetime'[SchemeJoinDate]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f22315b7-c258-4b42-9445-33a3342fd92d"},{"name":"Delete an Employee's Benefits record","id":"eab87fcc-2992-bcbe-5644-0690dfb9bbb9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/Benefits(PersonCode='[PersonCode]', SchemeName='[SchemeName]', SchemeJoinDate=datetime'[SchemeJoinDate]')","description":"<p>This request will delete an employee's Benefits record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["Benefits(PersonCode='[PersonCode]', SchemeName='[SchemeName]', SchemeJoinDate=datetime'[SchemeJoinDate]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"eab87fcc-2992-bcbe-5644-0690dfb9bbb9"}],"id":"6d752479-5fc5-3fa8-04f0-b3031a4ffc21","description":"<p>This API enables all information from the Benefits screen for active and inactive employees to be retrieved and modified.</p>\n<p>The identifying keys for Benefits are:</p>\n<ul><li><div>PersonCode</div></li><li><div>SchemeName</div></li><li><div>SchemeJoinDate</div></li></ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PersonBenefitCode</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PersonGUID</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PersonCode</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>AccountOrMembershipNo</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>BenefitDescription</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>BenefitType</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>SchemeName</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>SchemeProvider</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>SchemeJoinDate</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>SchemeLeaveDate</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>ValidToJoinDate</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>SchemeOfferDate</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>BenefitsEmploymentID</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>AssociatedDocuments</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>IssuedToEmployee</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>ReturnedByEmployee</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>SentToProvider</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Comments</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to their and all subordinate records.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to their own record.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"a6650f33-a3d3-4e77-bd90-b4537249ba5b","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"ebe10f85-2fbc-4fb3-8170-414d0e9f0356","type":"text/javascript","exec":[""]}}],"_postman_id":"6d752479-5fc5-3fa8-04f0-b3031a4ffc21"},{"name":"Benefits - Contributions","item":[{"name":"List of Employee Benefits Contributions","id":"c529eaa3-a271-e4a4-de8d-76b1509555cb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/BenefitContributions?$format=json","description":"<p>This request will return a list of Employee Benefit Contributions from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["BenefitContributions"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"3e51b36f-06e2-a4f0-4f27-9331f70c5629","name":"List of Employee Benefits Contributions","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/BenefitContributions?$format=json","host":["{{url}}"],"path":["BenefitContributions"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"no-cache","description":""},{"name":"connection","key":"connection","value":"keep-alive","description":""},{"name":"content-length","key":"content-length","value":"1071","description":""},{"name":"content-type","key":"content-type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","description":""},{"name":"dataserviceversion","key":"dataserviceversion","value":"3.0;","description":""},{"name":"date","key":"date","value":"Mon, 31 Jul 2017 17:08:08 GMT","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"677","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#BenefitContributions\",\n    \"value\": [\n        {\n            \"PersonGUID\": \"786c1e3c-4bb2-456c-8513-01ddb5601132\",\n            \"PersonCode\": \"CEZ40\",\n            \"BenefitCode\": \"a5018ec6-8ac4-4d3f-a3d8-08d5eb13fdc0\",\n            \"EffectiveFrom\": \"2008-06-29T00:00:00\",\n            \"EffectiveTo\": \"2999-12-31T00:00:00\",\n            \"BenefitCurrency\": \"EUR\",\n            \"BaseCurrency\": \"USD\",\n            \"PayPeriod\": \"Monthly\",\n            \"EmployerAmount\": \"90.00\",\n            \"EmployerAnnualAmount\": \"1080.00\",\n            \"EmployeeAmount\": \"180.00\",\n            \"EmployeeAnnualAmount\": \"2160.00\",\n            \"TotalAmount\": \"270.00\",\n            \"TotalAnnualAmount\": \"3240.00\",\n            \"TaxableAmount\": null,\n            \"TaxableAnnualAmount\": null,\n            \"EmployerBaseAmount\": \"90.000000\",\n            \"EmployerAnnualBaseAmount\": \"1080.000000\",\n            \"EmployeeBaseAmount\": \"180.000000\",\n            \"EmployeeAnnualBaseAmount\": \"2160.000000\",\n            \"TotalBaseAmount\": \"270.00\",\n            \"TotalAnnualBaseAmount\": \"3240.000000\",\n            \"TaxableBaseAmount\": null,\n            \"TaxableAnnualBaseAmount\": null,\n            \"EmployerPercentageOfSalary\": \"3.00\",\n            \"EmployeePercentageOfSalary\": \"6.00\",\n            \"Comments\": null,\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2011-07-28T15:05:01.39Z\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\"\n        }\n    ]\n}"}],"_postman_id":"c529eaa3-a271-e4a4-de8d-76b1509555cb"},{"name":"Add an Employee's Benefit Contributions","id":"06a8db3e-8f96-c81b-d38e-9ca46453e0b6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"PersonCode\": \"26\",\n  \"BenefitCode\": \"e15d03db-2db8-4e32-a2b9-0ae7fdebccb5\",\n  \"EffectiveFrom\": \"2017-01-01T00:00:00\",\n  \"EffectiveTo\": \"2017-12-31T00:00:00\",\n  \"BenefitCurrency\": \"GBP\",\n  \"PayPeriod\": \"Monthly\"\n}"},"url":"{{url}}/BenefitContributions?$format=json","description":"<p>This request will insert a Benefit Contributions record for an employee.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["BenefitContributions"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"51751ad8-b137-c066-77a9-9b4b3d973a26","name":"Add an Employee's Benefit Contributions","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"PersonCode\": \"26\",\n\t\"BenefitCode\": \"e15d03db-2db8-4e32-a2b9-0ae7fdebccb5\",\n\t\"EffectiveFrom\": \"2017-01-01T00:00:00\",\n\t\"EffectiveTo\": \"2017-12-31T00:00:00\",\n\t\"BenefitCurrency\": \"GBP\",\n\t\"PayPeriod\": \"Monthly\"\n}"},"url":{"raw":"{{url}}/BenefitContributions?$format=json","host":["{{url}}"],"path":["BenefitContributions"],"query":[{"key":"$format","value":"json"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"965","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","name":"Content-Type","description":""},{"key":"DataServiceVersion","value":"3.0;","name":"DataServiceVersion","description":""},{"key":"Date","value":"Wed, 03 Jan 2018 12:25:06 GMT","name":"Date","description":""},{"key":"Location","value":"https://showcase.cezanneondemand.com/cezanneondemand/v2/DataService.svc/BenefitContributions(BenefitCode=guid'e15d03db-2db8-4e32-a2b9-0ae7fdebccb5',EffectiveFrom=datetime'2017-01-01T00%3A00%3A00',PersonCode='26')","name":"Location","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"10FF1C8527C119F7CB4E7C4120B8992C37BA1C8AE5234A9C7292845F5BF38D235F1BB6B2EF2F3728FEB7A384928DF969505638D3077B989C224A35AD3FE86D663EBCCEECF12BB193FF45C084F261369A94F105CDE91537455E5B49C713A694D62D34D7A7888AD9B597BDD3246C7569B4C58B10C159A04F82DF9242075831F7E38CE8DEDD0EEAACDD6CF905FEA56D401CC4DB3789AF82193C78C9A4D6A124EB0BDE5B27B6C1663E44BDFDC68E369CC4FD3AE57BC82F41E15393895D53FCBF45BEF8EE38E5FAC9F414B14AF836AC55E69E37B3A04760F8929B12DD607AB5345FE24508BB570572B35BF0EE26ECE04E899FDAEA1A227AC0432679902DA7737F2B5B8C91E71F7F5A858689E6919028A38ADB","key":"CF_SID"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"-1","key":"CF_SLV"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"/1cGaxGPTBHcD8RBFPNm12FtDYLb3lMpw7XIBqrYFhv/PCOTAE7wxR40Odzc4CqCBqtAOZUr4ANdr0FCU5+yshc/OebxJq3yb+4ZnDyqpu6AwS+bVPF+pa/xxdPnk2Wb9Paf0Dv+yZV/0G7/d6kslgWPqvC6vBmhi0lGAwQ6OUY=","key":"__RequestVerificationToken_L0NlemFubmVPbkRlbWFuZA__"}],"responseTime":"853","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#BenefitContributions/@Element\",\n    \"PersonGUID\": null,\n    \"PersonCode\": \"26\",\n    \"BenefitCode\": \"e15d03db-2db8-4e32-a2b9-0ae7fdebccb5\",\n    \"EffectiveFrom\": \"2017-01-01T00:00:00\",\n    \"EffectiveTo\": \"2017-12-31T00:00:00\",\n    \"BenefitCurrency\": \"GBP\",\n    \"BaseCurrency\": null,\n    \"PayPeriod\": \"Monthly\",\n    \"EmployerAmount\": null,\n    \"EmployerAnnualAmount\": null,\n    \"EmployeeAmount\": null,\n    \"EmployeeAnnualAmount\": null,\n    \"TotalAmount\": null,\n    \"TotalAnnualAmount\": null,\n    \"TaxableAmount\": null,\n    \"TaxableAnnualAmount\": null,\n    \"EmployerBaseAmount\": null,\n    \"EmployerAnnualBaseAmount\": null,\n    \"EmployeeBaseAmount\": null,\n    \"EmployeeAnnualBaseAmount\": null,\n    \"TotalBaseAmount\": null,\n    \"TotalAnnualBaseAmount\": null,\n    \"TaxableBaseAmount\": null,\n    \"TaxableAnnualBaseAmount\": null,\n    \"EmployerPercentageOfSalary\": null,\n    \"EmployeePercentageOfSalary\": null,\n    \"Comments\": null,\n    \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedDate\": \"2017-12-16T09:00:03.8493002Z\",\n    \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\"\n}"}],"_postman_id":"06a8db3e-8f96-c81b-d38e-9ca46453e0b6"},{"name":"Update an Employee's Benefit Contributions record","id":"8bd79675-2b15-45af-b90a-d34bb1426f5f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"Comments\": \"Example Comments\"\n}"},"url":"{{url}}/BenefitContributions(PersonCode='[PersonCode]', BenefitCode='[BenefitCode]', EffectiveFrom=datetime'[EffectiveFrom]')","description":"<p>This request will update an employee's Benefit Contributions record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Request body includes only one field as an example. You can add any extra fields from the table that you require. However, some fields are read-only. \n</li>\n<li>The PersonCode, BenefitCode and EffectiveFrom cannot be updated as they are the the key fields for this table.</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["BenefitContributions(PersonCode='[PersonCode]', BenefitCode='[BenefitCode]', EffectiveFrom=datetime'[EffectiveFrom]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8bd79675-2b15-45af-b90a-d34bb1426f5f"},{"name":"Delete an Employee's Benefit Contributions record","id":"c0441550-b866-b248-e726-80a63551d607","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/BenefitContributions(PersonCode='[PersonCode]', BenefitCode='[BenefitCode]', EffectiveFrom=datetime'[EffectiveFrom]')","description":"<p>This request will delete an employee's Benefit Contributions record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["BenefitContributions(PersonCode='[PersonCode]', BenefitCode='[BenefitCode]', EffectiveFrom=datetime'[EffectiveFrom]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c0441550-b866-b248-e726-80a63551d607"}],"id":"92e06fde-3321-1b02-55a9-8385b44fccd5","description":"<p>This API enables all information from the Contributions tab on the Benefits screen for active and inactive employees to be retrieved and modified. </p>\n<p>The identifying keys for Benefits - Contributions are:</p>\n<ul>\n<li>PersonCode</li>\n<li>BenefitCode</li>\n<li>EffectiveFrom</li>\n</ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PersonGUID</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PersonCode</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>BenefitCode</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>EffectiveFrom</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>EffectiveTo</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>BenefitCurrency</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>BaseCurrency</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PayPeriod</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>EmployerAmount</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>EmployerAnnualAmount</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EmployeeAmount</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>EmployeeAnnualAmount</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TotalAmount</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TotalAnnualAmount</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TaxableAmount</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>TaxableAnnualAmount</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EmployerBaseAmount</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EmployerAnnualBaseAmount</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EmployeeBaseAmount</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EmployeeAnnualBaseAmount</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TotalBaseAmount</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TotalAnnualBaseAmount</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TaxableBaseAmount</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TaxableAnnualBaseAmount</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EmployerPercentageOfSalary</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>EmployeePercentageOfSalary</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Comments</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2> Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"40f1aeb6-da68-4be7-b198-2db98269a75b","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"95dae0bd-7f64-4366-b5b7-b21e9548a7ca","type":"text/javascript","exec":[""]}}],"_postman_id":"92e06fde-3321-1b02-55a9-8385b44fccd5"},{"name":"Benefits - Beneficiaries","item":[{"name":"List of Employee Benefit Beneficiaries","id":"66ef2afa-9411-eb91-076b-c13f1c1d886c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/Beneficiaries?$format=json","description":"<p>This request will return a list of Employee Benefit Beneficiaries from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["Beneficiaries"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"7db87067-9918-7439-3ce8-d62b34d5faf4","name":"List of Employee Benefit Beneficiaries","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/Beneficiaries?$format=json","host":["{{url}}"],"path":["Beneficiaries"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"no-cache","description":""},{"name":"connection","key":"connection","value":"keep-alive","description":""},{"name":"content-length","key":"content-length","value":"582","description":""},{"name":"content-type","key":"content-type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","description":""},{"name":"dataserviceversion","key":"dataserviceversion","value":"3.0;","description":""},{"name":"date","key":"date","value":"Mon, 31 Jul 2017 17:10:47 GMT","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"480","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#Beneficiaries\",\n    \"value\": [\n        {\n            \"BenefitCode\": \"e67d33db-2db8-4e32-a2b9-0ae4fdebccb3\",\n            \"PersonCode\": \"26\",\n            \"Name\": \"Arthur Abrahams\",\n            \"RelationshipToEmployee\": \"Spouse\",\n            \"EffectiveFrom\": \"2012-11-02T00:00:00\",\n            \"EffectiveTo\": \"2999-12-31T00:00:00\",\n            \"PayPeriod\": \"Monthly\",\n            \"Currency\": \"GBP\",\n            \"BenefitShareAmount\": null,\n            \"BenefitSharePercentage\": \"50.00\",\n            \"Comments\": null,\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2015-07-22T14:26:31.61Z\"\n        }\n    ]\n}"}],"_postman_id":"66ef2afa-9411-eb91-076b-c13f1c1d886c"},{"name":"Add an Employee's Benefit Beneficiaries","id":"b7db16e7-13cf-8f8c-ab96-829cf2d6f5fe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"BenefitCode\": \"e15d03db-2db8-4e32-a2b9-0ae7fdebccb5\",\n  \"PersonCode\": \"CEZ44\",\n  \"Name\": \"Mark Abrahams\",\n  \"EffectiveFrom\": \"2017-01-01T00:00:00\",\n  \"EffectiveTo\": \"2017-12-31T00:00:00\",\n  \"PayPeriod\": \"Monthly\",\n  \"Currency\": \"GBP\"\n}"},"url":"{{url}}/Beneficiaries?$format=json","description":"<p>This request will insert a Benefit Beneficiaries record for an employee.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["Beneficiaries"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[],"_postman_id":"b7db16e7-13cf-8f8c-ab96-829cf2d6f5fe"},{"name":"Update an Employee's Benefit Beneficiaries record","id":"1df48b04-f818-4bb6-b832-3e9c9e1f1e59","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"Comments\": \"Example Comments\"\n}"},"url":"{{url}}/Beneficiaries(BenefitCode='[BenefitCode]', Name='[Name]', EffectiveFrom=datetime'[EffectiveFrom]')","description":"<p>This request will update an employee's Benefit Beneficiaries record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Request body includes only one field as an example. You can add any extra fields from the table that you require. However, some fields are read-only. \n</li>\n<li>The BenefitCode, Name and EffectiveFrom cannot be updated as they are the the key fields for this table.</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["Beneficiaries(BenefitCode='[BenefitCode]', Name='[Name]', EffectiveFrom=datetime'[EffectiveFrom]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1df48b04-f818-4bb6-b832-3e9c9e1f1e59"},{"name":"Delete an Employee's Benefit Beneficiaries record","id":"d2ce214b-54a8-7f3e-5c13-78b91511fdf8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/Beneficiaries(BenefitCode='[BenefitCode]', Name='[Name]', EffectiveFrom=datetime'[EffectiveFrom]')","description":"<p>This request will delete an employee's Benefit Beneficiaries record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["Beneficiaries(BenefitCode='[BenefitCode]', Name='[Name]', EffectiveFrom=datetime'[EffectiveFrom]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d2ce214b-54a8-7f3e-5c13-78b91511fdf8"}],"id":"38e83e26-0c22-98cc-ec66-179471afd912","description":"<p>This API enables all information from the Beneficiaries tab on the Benefits screen for active and inactive employees to be retrieved and modified. </p>\n<p>The identifying keys for Benefits - Beneficiaries are:</p>\n<ul>\n<li>BenefitCode</li>\n<li>Name</li>\n<li>EffectiveFrom</li>\n</ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>BenefitCode</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>PersonCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Name</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>RelationshipToEmployee</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>EffectiveFrom</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>EffectiveTo</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>PayPeriod</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>Currency</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>BenefitShareAmount</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>BenefitSharePercentage</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Comments</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2> Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to their and all subordinate records.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"26d147b9-c5b8-4adb-ae16-aedc9d8c79ee","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"7ff89793-9ccb-4a47-9b2d-281b278852d9","type":"text/javascript","exec":[""]}}],"_postman_id":"38e83e26-0c22-98cc-ec66-179471afd912"},{"name":"Compensation","item":[{"name":"List of Compensation Details Records","id":"d796c849-dd79-80c6-a7f9-2a0f1e80f86a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/Compensation?$format=json","description":"<p>This request will return a list of Employee Compensation Details from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["Compensation"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"27265b70-e2be-5e89-2f3e-a52d848cdfab","name":"List of Employee Compensation Details Records","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/Compensation?$format=json","host":["{{url}}"],"path":["Compensation"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"no-cache","description":""},{"name":"content-length","key":"content-length","value":"1719","description":""},{"name":"content-type","key":"content-type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","description":""},{"name":"dataserviceversion","key":"dataserviceversion","value":"3.0;","description":""},{"name":"date","key":"date","value":"Wed, 16 Aug 2017 10:34:21 GMT","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"1064","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#Compensation\",\n    \"value\": [\n        {\n            \"PersonCompGUID\": \"5a33a67b-224e-4807-b9b9-b444a2c81dc0\",\n            \"PersonCode\": \"CEZ01\",\n            \"FullName\": \"Cheryl Abrahams\",\n            \"CompItem\": \"Annual Bonus\",\n            \"CompItemCode\": \"BONUS\",\n            \"EffectiveFrom\": \"2007-01-01T00:00:00\",\n            \"EffectiveTo\": \"2007-12-31T00:00:00\",\n            \"CompensationEmploymentID\": null,\n            \"PaymentCurrency\": \"GBP\",\n            \"BaseCurrency\": \"EUR\",\n            \"PayPeriod\": \"Annual\",\n            \"CompItemType\": \"Bonus\",\n            \"SinglePayment\": 1,\n            \"TargetPercentageAchieved\": \"87.50\",\n            \"ChangeReason\": \"Annual Pay Review\",\n            \"SinglePaymentDate\": \"2008-01-31T00:00:00\",\n            \"NextReviewDate\": null,\n            \"Comments\": null,\n            \"CurrentAmount\": \"17500.00\",\n            \"AnnualAmount\": \"17500.00\",\n            \"ChangeFromPreviousAmount\": null,\n            \"AnnualChangeFromPreviousAmount\": null,\n            \"TargetAmount\": \"20000.00\",\n            \"CurrentBaseAmount\": \"26250.000000\",\n            \"AnnualBaseAmount\": \"26250.000000\",\n            \"ChangeFromPreviousBaseAmount\": null,\n            \"AnnualChangeFromPreviousBaseAmount\": null,\n            \"TargetBaseAmount\": \"30000.000000\",\n            \"CurrentPercentageChange\": null,\n            \"BasePercentageChange\": null,\n            \"InsertUser\": \"tammy.bell@omnicrom.com\",\n            \"LastModifiedDate\": \"2010-09-28T08:49:38.027Z\",\n            \"LastModifiedUser\": \"tammy.bell@omnicrom.com\",\n            \"Percentage\": null,\n            \"BasedOnPersonCompRecordGUID\": null,\n            \"BasedOnEffectiveFrom\": null,\n            \"BasedOnCompItem\": null,\n            \"PreviousPercentage\": null,\n            \"ProRataCurrentAmount\": null,\n            \"ProRataAnnualAmount\": null,\n            \"ProRataBaseCurrentAmount\": null,\n            \"ProRataBaseAmount\": null,\n            \"ProRataBaseTargetAmount\": null,\n            \"ProRataTargetAmount\": null,\n            \"FTERatio\": null,\n            \"ProRataChangeFromPreviousAmount\": null,\n            \"ProRataAnnualChangeFromPreviousAmount\": null,\n            \"ProRataCurrentPercentageChange\": null,\n            \"ProRataBaseChangeFromPreviousAmount\": null,\n            \"ProRataBaseAnnualChangeFromPreviousAmount\": null,\n            \"ProRataBasePercentageChange\": null,\n            \"CurrentFTERatio\": null,\n            \"CurrentGrade\": null\n        }\n    ]\n}"}],"_postman_id":"d796c849-dd79-80c6-a7f9-2a0f1e80f86a"},{"name":"Add an Employee's Compensation Details","id":"c238bb2d-1f4b-560d-a0c0-6d2024e00141","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"PersonCode\": \"26\",\n  \"CompItemCode\": \"BASE\",\n  \"EffectiveFrom\": \"2017-01-06T00:00:00\",\n  \"EffectiveTo\" : \"2017-12-31T00:00:00\",\n  \"PaymentCurrency\": \"GBP\"\n}"},"url":"{{url}}/Compensation?$format=json","description":"<p>This request will insert a Compensation Details record for an employee.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n<li>PaymentCurrency is only mandatory for 'Standard', 'Pro Rata Using FTE Ratio' and 'Percentage Only'.\n</li>\n</ul>","urlObject":{"path":["Compensation"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"64260726-3070-5787-e2ea-02eee9c572a2","name":"Add an Employee's Compensation Details","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"PersonCode\": \"26\",\n\t\"CompItemCode\": \"BASE\",\n\t\"EffectiveFrom\": \"2017-01-06T00:00:00\",\n\t\"EffectiveTo\" : \"2017-12-31T00:00:00\",\n\t\"PaymentCurrency\": \"GBP\"\n}"},"url":{"raw":"{{url}}/Compensation?$format=json","host":["{{url}}"],"path":["Compensation"],"query":[{"key":"$format","value":"json"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"1566","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","name":"Content-Type","description":""},{"key":"DataServiceVersion","value":"3.0;","name":"DataServiceVersion","description":""},{"key":"Date","value":"Wed, 03 Jan 2018 16:11:01 GMT","name":"Date","description":""},{"key":"Location","value":"https://showcase.cezanneondemand.com/cezanneondemand/v2/DataService.svc/Compensation(CompItemCode='BASE',EffectiveFrom=datetime'2017-01-06T00%3A00%3A00',PersonCode='26')","name":"Location","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"10FF1C8527C119F7CB4E7C4120B8992C37BA1C8AE5234A9C7292845F5BF38D235F1BB6B2EF2F3728FEB7A384928DF969505638D3077B989C224A35AD3FE86D663EBCCEECF12BB193FF45C084F261369A94F105CDE91537455E5B49C713A694D62D34D7A7888AD9B597BDD3246C7569B4C58B10C159A04F82DF9242075831F7E38CE8DEDD0EEAACDD6CF905FEA56D401CC4DB3789AF82193C78C9A4D6A124EB0BDE5B27B6C1663E44BDFDC68E369CC4FD3AE57BC82F41E15393895D53FCBF45BEF8EE38E5FAC9F414B14AF836AC55E69E37B3A04760F8929B12DD607AB5345FE24508BB570572B35BF0EE26ECE04E899FDAEA1A227AC0432679902DA7737F2B5B8C91E71F7F5A858689E6919028A38ADB","key":"CF_SID"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"-1","key":"CF_SLV"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"/1cGaxGPTBHcD8RBFPNm12FtDYLb3lMpw7XIBqrYFhv/PCOTAE7wxR40Odzc4CqCBqtAOZUr4ANdr0FCU5+yshc/OebxJq3yb+4ZnDyqpu6AwS+bVPF+pa/xxdPnk2Wb9Paf0Dv+yZV/0G7/d6kslgWPqvC6vBmhi0lGAwQ6OUY=","key":"__RequestVerificationToken_L0NlemFubmVPbkRlbWFuZA__"}],"responseTime":"491","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#Compensation/@Element\",\n    \"PersonCompGUID\": null,\n    \"PersonCode\": \"26\",\n    \"FullName\": null,\n    \"CompItem\": null,\n    \"CompItemCode\": \"BASE\",\n    \"EffectiveFrom\": \"2017-01-06T00:00:00\",\n    \"EffectiveTo\": \"2017-12-31T00:00:00\",\n    \"CompensationEmploymentID\": null,\n    \"PaymentCurrency\": \"GBP\",\n    \"BaseCurrency\": null,\n    \"PayPeriod\": null,\n    \"CompItemType\": null,\n    \"SinglePayment\": 0,\n    \"TargetPercentageAchieved\": null,\n    \"ChangeReason\": null,\n    \"SinglePaymentDate\": null,\n    \"NextReviewDate\": null,\n    \"Comments\": null,\n    \"CurrentAmount\": null,\n    \"AnnualAmount\": null,\n    \"ChangeFromPreviousAmount\": null,\n    \"AnnualChangeFromPreviousAmount\": null,\n    \"TargetAmount\": null,\n    \"CurrentBaseAmount\": null,\n    \"AnnualBaseAmount\": null,\n    \"ChangeFromPreviousBaseAmount\": null,\n    \"AnnualChangeFromPreviousBaseAmount\": null,\n    \"TargetBaseAmount\": null,\n    \"CurrentPercentageChange\": null,\n    \"BasePercentageChange\": null,\n    \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedDate\": \"2017-12-16T09:00:03.5836775Z\",\n    \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"Percentage\": null,\n    \"BasedOnPersonCompRecordGUID\": null,\n    \"BasedOnEffectiveFrom\": null,\n    \"BasedOnCompItem\": null,\n    \"PreviousPercentage\": null,\n    \"ProRataCurrentAmount\": null,\n    \"ProRataAnnualAmount\": null,\n    \"ProRataBaseCurrentAmount\": null,\n    \"ProRataBaseAmount\": null,\n    \"ProRataBaseTargetAmount\": null,\n    \"ProRataTargetAmount\": null,\n    \"FTERatio\": null,\n    \"ProRataChangeFromPreviousAmount\": null,\n    \"ProRataAnnualChangeFromPreviousAmount\": null,\n    \"ProRataCurrentPercentageChange\": null,\n    \"ProRataBaseChangeFromPreviousAmount\": null,\n    \"ProRataBaseAnnualChangeFromPreviousAmount\": null,\n    \"ProRataBasePercentageChange\": null\n}"}],"_postman_id":"c238bb2d-1f4b-560d-a0c0-6d2024e00141"},{"name":"Update an Employee's Compensation Details","id":"cd3afcd4-7a4c-4bc8-bd29-83ce40bbf816","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"Comments\": \"Example Comments\"\n}"},"url":"{{url}}/Compensation(PersonCode='[PersonCode]', EffectiveFrom=datetime'[EffectiveFrom]', CompItemCode='[CompItemCode]')","description":"<p>This request will update an employee's Compensation Details record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Request body includes only one field as an example. You can add any extra fields from the table that you require. However, some fields are read-only. \n</li>\n<li>The PersonCode, EffectiveFrom and CompItemCode cannot be updated as they are the the key fields for this table.</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["Compensation(PersonCode='[PersonCode]', EffectiveFrom=datetime'[EffectiveFrom]', CompItemCode='[CompItemCode]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"cd3afcd4-7a4c-4bc8-bd29-83ce40bbf816"},{"name":"Delete an Employee's Compensation Details","id":"48b3e669-f0c1-9951-0f9f-6bd36072ac80","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/Compensation(PersonCode='[PersonCode]', EffectiveFrom=datetime'[EffectiveFrom]', CompItemCode='[CompItemCode]')","description":"<p>This request will delete an employee's Compensation Details record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["Compensation(PersonCode='[PersonCode]', EffectiveFrom=datetime'[EffectiveFrom]', CompItemCode='[CompItemCode]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"48b3e669-f0c1-9951-0f9f-6bd36072ac80"}],"id":"7becd6ed-bed8-a085-3d3b-76616e99c74d","description":"<p>This API enables all information from the All Comp Details screen for active and inactive employees to be retrieved and modified.</p>\n<p>The identifying keys for Compensation are:</p>\n<ul><li><p>PersonCode</p></li><li><p>EffectiveFrom</p></li><li><p>CompItemCode</p></li></ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PersonCompGUID</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PersonCode</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>FullName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>CompItem</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>CompItemCode</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>EffectiveFrom</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>EffectiveTo</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>CompensationEmploymentID</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>PaymentCurrency</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>BaseCurrency</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PayPeriod</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>CompItemType</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>SinglePayment</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TargetPercentageAchieved</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>ChangeReason</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>SinglePaymentDate</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>NextReviewDate</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Comments</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>CurrentAmount</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>AnnualAmount</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ChangeFromPreviousAmount</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AnnualChangeFromPreviousAmount</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TargetAmount</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>CurrentBaseAmount</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AnnualBaseAmount</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ChangeFromPreviousBaseAmount</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AnnualChangeFromPreviousBaseAmount</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TargetBaseAmount</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>CurrentPercentageChange</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>BasePercentageChange</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Percentage</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>BasedOnPersonCompRecordGUID</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>BasedOnEffectiveFrom</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>BasedOnCompItem</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PreviousPercentage</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ProRataCurrentAmount</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ProRataAnnualAmount</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>ProRataBaseCurrentAmount</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ProRataBaseAmount</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ProRataBaseTargetAmount</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ProRataTargetAmount</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>FTERatio</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ProRataChangeFromPreviousAmount</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ProRataAnnualChangeFromPreviousAmount</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ProRataCurrentPercentageChange</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ProRataBaseChangeFromPreviousAmount</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ProRataBaseAnnualChangeFromPreviousAmount</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ProRataBasePercentageChange</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>CurrentFTERatio</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>CurrentGrade</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to their and all subordinate records.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to their own record.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"070eb073-c8d2-4719-845f-c49ab34589ca","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"a2c7f28d-6843-4dca-a4d6-39ab0eb17588","type":"text/javascript","exec":[""]}}],"_postman_id":"7becd6ed-bed8-a085-3d3b-76616e99c74d"},{"name":"Compensation Proposals (Read-Only)","item":[{"name":"List of Compensation Proposal Records","id":"dd6d0c85-f580-e45d-8a1d-7d635b00e406","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/CompensationProposals?$format=json","description":"<p>This request will return a list of Compensation Proposals from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["CompensationProposals"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"ac396385-e5a8-f3a9-c42d-114361d58330","name":"List of Compensation Proposals","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/CompensationProposals?$format=json","host":["{{url}}"],"path":["CompensationProposals"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"no-cache","description":""},{"name":"connection","key":"connection","value":"keep-alive","description":""},{"name":"content-length","key":"content-length","value":"1167","description":""},{"name":"content-type","key":"content-type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","description":""},{"name":"dataserviceversion","key":"dataserviceversion","value":"3.0;","description":""},{"name":"date","key":"date","value":"Mon, 31 Jul 2017 11:19:49 GMT","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"551","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#CompensationProposals\",\n    \"value\": [\n        {\n            \"PersonCode\": \"26\",\n            \"FullName\": \"Cheryl Abrahams\",\n            \"CompItemDescription\": \"Annual Allowances\",\n            \"EffectiveFrom\": \"2016-01-01T00:00:00\",\n            \"EffectiveTo\": \"2999-12-31T00:00:00\",\n            \"EmploymentID\": null,\n            \"CurrencyCode\": \"AZN\",\n            \"BaseCurrencyCode\": \"USD\",\n            \"PayPeriodDescription\": \"Year\",\n            \"SinglePayment\": 0,\n            \"ReviewDate\": \"2016-01-07T00:00:00\",\n            \"ChangeFromPreviousPercentageIncrease\": null,\n            \"ChangeReasonDescription\": null,\n            \"ProposalStatusDescription\": \"2222\",\n            \"CurrentOnReviewDateCurrencyCode\": \"AZN\",\n            \"CurrentActualForPeriod\": null,\n            \"CurrentAnnual\": null,\n            \"BaseCurrentActualForPeriod\": null,\n            \"BaseCurrentAnnual\": null,\n            \"NewActualForPeriodAmount\": null,\n            \"NewAnnualAmount\": null,\n            \"ChangeFromPreviousAnnual\": null,\n            \"ChangeFromPreviousForPeriod\": null,\n            \"NewTargetForPeriod\": null,\n            \"BaseNewActualForPeriodAmount\": null,\n            \"BaseNewTargetAnnual\": null,\n            \"BaseChangeFromPreviousForPeriod\": null,\n            \"BaseChangeFromPreviousAnnual\": null,\n            \"BaseNewTargetForPeriod\": null,\n            \"Comments\": null,\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2016-01-06T15:39:12.31Z\"\n        }\n    ]\n}"}],"_postman_id":"dd6d0c85-f580-e45d-8a1d-7d635b00e406"}],"id":"cea1ea75-91c2-5809-f6f1-7e7e6b0f2f6f","description":"<p>This API enables all information from the Comp Proposals screen for active and inactive employees to be retrieved.</p>\n<p>The identifying keys for Compensation Proposals are:</p>\n<ul>\n<li>PersonCode</li>\n<li>CompItemDescription</li>\n<li>EffectiveFrom</li>\n</ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PersonCode</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>FullName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>CompItemDescription</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>EffectiveFrom</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>EffectiveTo</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EmploymentID</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>CurrencyCode</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>BaseCurrencyCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PayPeriodDescription</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>SinglePayment</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>ReviewDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ChangeFromPreviousPercentageIncrease</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ChangeReasonDescription</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ProposalStatusDescription</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>CurrentOnReviewDateCurrencyCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>CurrentActualForPeriod</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>CurrentAnnual</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>BaseCurrentActualForPeriod</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>BaseCurrentAnnual</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>NewActualForPeriodAmount</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>NewAnnualAmount</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ChangeFromPreviousAnnual</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ChangeFromPreviousForPeriod</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>NewTargetForPeriod</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>BaseNewActualForPeriodAmount</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>BaseNewTargetAnnual</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>BaseChangeFromPreviousForPeriod</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>BaseChangeFromPreviousAnnual</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>BaseNewTargetForPeriod</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Comments</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2> Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has read-only access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to their and all subordinate records.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"f5f2f4d9-af73-4b6d-bba2-39c2154cdcff","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"ff876777-8a5b-4045-b815-2bc0088d775a","type":"text/javascript","exec":[""]}}],"_postman_id":"cea1ea75-91c2-5809-f6f1-7e7e6b0f2f6f"},{"name":"Pension Auto Enrolment","item":[{"name":"List of all Employee Pension Auto Enrolment Status","id":"123c7ac4-3d4d-4b07-9949-d18e5d313e8b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[],"url":"{{url}}/PensionAutoEnrolment?$format=json","description":"<p>This request will return a list of Employee Pension Auto Enrolment Status from the system.</p>\n<p><strong>Notes:</strong></p>\n<ul><li><p>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</p></li><li><p>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</p></li><li><p>For this call, if you have an active subscription to the Payroll Module, you need to use at least version 7 (v7) of the API.</p></li><li><p>For this call, if you don't have an active subscription to the Payroll Module, you need to use version 6 (v6) or earlier of the API.</p></li></ul>\n\n<p>Available Parameters:</p>\n<ul><li><p>$filter</p></li><li><p>$top</p></li><li><p>$orderby</p></li><li><p>$select</p></li><li><p>$skip</p></li><li><p>$inlinecount</p></li></ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["PensionAutoEnrolment"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"3544bf87-f62e-4a78-a9a4-bdedaffea574","name":"List of all Employee Pension Auto Enrolment Status","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{url}}/PensionAutoEnrolment?$format=json","host":["{{url}}"],"path":["PensionAutoEnrolment"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Content-Length","value":"379","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","description":"The mime type of this content"},{"key":"DataServiceVersion","value":"3.0;","description":"Custom header"},{"key":"Date","value":"Fri, 01 Jun 2018 17:27:58 GMT","description":"The date and time that the message was sent"},{"key":"X-Content-Type-Options","value":"nosniff","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#PensionAutoEnrolment\",\n    \"value\": [\n        {\n            \"PersonCode\": \"CEZ01\",\n            \"FullName\": \"Cheryl Abrahams\",\n            \"StatusDate\": \"2018-05-16T00:00:00\",\n            \"StatusEndDate\": \"2999-12-31T00:00:00\",\n            \"Status\": \"Automatic\",\n            \"Comments\": null,\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2018-06-01T17:26:22.117Z\"\n            \"UKWorker\": \"Yes\",\n            \"DaysToDeferAssessment\": null,\n            \"DeferTimeUnit\": null,\n            \"AeExclusionReason\": null,\n            \"AePostponementLetterSent\": null,\n            \"Exempt\": 0,\n            \"EmploymentIDRelated\": \"123\",\n            \"TranslatedCompanyNameRelated\": \"Omnicrom UK\",\n            \"PayrollCode\": \"123\"\n        }\n    ]\n}"}],"_postman_id":"123c7ac4-3d4d-4b07-9949-d18e5d313e8b"},{"name":"Add an Employee's Pension Auto Enrolment Status","id":"9697bff6-0081-4156-b69a-4335070711dc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer Your-API-Token"}],"body":{"mode":"raw","raw":"{\n\t\"PersonCode\": \"CEZ01\",\n\t\"StatusDate\": \"2018-05-16\",\n\t\"Status\": \"Auto-enrolled\"\n\t\n}"},"url":"{{url}}/PensionAutoEnrolment?$format=json","description":"<p>This request will insert Pension Auto Enrolment record for an employee.</p>\n<p><strong>Notes:</strong></p>\n<ul><li><p>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require.<br /></p></li><li><p>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</p></li><li><p>For this call, if you have an active subscription to the Payroll Module, you need to use at least version 7 (v7) of the API.</p></li><li><p>For this call, if you don't have an active subscription to the Payroll Module, you need to use version 6 (v6) or earlier of the API.</p></li></ul>","urlObject":{"path":["PensionAutoEnrolment"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"2c574e42-fedb-4cee-854a-f4d384acd60b","name":"Add an Employee's Pension Auto Enrolment Status","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"Authorization","value":"Bearer Your-API-Token","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"PersonCode\": \"CEZ01\",\n\t\"StatusDate\": \"2018-05-16\",\n\t\"Status\": \"Auto-enrolled\"\n\t\n}"},"url":{"raw":"{{url}}/PensionAutoEnrolment?$format=json","host":["{{url}}"],"path":["PensionAutoEnrolment"],"query":[{"key":"$format","value":"json"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Content-Length","value":"367","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"DataServiceVersion","value":"3.0;","name":"DataServiceVersion","description":"Custom header"},{"key":"Date","value":"Fri, 01 Jun 2018 17:26:21 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Location","value":"https://qa.cezanneondemand.com/COD_UPGRADE/v2/DataService.svc/PensionAutoEnrolment(PersonCode='CEZ01',StatusDate=datetime'2018-05-16T00%3A00%3A00')","name":"Location","description":"Used in redirection, or when a new resource has been created."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#PensionAutoEnrolment/@Element\",\n    \"PersonCode\": \"CEZ01\",\n    \"FullName\": null,\n    \"StatusDate\": \"2018-05-16T00:00:00\",\n    \"StatusEndDate\": \"2999-12-31T00:00:00\",\n    \"Status\": \"Auto-enrolled\",\n    \"Comments\": null,\n    \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedDate\": \"2018-06-01T15:13:30.3441456Z\"\n}"}],"_postman_id":"9697bff6-0081-4156-b69a-4335070711dc"},{"name":"Update an Employee's Pension Auto Enrolment Status","id":"c904c7f8-426e-4aed-809d-825a08f78c87","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer Your-API-Token"}],"body":{"mode":"raw","raw":"{\n\t\"Comments\": \"Example Comments\"\n}"},"url":"{{url}}/PensionAutoEnrolment(PersonCode='[PersonCode]', StatusDate=datetime'[StatusDate]', EmploymentIDRelated='[EmploymentIDRelated]')","description":"<p>This request will update an employee's Pension Auto Enrolment record.</p>\n<p><strong>Notes:</strong></p>\n<ul><li><p>The Request body includes only one field as an example. You can add any extra fields from the table that you require. However, some fields are read-only.<br /></p></li><li><p>The PersonCode, EmploymentIDRelated and StatusDate cannot be updated as they are the the key fields for this table.</p></li><li><p>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</p></li><li><p>For this call, if you have an active subscription to the Payroll Module, you need to use at least version 7 (v7) of the API.</p></li><li><p>For this call, if you don't have an active subscription to the Payroll Module, you need to use version 6 (v6) or earlier of the API.</p></li></ul>","urlObject":{"path":["PensionAutoEnrolment(PersonCode='[PersonCode]', StatusDate=datetime'[StatusDate]', EmploymentIDRelated='[EmploymentIDRelated]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c904c7f8-426e-4aed-809d-825a08f78c87"},{"name":"Delete an Employee's Pension Auto Enrolment Status","id":"5a51c966-20b8-4aee-9183-987640ef1e0d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer Your-API-Token"}],"body":{"mode":"formdata","formdata":[]},"url":"{{url}}/PensionAutoEnrolment(PersonCode='[PersonCode]', StatusDate=datetime'[StatusDate]', EmploymentIDRelated='[EmploymentIDRelated]')","description":"<p>This request will delete an employee's Pension Auto Enrolment record.</p>\n<p><strong>Notes:</strong></p>\n<ul><li><p>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.<br /></p></li>\n<li><p>For this call, if you have an active subscription to the Payroll Module, you need to use at least version 7 (v7) of the API.</p></li><li><p>For this call, if you don't have an active subscription to the Payroll Module, you need to use version 6 (v6) or earlier of the API.</p></li></ul>","urlObject":{"path":["PensionAutoEnrolment(PersonCode='[PersonCode]', StatusDate=datetime'[StatusDate]', EmploymentIDRelated='[EmploymentIDRelated]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5a51c966-20b8-4aee-9183-987640ef1e0d"}],"id":"ed9c0b46-97ee-4285-8db7-0bf55c8ce52f","description":"<p>This API enables all information from the Employee Pension Auto Enrolment screen for active and inactive employees to be retrieved and modified.</p>\n<p>The identifying keys for Pension Auto Enrolment are:</p>\n<ul><li><div>PersonCode</div></li><li><div>StatusDate</div></li><li><div>EmploymentIDRelated (v7 onwards)</div></li></ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PersonCode</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>FullName</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>StatusDate</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>StatusEndDate</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Status</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Comments</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>UKWorker</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>DaysToDeferAssessment</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>DeferTimeUnit</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>AeExclusionReason</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>AePostponementLetterSent</td>\n<td></td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>Exempt</td>\n<td></td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>EmploymentIDRelated</td>\n<td>Key.</td>\n<td></td>\n</tr>\n<tr>\n<td>TranslatedCompanyNameRelated</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>PayrollCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to their and all subordinate records.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to their own record.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"3725d01e-4fd2-4724-9ea6-b198c260ff7b","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"7ce9baef-1991-4937-ad3e-f833e84c6a79","type":"text/javascript","exec":[""]}}],"_postman_id":"ed9c0b46-97ee-4285-8db7-0bf55c8ce52f"}],"id":"ed03ce97-6e60-0b2a-078d-c656a3a5d7cb","_postman_id":"ed03ce97-6e60-0b2a-078d-c656a3a5d7cb","description":""},{"name":"Company Cars","item":[{"name":"Catalogued Company Cars","item":[{"name":"Catalogued Cars","item":[{"name":"List of Catalogued Company Cars","id":"e7e963b1-487f-8d76-8a6c-b80c9f6ce5ab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/CataloguedCompanyCars?$format=json","description":"<p>This request will return a list of Catalogued Company Cars from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["CataloguedCompanyCars"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"30023e08-2e0f-76e5-11dd-444f14380ac2","name":"List of Catalogued Company Cars","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/CataloguedCompanyCars?$format=json","host":["{{url}}"],"path":["CataloguedCompanyCars"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"no-cache","description":""},{"name":"connection","key":"connection","value":"keep-alive","description":""},{"name":"content-length","key":"content-length","value":"751","description":""},{"name":"content-type","key":"content-type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","description":""},{"name":"dataserviceversion","key":"dataserviceversion","value":"3.0;","description":""},{"name":"date","key":"date","value":"Mon, 31 Jul 2017 16:39:02 GMT","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"383","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#CataloguedCompanyCars\",\n    \"value\": [\n        {\n            \"ReferenceKey\": \"12345\",\n            \"RegistrationNumber\": null,\n            \"Make\": null,\n            \"Model\": null,\n            \"VehicleType\": null,\n            \"EngineSize\": null,\n            \"FuelType\": null,\n            \"VehicleValue\": null,\n            \"BaseVehicleValue\": null,\n            \"VehicleValueCurrencyCode\": null,\n            \"BaseCurrencyCode\": \"USD\",\n            \"P11DValue\": null,\n            \"DateFirstRegistered\": null,\n            \"CO2EmissionsLevel\": null,\n            \"EffectiveFrom\": \"2017-07-31T00:00:00\",\n            \"EffectiveTo\": \"2999-12-31T00:00:00\",\n            \"LeasingCompany\": null,\n            \"LeasePerMonth\": null,\n            \"BaseLeasePerMonth\": null,\n            \"LeasePerMonthCurrencyCode\": null,\n            \"Comments\": null,\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2017-07-31T16:38:57.28Z\"\n        }\n    ]\n}"}],"_postman_id":"e7e963b1-487f-8d76-8a6c-b80c9f6ce5ab"},{"name":"Add a Catalogued Company Car","id":"33c07498-4da4-5f16-266b-c9c5ac54341a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"ReferenceKey\": \"Car001\",\n  \"EffectiveFrom\": \"2017-01-01T00:00:00\",\n  \"EffectiveTo\" : \"2017-12-31T00:00:00\"\n}"},"url":"{{url}}/CataloguedCompanyCars?$format=json","description":"<p>This request will insert a Catalogued Company Car record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["CataloguedCompanyCars"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"cfcf7afb-2112-ee24-62fc-33be243cd608","name":"Add a Catalogued Company Car","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"ReferenceKey\": \"Car001\",\n\t\"EffectiveFrom\": \"2017-01-01T00:00:00\",\n\t\"EffectiveTo\" : \"2017-12-31T00:00:00\"\n}"},"url":{"raw":"{{url}}/CataloguedCompanyCars?$format=json","host":["{{url}}"],"path":["CataloguedCompanyCars"],"query":[{"key":"$format","value":"json"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"743","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","name":"Content-Type","description":""},{"key":"DataServiceVersion","value":"3.0;","name":"DataServiceVersion","description":""},{"key":"Date","value":"Thu, 04 Jan 2018 17:29:10 GMT","name":"Date","description":""},{"key":"Location","value":"https://showcase.cezanneondemand.com/cezanneondemand/v2/DataService.svc/CataloguedCompanyCars('Car001')","name":"Location","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"10FF1C8527C119F7CB4E7C4120B8992C37BA1C8AE5234A9C7292845F5BF38D235F1BB6B2EF2F3728FEB7A384928DF969505638D3077B989C224A35AD3FE86D663EBCCEECF12BB193FF45C084F261369A94F105CDE91537455E5B49C713A694D62D34D7A7888AD9B597BDD3246C7569B4C58B10C159A04F82DF9242075831F7E38CE8DEDD0EEAACDD6CF905FEA56D401CC4DB3789AF82193C78C9A4D6A124EB0BDE5B27B6C1663E44BDFDC68E369CC4FD3AE57BC82F41E15393895D53FCBF45BEF8EE38E5FAC9F414B14AF836AC55E69E37B3A04760F8929B12DD607AB5345FE24508BB570572B35BF0EE26ECE04E899FDAEA1A227AC0432679902DA7737F2B5B8C91E71F7F5A858689E6919028A38ADB","key":"CF_SID"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"-1","key":"CF_SLV"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"/1cGaxGPTBHcD8RBFPNm12FtDYLb3lMpw7XIBqrYFhv/PCOTAE7wxR40Odzc4CqCBqtAOZUr4ANdr0FCU5+yshc/OebxJq3yb+4ZnDyqpu6AwS+bVPF+pa/xxdPnk2Wb9Paf0Dv+yZV/0G7/d6kslgWPqvC6vBmhi0lGAwQ6OUY=","key":"__RequestVerificationToken_L0NlemFubmVPbkRlbWFuZA__"}],"responseTime":"615","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#CataloguedCompanyCars/@Element\",\n    \"ReferenceKey\": \"Car001\",\n    \"RegistrationNumber\": null,\n    \"Make\": null,\n    \"Model\": null,\n    \"VehicleType\": null,\n    \"EngineSize\": null,\n    \"FuelType\": null,\n    \"VehicleValue\": null,\n    \"BaseVehicleValue\": null,\n    \"VehicleValueCurrencyCode\": null,\n    \"BaseCurrencyCode\": null,\n    \"P11DValue\": null,\n    \"DateFirstRegistered\": null,\n    \"CO2EmissionsLevel\": null,\n    \"EffectiveFrom\": \"2017-01-01T00:00:00\",\n    \"EffectiveTo\": \"2017-12-31T00:00:00\",\n    \"LeasingCompany\": null,\n    \"LeasePerMonth\": null,\n    \"BaseLeasePerMonth\": null,\n    \"LeasePerMonthCurrencyCode\": null,\n    \"Comments\": null,\n    \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedDate\": \"2017-12-16T09:00:05.0055075Z\"\n}"}],"_postman_id":"33c07498-4da4-5f16-266b-c9c5ac54341a"},{"name":"Update a Catalogued Company Car","id":"d7f958ec-be09-4cd8-9a1e-94191afa414b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"Comments\": \"Example Comments\"\n}"},"url":"{{url}}/CataloguedCompanyCars(ReferenceKey='[ReferenceKey]')","description":"<p>This request will update a Catalogued Company Car record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Request body includes only one field as an example. You can add any extra fields from the table that you require. However, some fields are read-only. \n</li>\n<li>The ReferenceKey cannot be updated as it is the the key field for this table.</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["CataloguedCompanyCars(ReferenceKey='[ReferenceKey]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d7f958ec-be09-4cd8-9a1e-94191afa414b"},{"name":"Delete a Catalogued Company Car","id":"dd6dc5d9-a249-c5b5-1737-ec48abfcba54","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/CataloguedCompanyCars(ReferenceKey='[ReferenceKey]')","description":"<p>This request will delete a Catalogued Company Car record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["CataloguedCompanyCars(ReferenceKey='[ReferenceKey]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"dd6dc5d9-a249-c5b5-1737-ec48abfcba54"}],"id":"fc651141-c8bd-36db-70d7-fef49d13c17e","description":"<p>This API enables information from the Catalogued Company Car Details screen to be retrieved and modified. </p>\n<p>The identifying key for Company Cars - Catalouged Company Cars is:</p>\n<ul>\n<li>ReferenceKey</li>\n</ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ReferenceKey</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>RegistrationNumber</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Make</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Model</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>VehicleType</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>EngineSize</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>FuelType</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>VehicleValue</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>BaseVehicleValue</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>VehicleValueCurrencyCode</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>BaseCurrencyCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>P11DValue</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>DateFirstRegistered</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>CO2EmissionsLevel</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>EffectiveFrom</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>EffectiveTo</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>LeasingCompany</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>LeasePerMonth</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>BaseLeasePerMonth</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LeasePerMonthCurrencyCode</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Comments</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2> Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has read-only access to all catalogued cars.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to all catalogued cars.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to all catalogued cars.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"19bc0f60-5ff7-4129-9e6a-73902f95df49","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"2deac76f-4f5e-4455-8abd-bae2616f9765","type":"text/javascript","exec":[""]}}],"_postman_id":"fc651141-c8bd-36db-70d7-fef49d13c17e"},{"name":"Person Assignment","item":[{"name":"List of Catalogued Company Cars Employee Assignment","id":"20958201-ec0a-3c46-aa08-ff0f3ab42fca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/CataloguedCarAssignment?$format=json","description":"<p>This request will return a list of Catalogued Cars Employee Assignments from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["CataloguedCarAssignment"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"a13c718e-995c-ac48-6399-e7b1651409ff","name":"List of Catalogued Company Cars Employee Assignment","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/CataloguedCarAssignment?$format=json","host":["{{url}}"],"path":["CataloguedCarAssignment"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"no-cache","description":""},{"name":"connection","key":"connection","value":"keep-alive","description":""},{"name":"content-length","key":"content-length","value":"814","description":""},{"name":"content-type","key":"content-type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","description":""},{"name":"dataserviceversion","key":"dataserviceversion","value":"3.0;","description":""},{"name":"date","key":"date","value":"Mon, 31 Jul 2017 16:44:30 GMT","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"508","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#CataloguedCarAssignment\",\n    \"value\": [\n        {\n            \"PersonCompanyCarGUID\": \"6b68d3a1-8800-4b8d-a130-2a4c8b4a5fca\",\n            \"PersonCode\": \"71\",\n            \"FullName\": \"Curtis Alexander\",\n            \"EffectiveFrom\": \"2017-07-31T00:00:00\",\n            \"EffectiveTo\": \"2999-12-31T00:00:00\",\n            \"CarOwnershipTypeCode\": \"CAT\",\n            \"ReferenceKey\": \"12345\",\n            \"RegistrationNumber\": null,\n            \"Make\": null,\n            \"Model\": null,\n            \"VehicleType\": null,\n            \"EngineSize\": null,\n            \"FuelType\": null,\n            \"BaseCurrencyCode\": \"USD\",\n            \"FuelForPrivateUse\": 0,\n            \"EmployeeContribution\": null,\n            \"BaseEmployeeContribution\": null,\n            \"EmployeeContributionCurrencyCode\": null,\n            \"PersonalUsePercent\": null,\n            \"OtherDrivers\": null,\n            \"Comments\": null,\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2017-07-31T16:43:56.04Z\",\n            \"FirstRegistered\": null\n        }\n    ]\n}"}],"_postman_id":"20958201-ec0a-3c46-aa08-ff0f3ab42fca"},{"name":"Add a Catalogued Company Cars Employee Assignment","id":"459a7b1c-6eae-8168-502c-4c2e5866827e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"PersonCompanyCarGUID\": \"00000000-0000-0000-0000-000000000000\",\n  \"PersonCode\": \"26\",\n  \"EffectiveFrom\": \"2017-01-01T00:00:00\",\n  \"EffectiveTo\": \"2017-12-31T00:00:00\",\n  \"CarOwnershipTypeCode\": \"CAT\",\n  \"ReferenceKey\": \"Car001\"\n}"},"url":"{{url}}/CataloguedCarAssignment?$format=json","description":"<p>This request will insert an Employee Assignment record for a Catalogued Company Car.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n<li>To add a new Person Assignment for a Company Car, you need to enter a unique PersonCompanyCarGUID for each new record in the following format: '12345678-1234-1234-1234-123456789101'\n</li>\n</ul>","urlObject":{"path":["CataloguedCarAssignment"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"fbac1c7c-6ded-7487-5925-3aebe1f71f61","name":"Add a Catalogued Company Cars Employee Assignment","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"PersonCompanyCarGUID\": \"00000000-0000-0000-0000-000000000000\",\n\t\"PersonCode\": \"26\",\n\t\"EffectiveFrom\": \"2017-01-01T00:00:00\",\n\t\"EffectiveTo\": \"2017-12-31T00:00:00\",\n\t\"CarOwnershipTypeCode\": \"CAT\",\n\t\"ReferenceKey\": \"Car001\"\n}"},"url":{"raw":"{{url}}/CataloguedCarAssignment?$format=json","host":["{{url}}"],"path":["CataloguedCarAssignment"],"query":[{"key":"$format","value":"json"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"792","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","name":"Content-Type","description":""},{"key":"DataServiceVersion","value":"3.0;","name":"DataServiceVersion","description":""},{"key":"Date","value":"Mon, 08 Jan 2018 14:33:49 GMT","name":"Date","description":""},{"key":"Location","value":"https://showcase.cezanneondemand.com/cezanneondemand/v2/DataService.svc/CataloguedCarAssignment(PersonCode='26',PersonCompanyCarGUID=guid'00000000-0000-0000-0000-000000000000')","name":"Location","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"10FF1C8527C119F7CB4E7C4120B8992C37BA1C8AE5234A9C7292845F5BF38D235F1BB6B2EF2F3728FEB7A384928DF969505638D3077B989C224A35AD3FE86D663EBCCEECF12BB193FF45C084F261369A94F105CDE91537455E5B49C713A694D62D34D7A7888AD9B597BDD3246C7569B4C58B10C159A04F82DF9242075831F7E38CE8DEDD0EEAACDD6CF905FEA56D401CC4DB3789AF82193C78C9A4D6A124EB0BDE5B27B6C1663E44BDFDC68E369CC4FD3AE57BC82F41E15393895D53FCBF45BEF8EE38E5FAC9F414B14AF836AC55E69E37B3A04760F8929B12DD607AB5345FE24508BB570572B35BF0EE26ECE04E899FDAEA1A227AC0432679902DA7737F2B5B8C91E71F7F5A858689E6919028A38ADB","key":"CF_SID"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"-1","key":"CF_SLV"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"/1cGaxGPTBHcD8RBFPNm12FtDYLb3lMpw7XIBqrYFhv/PCOTAE7wxR40Odzc4CqCBqtAOZUr4ANdr0FCU5+yshc/OebxJq3yb+4ZnDyqpu6AwS+bVPF+pa/xxdPnk2Wb9Paf0Dv+yZV/0G7/d6kslgWPqvC6vBmhi0lGAwQ6OUY=","key":"__RequestVerificationToken_L0NlemFubmVPbkRlbWFuZA__"}],"responseTime":"467","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#CataloguedCarAssignment/@Element\",\n    \"PersonCompanyCarGUID\": \"45675457-2345-7452-9567-2243489302434\",\n    \"PersonCode\": \"26\",\n    \"FullName\": null,\n    \"EffectiveFrom\": \"2017-01-01T00:00:00\",\n    \"EffectiveTo\": \"2017-12-31T00:00:00\",\n    \"CarOwnershipTypeCode\": \"CAT\",\n    \"ReferenceKey\": \"Car001\",\n    \"RegistrationNumber\": null,\n    \"Make\": null,\n    \"Model\": null,\n    \"VehicleType\": null,\n    \"EngineSize\": null,\n    \"FuelType\": null,\n    \"BaseCurrencyCode\": null,\n    \"FuelForPrivateUse\": 0,\n    \"EmployeeContribution\": null,\n    \"BaseEmployeeContribution\": null,\n    \"EmployeeContributionCurrencyCode\": null,\n    \"PersonalUsePercent\": null,\n    \"OtherDrivers\": null,\n    \"Comments\": null,\n    \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedDate\": \"2017-12-16T09:00:05.1305286Z\"\n}"}],"_postman_id":"459a7b1c-6eae-8168-502c-4c2e5866827e"},{"name":"Update a Catalogued Company Cars Employee Assignment","id":"66c79484-bd8d-4894-aeba-49a77a3bb1f8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"Comments\": \"Example Comments\"\n}"},"url":"{{url}}/CataloguedCarAssignment(PersonCompanyCarGUID=guid'[PersonCompanyCarGUID]', PersonCode='[PersonCode]')","description":"<p>This request will update a Catalogued Company Car's Employee Assignment record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Request body includes only one field as an example. You can add any extra fields from the table that you require. However, some fields are read-only. \n</li>\n<li>The PersonCompanyCarGUID and PersonCode cannot be updated as they are the the key fields for this table.</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["CataloguedCarAssignment(PersonCompanyCarGUID=guid'[PersonCompanyCarGUID]', PersonCode='[PersonCode]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"66c79484-bd8d-4894-aeba-49a77a3bb1f8"},{"name":"Delete a Catalogued Company Cars Employee Assignment","id":"fa7cdfc4-4a2d-facf-92e1-24641e56145a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/CataloguedCarAssignment(PersonCompanyCarGUID=guid'[PersonCompanyCarGUID]', PersonCode='[PersonCode]')","description":"<p>This request will delete a Catalogued Company Car's Employee Assignment record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["CataloguedCarAssignment(PersonCompanyCarGUID=guid'[PersonCompanyCarGUID]', PersonCode='[PersonCode]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"fa7cdfc4-4a2d-facf-92e1-24641e56145a"}],"id":"13d636cb-0b2e-fc73-dab0-79f95bcb6ed8","description":"<p>This API enables information about the assignment of Catalogued Cars from the Person Company Car Details screen to be retrieved and modified.</p>\n<p>The identifying keys for Company Cars - Catalogued Company Cars - Person Assignment are:</p>\n<ul><li><p>PersonCompanyCarGUID</p></li><li><p>PersonCode</p></li></ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PersonCompanyCarGUID</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>PersonCode</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>FullName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EffectiveFrom</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>EffectiveTo</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>CarOwnershipTypeCode</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ReferenceKey</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>RegistrationNumber</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Make</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Model</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>VehicleType</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EngineSize</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>FuelType</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>BaseCurrencyCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>FuelForPrivateUse</td>\n<td></td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>EmployeeContribution</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>BaseEmployeeContribution</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EmployeeContributionCurrencyCode</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>PersonalUsePercent</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>OtherDrivers</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Comments</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>FirstRegistered</td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to their and all subordinate records.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to their own record.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"17936fbb-9957-4786-b8e6-6be91e399872","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"4b71c4cf-5ac1-4fc4-8bd7-eb4847553b11","type":"text/javascript","exec":[""]}}],"_postman_id":"13d636cb-0b2e-fc73-dab0-79f95bcb6ed8"},{"name":"Tax / Insurance Details","item":[{"name":"List of Catalogued Company Cars Tax / Insurance Details","id":"c063b0f9-11f3-e785-0e02-26b3d79c9d59","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/CataloguedCarTaxInsurance?$format=json","description":"<p>This request will return a list of Catalogued Cars Tax / Insurance Details from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["CataloguedCarTaxInsurance"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"5dbf58e1-c1fd-ca3b-2e65-349e4134a10a","name":"List of Catalogued Company Cars Tax / Insurance Details","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/CataloguedCarTaxInsurance?$format=json","host":["{{url}}"],"path":["CataloguedCarTaxInsurance"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"no-cache","description":""},{"name":"connection","key":"connection","value":"keep-alive","description":""},{"name":"content-length","key":"content-length","value":"448","description":""},{"name":"content-type","key":"content-type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","description":""},{"name":"dataserviceversion","key":"dataserviceversion","value":"3.0;","description":""},{"name":"date","key":"date","value":"Mon, 31 Jul 2017 16:49:35 GMT","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"369","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#CataloguedCarTaxInsurance\",\n    \"value\": [\n        {\n            \"CataloguedCarReferenceKey\": \"12345\",\n            \"EffectiveFrom\": \"2017-08-01T00:00:00\",\n            \"EffectiveTo\": \"2017-12-31T00:00:00\",\n            \"TaxInsuranceType\": \"Tax\",\n            \"Group\": null,\n            \"Provider\": null,\n            \"Comments\": null,\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2017-07-31T16:49:32.317Z\"\n        }\n    ]\n}"}],"_postman_id":"c063b0f9-11f3-e785-0e02-26b3d79c9d59"},{"name":"Add Catalogued Company Cars Tax / Insurance Details","id":"99393147-260b-5f7f-4b91-fd6d9f924164","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"CataloguedCarReferenceKey\": \"Car001\",\n  \"EffectiveFrom\": \"2017-01-01T00:00:00\",\n  \"EffectiveTo\" : \"2017-12-31T00:00:00\",\n  \"TaxInsuranceType\": \"Tax\"\n}"},"url":"{{url}}/CataloguedCarTaxInsurance?$format=json","description":"<p>This request will insert a Tax / Insurance Details record for a Catalogued Company Car.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["CataloguedCarTaxInsurance"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"3dd58473-a01a-8607-f7ae-99236084c5ea","name":"Add Catalogued Company Cars Tax / Insurance Details","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"CataloguedCarReferenceKey\": \"Car001\",\n\t\"EffectiveFrom\": \"2017-01-01T00:00:00\",\n\t\"EffectiveTo\" : \"2017-12-31T00:00:00\",\n\t\"TaxInsuranceType\": \"Tax\"\n}"},"url":{"raw":"{{url}}/CataloguedCarTaxInsurance?$format=json","host":["{{url}}"],"path":["CataloguedCarTaxInsurance"],"query":[{"key":"$format","value":"json"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"440","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","name":"Content-Type","description":""},{"key":"DataServiceVersion","value":"3.0;","name":"DataServiceVersion","description":""},{"key":"Date","value":"Mon, 08 Jan 2018 14:35:45 GMT","name":"Date","description":""},{"key":"Location","value":"https://showcase.cezanneondemand.com/cezanneondemand/v2/DataService.svc/CataloguedCarTaxInsurance(CataloguedCarReferenceKey='Car001',EffectiveFrom=datetime'2017-01-01T00%3A00%3A00',TaxInsuranceType='Tax')","name":"Location","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"10FF1C8527C119F7CB4E7C4120B8992C37BA1C8AE5234A9C7292845F5BF38D235F1BB6B2EF2F3728FEB7A384928DF969505638D3077B989C224A35AD3FE86D663EBCCEECF12BB193FF45C084F261369A94F105CDE91537455E5B49C713A694D62D34D7A7888AD9B597BDD3246C7569B4C58B10C159A04F82DF9242075831F7E38CE8DEDD0EEAACDD6CF905FEA56D401CC4DB3789AF82193C78C9A4D6A124EB0BDE5B27B6C1663E44BDFDC68E369CC4FD3AE57BC82F41E15393895D53FCBF45BEF8EE38E5FAC9F414B14AF836AC55E69E37B3A04760F8929B12DD607AB5345FE24508BB570572B35BF0EE26ECE04E899FDAEA1A227AC0432679902DA7737F2B5B8C91E71F7F5A858689E6919028A38ADB","key":"CF_SID"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"-1","key":"CF_SLV"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"/1cGaxGPTBHcD8RBFPNm12FtDYLb3lMpw7XIBqrYFhv/PCOTAE7wxR40Odzc4CqCBqtAOZUr4ANdr0FCU5+yshc/OebxJq3yb+4ZnDyqpu6AwS+bVPF+pa/xxdPnk2Wb9Paf0Dv+yZV/0G7/d6kslgWPqvC6vBmhi0lGAwQ6OUY=","key":"__RequestVerificationToken_L0NlemFubmVPbkRlbWFuZA__"}],"responseTime":"492","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#CataloguedCarTaxInsurance/@Element\",\n    \"CataloguedCarReferenceKey\": \"Car001\",\n    \"EffectiveFrom\": \"2017-01-01T00:00:00\",\n    \"EffectiveTo\": \"2017-12-31T00:00:00\",\n    \"TaxInsuranceType\": \"Tax\",\n    \"Group\": null,\n    \"Provider\": null,\n    \"Comments\": null,\n    \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedDate\": \"2017-12-16T09:00:05.0211266Z\"\n}"}],"_postman_id":"99393147-260b-5f7f-4b91-fd6d9f924164"},{"name":"Update Catalogued Company Cars Tax / Insurance Details","id":"7547a7a4-df92-49b2-b479-e4a7858109cb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"Comments\": \"Example Comments\"\n}"},"url":"{{url}}/CataloguedCarTaxInsurance(CataloguedCarReferenceKey='[CataloguedCarReferenceKey]', EffectiveFrom=datetime'[EffectiveFrom]', TaxInsuranceType='[TaxInsuranceType]')","description":"<p>This request will update a Catalogued Company Car's Tax / Insurance Details record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Request body includes only one field as an example. You can add any extra fields from the table that you require. However, some fields are read-only. \n</li>\n<li>The CataloguedCarReferenceKey, EffectiveFrom and TaxInsuranceType cannot be updated as they are the the key fields for this table.</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["CataloguedCarTaxInsurance(CataloguedCarReferenceKey='[CataloguedCarReferenceKey]', EffectiveFrom=datetime'[EffectiveFrom]', TaxInsuranceType='[TaxInsuranceType]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7547a7a4-df92-49b2-b479-e4a7858109cb"},{"name":"Delete Catalogued Company Cars Tax / Insurance Details","id":"15d0835c-9237-4122-29d8-8e0b5583469d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/CataloguedCarTaxInsurance(CataloguedCarReferenceKey='[CataloguedCarReferenceKey]', EffectiveFrom=datetime'[EffectiveFrom]', TaxInsuranceType='[TaxInsuranceType]')","description":"<p>This request will delete a Catalogued Company Car's Tax / Insurance Details record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["CataloguedCarTaxInsurance(CataloguedCarReferenceKey='[CataloguedCarReferenceKey]', EffectiveFrom=datetime'[EffectiveFrom]', TaxInsuranceType='[TaxInsuranceType]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"15d0835c-9237-4122-29d8-8e0b5583469d"}],"id":"d9f6f875-958d-fbb1-78d6-33392b64632c","description":"<p>This API enables information from the Tax &amp; Insurance Details tab on the Catalogued Company Car Details screen to be retrieved and modified. </p>\n<p>The identifying keys for Company Cars - Catalouged Company Cars - Tax / Insurance Details are:</p>\n<ul>\n<li>CataloguedCarReferenceKey</li>\n<li>EffectiveFrom</li>\n<li>TaxInsuranceType</li>\n</ul>\n\n<h2>Fields</h2>\n\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CataloguedCarReferenceKey</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>EffectiveFrom</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>EffectiveTo</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>TaxInsuranceType</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>Group</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Provider</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Comments</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2> Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"5b1fb2cd-2a14-4d38-bfbb-1721b80e4a0a","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"9bf8acfb-1f0c-4b4b-a047-538df8c904d9","type":"text/javascript","exec":[""]}}],"_postman_id":"d9f6f875-958d-fbb1-78d6-33392b64632c"},{"name":"Service History","item":[{"name":"List of Catalogued Company Cars Service History","id":"7c73cc5d-1cb6-3caa-1762-f1889838d51b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/CataloguedCarServiceHistory?$format=json","description":"<p>This request will return a list of Catalogued Cars Service History from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["CataloguedCarServiceHistory"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"0e4c1e61-4556-8cb9-08fc-eec35d1d16b2","name":"List of Catalogued Company Cars Service History","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/CataloguedCarServiceHistory?$format=json","host":["{{url}}"],"path":["CataloguedCarServiceHistory"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"no-cache","description":""},{"name":"connection","key":"connection","value":"keep-alive","description":""},{"name":"content-length","key":"content-length","value":"450","description":""},{"name":"content-type","key":"content-type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","description":""},{"name":"dataserviceversion","key":"dataserviceversion","value":"3.0;","description":""},{"name":"date","key":"date","value":"Mon, 31 Jul 2017 16:47:29 GMT","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"538","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#CataloguedCarServiceHistory\",\n    \"value\": [\n        {\n            \"CataloguedCarReferenceKey\": \"12345\",\n            \"EffectiveFrom\": \"2017-08-02T00:00:00\",\n            \"EffectiveTo\": \"2018-08-01T00:00:00\",\n            \"ServiceType\": \"MOT\",\n            \"MOTTestNumber\": null,\n            \"Mileage\": null,\n            \"Comments\": null,\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2017-07-31T16:46:48.6Z\"\n        }\n    ]\n}"}],"_postman_id":"7c73cc5d-1cb6-3caa-1762-f1889838d51b"},{"name":"Add Catalogued Company Cars Service History","id":"56a55b1d-2a17-c50f-34c2-3be4669d4ea2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"CataloguedCarReferenceKey\": \"Car001\",\n  \"EffectiveFrom\": \"2017-01-01T00:00:00\",\n  \"EffectiveTo\" : \"2017-12-31T00:00:00\",\n  \"ServiceType\": \"Service\"\n}"},"url":"{{url}}/CataloguedCarServiceHistory?$format=json","description":"<p>This request will insert a Service History record for a Catalogued Company Car.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["CataloguedCarServiceHistory"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"df89c439-4ea5-7038-f11a-d7a9a07a752e","name":"Add Catalogued Company Cars Service History","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"CataloguedCarReferenceKey\": \"Car001\",\n\t\"EffectiveFrom\": \"2017-01-01T00:00:00\",\n\t\"EffectiveTo\" : \"2017-12-31T00:00:00\",\n\t\"ServiceType\": \"Service\"\n}"},"url":{"raw":"{{url}}/CataloguedCarServiceHistory?$format=json","host":["{{url}}"],"path":["CataloguedCarServiceHistory"],"query":[{"key":"$format","value":"json"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"448","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","name":"Content-Type","description":""},{"key":"DataServiceVersion","value":"3.0;","name":"DataServiceVersion","description":""},{"key":"Date","value":"Mon, 08 Jan 2018 14:40:08 GMT","name":"Date","description":""},{"key":"Location","value":"https://showcase.cezanneondemand.com/cezanneondemand/v2/DataService.svc/CataloguedCarServiceHistory(CataloguedCarReferenceKey='Car001',EffectiveFrom=datetime'2017-01-01T00%3A00%3A00',ServiceType='Service')","name":"Location","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"10FF1C8527C119F7CB4E7C4120B8992C37BA1C8AE5234A9C7292845F5BF38D235F1BB6B2EF2F3728FEB7A384928DF969505638D3077B989C224A35AD3FE86D663EBCCEECF12BB193FF45C084F261369A94F105CDE91537455E5B49C713A694D62D34D7A7888AD9B597BDD3246C7569B4C58B10C159A04F82DF9242075831F7E38CE8DEDD0EEAACDD6CF905FEA56D401CC4DB3789AF82193C78C9A4D6A124EB0BDE5B27B6C1663E44BDFDC68E369CC4FD3AE57BC82F41E15393895D53FCBF45BEF8EE38E5FAC9F414B14AF836AC55E69E37B3A04760F8929B12DD607AB5345FE24508BB570572B35BF0EE26ECE04E899FDAEA1A227AC0432679902DA7737F2B5B8C91E71F7F5A858689E6919028A38ADB","key":"CF_SID"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"-1","key":"CF_SLV"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"/1cGaxGPTBHcD8RBFPNm12FtDYLb3lMpw7XIBqrYFhv/PCOTAE7wxR40Odzc4CqCBqtAOZUr4ANdr0FCU5+yshc/OebxJq3yb+4ZnDyqpu6AwS+bVPF+pa/xxdPnk2Wb9Paf0Dv+yZV/0G7/d6kslgWPqvC6vBmhi0lGAwQ6OUY=","key":"__RequestVerificationToken_L0NlemFubmVPbkRlbWFuZA__"}],"responseTime":"380","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#CataloguedCarServiceHistory/@Element\",\n    \"CataloguedCarReferenceKey\": \"Car001\",\n    \"EffectiveFrom\": \"2017-01-01T00:00:00\",\n    \"EffectiveTo\": \"2017-12-31T00:00:00\",\n    \"ServiceType\": \"Service\",\n    \"MOTTestNumber\": null,\n    \"Mileage\": null,\n    \"Comments\": null,\n    \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedDate\": \"2017-12-16T09:00:05.0211266Z\"\n}"}],"_postman_id":"56a55b1d-2a17-c50f-34c2-3be4669d4ea2"},{"name":"Update Catalogued Company Cars Service History","id":"dc056f88-d2a4-4112-aabd-2b15d3228cf7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"Comments\": \"Example Comments\"\n}"},"url":"{{url}}/CataloguedCarServiceHistory(CataloguedCarReferenceKey='[CataloguedCarReferenceKey]', EffectiveFrom=datetime'[EffectiveFrom]', ServiceType='[ServiceType]')","description":"<p>This request will update a Catalogued Company Car's Service History record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Request body includes only one field as an example. You can add any extra fields from the table that you require. However, some fields are read-only. \n</li>\n<li>The CataloguedCarReferenceKey, EffectiveFrom and ServiceType cannot be updated as they are the the key fields for this table.</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["CataloguedCarServiceHistory(CataloguedCarReferenceKey='[CataloguedCarReferenceKey]', EffectiveFrom=datetime'[EffectiveFrom]', ServiceType='[ServiceType]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"dc056f88-d2a4-4112-aabd-2b15d3228cf7"},{"name":"Delete Catalogued Company Cars Service History","id":"f0c3b457-b512-534f-cb8c-bcf3d878b8d8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/CataloguedCarServiceHistory(CataloguedCarReferenceKey='[CataloguedCarReferenceKey]', EffectiveFrom=datetime'[EffectiveFrom]', ServiceType='[ServiceType]')","description":"<p>This request will delete a Catalogued Company Car's Service History record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["CataloguedCarServiceHistory(CataloguedCarReferenceKey='[CataloguedCarReferenceKey]', EffectiveFrom=datetime'[EffectiveFrom]', ServiceType='[ServiceType]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f0c3b457-b512-534f-cb8c-bcf3d878b8d8"}],"id":"17887e3b-bfda-e4a6-c78a-92b3a0893939","description":"<p>This API enables information from the Service History tab on the Catalogued Company Car Details screen to be retrieved and modified. </p>\n<p>The identifying keys for Company Cars - Catalogued Company Cars - Service History are:</p>\n<ul>\n<li>CataloguedCarReferenceKey</li>\n<li>EffectiveFrom</li>\n<li>ServiceType</li>\n</ul>\n\n<h2>Fields</h2>\n\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CataloguedCarReferenceKey</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>EffectiveFrom</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>EffectiveTo</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>ServiceType</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>MOTTestNumber</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Mileage</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Comments</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2> Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"0e78ed4e-22fd-45db-a86d-198b31a2f5ef","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"2ec409d5-30a7-4194-8027-bd0f9b0b2772","type":"text/javascript","exec":[""]}}],"_postman_id":"17887e3b-bfda-e4a6-c78a-92b3a0893939"},{"name":"Costs","item":[{"name":"List of Catalogued Company Car Costs","id":"ceaac78f-0cbb-adf8-f7bb-bb37eb1c4283","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/CataloguedCarCosts?$format=json","description":"<p>This request will return a list of Catalogued Cars Costs from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["CataloguedCarCosts"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"0fd4a823-68b4-5e48-6c3f-18722f136a40","name":"List of Catalogued Company Car Costs","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/CataloguedCarCosts?$format=json","host":["{{url}}"],"path":["CataloguedCarCosts"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"no-cache","description":""},{"name":"connection","key":"connection","value":"keep-alive","description":""},{"name":"content-length","key":"content-length","value":"502","description":""},{"name":"content-type","key":"content-type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","description":""},{"name":"dataserviceversion","key":"dataserviceversion","value":"3.0;","description":""},{"name":"date","key":"date","value":"Mon, 31 Jul 2017 16:41:47 GMT","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"364","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#CataloguedCarCosts\",\n    \"value\": [\n        {\n            \"ReferenceKey\": \"12345\",\n            \"EffectiveFrom\": \"2017-07-01T00:00:00\",\n            \"EffectiveTo\": \"2017-07-31T00:00:00\",\n            \"CostType\": \"Parking Permit\",\n            \"CostAmount\": \"125.00\",\n            \"BaseCostAmount\": null,\n            \"CostAmountCurrencyCode\": \"GBP\",\n            \"BaseCurrencyCode\": \"USD\",\n            \"Comments\": null,\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2017-07-31T16:41:42.167Z\"\n        }\n    ]\n}"}],"_postman_id":"ceaac78f-0cbb-adf8-f7bb-bb37eb1c4283"},{"name":"Add Catalogued Company Car Costs","id":"c70dd0ac-ba13-15a5-56c1-ba07ab602fdf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"ReferenceKey\": \"Car001\",\n  \"EffectiveFrom\": \"2017-02-14T00:00:00\",\n  \"EffectiveTo\": \"2017-02-14T00:00:00\",\n  \"CostType\": \"Congestion Charge\"\n}"},"url":"{{url}}/CataloguedCarCosts?$format=json","description":"<p>This request will insert a Costs record for a Catalogued Company Car.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["CataloguedCarCosts"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"c47a50c1-4979-7039-9331-de5d992429ad","name":"Add Catalogued Company Car Costs","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"ReferenceKey\": \"Car001\",\n\t\"EffectiveFrom\": \"2017-02-14T00:00:00\",\n\t\"EffectiveTo\": \"2017-02-14T00:00:00\",\n\t\"CostType\": \"Congestion Charge\"\n}"},"url":{"raw":"{{url}}/CataloguedCarCosts?$format=json","host":["{{url}}"],"path":["CataloguedCarCosts"],"query":[{"key":"$format","value":"json"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"491","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","name":"Content-Type","description":""},{"key":"DataServiceVersion","value":"3.0;","name":"DataServiceVersion","description":""},{"key":"Date","value":"Mon, 08 Jan 2018 14:41:16 GMT","name":"Date","description":""},{"key":"Location","value":"https://showcase.cezanneondemand.com/cezanneondemand/v2/DataService.svc/CataloguedCarCosts(CostType='Congestion%20Charge',EffectiveFrom=datetime'2017-02-14T00%3A00%3A00',ReferenceKey='Car001')","name":"Location","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"10FF1C8527C119F7CB4E7C4120B8992C37BA1C8AE5234A9C7292845F5BF38D235F1BB6B2EF2F3728FEB7A384928DF969505638D3077B989C224A35AD3FE86D663EBCCEECF12BB193FF45C084F261369A94F105CDE91537455E5B49C713A694D62D34D7A7888AD9B597BDD3246C7569B4C58B10C159A04F82DF9242075831F7E38CE8DEDD0EEAACDD6CF905FEA56D401CC4DB3789AF82193C78C9A4D6A124EB0BDE5B27B6C1663E44BDFDC68E369CC4FD3AE57BC82F41E15393895D53FCBF45BEF8EE38E5FAC9F414B14AF836AC55E69E37B3A04760F8929B12DD607AB5345FE24508BB570572B35BF0EE26ECE04E899FDAEA1A227AC0432679902DA7737F2B5B8C91E71F7F5A858689E6919028A38ADB","key":"CF_SID"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"-1","key":"CF_SLV"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"/1cGaxGPTBHcD8RBFPNm12FtDYLb3lMpw7XIBqrYFhv/PCOTAE7wxR40Odzc4CqCBqtAOZUr4ANdr0FCU5+yshc/OebxJq3yb+4ZnDyqpu6AwS+bVPF+pa/xxdPnk2Wb9Paf0Dv+yZV/0G7/d6kslgWPqvC6vBmhi0lGAwQ6OUY=","key":"__RequestVerificationToken_L0NlemFubmVPbkRlbWFuZA__"}],"responseTime":"522","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#CataloguedCarCosts/@Element\",\n    \"ReferenceKey\": \"Car001\",\n    \"EffectiveFrom\": \"2017-02-14T00:00:00\",\n    \"EffectiveTo\": \"2017-02-14T00:00:00\",\n    \"CostType\": \"Congestion Charge\",\n    \"CostAmount\": null,\n    \"BaseCostAmount\": null,\n    \"CostAmountCurrencyCode\": null,\n    \"BaseCurrencyCode\": null,\n    \"Comments\": null,\n    \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedDate\": \"2017-12-16T09:00:05.0523759Z\"\n}"}],"_postman_id":"c70dd0ac-ba13-15a5-56c1-ba07ab602fdf"},{"name":"Update Catalogued Company Car Costs","id":"54e34c72-ecf9-4631-9cc6-e4ffee369a1b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"Comments\": \"Example Comments\"\n}"},"url":"{{url}}/CataloguedCarCosts(ReferenceKey='[ReferenceKey]', EffectiveFrom=datetime'[EffectiveFrom]', CostType='[CostType]')","description":"<p>This request will update a Catalogued Company Car's Costs record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Request body includes only one field as an example. You can add any extra fields from the table that you require. However, some fields are read-only. \n</li>\n<li>The ReferenceKey, EffectiveFrom and CostType cannot be updated as they are the the key fields for this table.</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["CataloguedCarCosts(ReferenceKey='[ReferenceKey]', EffectiveFrom=datetime'[EffectiveFrom]', CostType='[CostType]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"54e34c72-ecf9-4631-9cc6-e4ffee369a1b"},{"name":"Delete Catalogued Company Car Costs","id":"d8d07d30-a511-8d50-415c-cdded54d3889","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/CataloguedCarCosts(ReferenceKey='[ReferenceKey]', EffectiveFrom=datetime'[EffectiveFrom]', CostType='[CostType]')","description":"<p>This request will delete a Catalogued Company Car's Costs record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["CataloguedCarCosts(ReferenceKey='[ReferenceKey]', EffectiveFrom=datetime'[EffectiveFrom]', CostType='[CostType]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d8d07d30-a511-8d50-415c-cdded54d3889"}],"id":"a322c140-540c-f1da-bad7-8db3167b180e","description":"<p>This API enables information from the Costs tab on the Catalogued Company Car Details screen to be retrieved and modified. </p>\n<p>The identifying keys for Company Cars - Catalouged Company Cars - Costs are:</p>\n<ul>\n<li>ReferenceKey</li>\n<li>EffectiveFrom</li>\n<li>CostType</li>\n</ul>\n\n<h2>Fields</h2>\n\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ReferenceKey</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>EffectiveFrom</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>EffectiveTo</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>CostType</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>CostAmount</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>BaseCostAmount</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>CostAmountCurrencyCode</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>BaseCurrencyCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Comments</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2> Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"95acad36-2e70-4d67-8a1f-06c624e3efcf","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"5b68a636-79c0-4b65-8be3-10787dbddbaa","type":"text/javascript","exec":[""]}}],"_postman_id":"a322c140-540c-f1da-bad7-8db3167b180e"}],"id":"0ee358d6-4483-9956-df6c-89c6a0b077e6","_postman_id":"0ee358d6-4483-9956-df6c-89c6a0b077e6","description":""},{"name":"Private Cars","item":[{"name":"Person Assignment","item":[{"name":"List of Private Company Cars Employee Assignment","id":"109f8373-9987-c22e-af3d-dcb718b04a8a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/PrivateCarAssignment?$format=json","description":"<p>This request will return a list of Private Cars Employee Assignments from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["PrivateCarAssignment"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"6ff794cc-00e8-fa47-fcc3-c659d4d0aad4","name":"List of Private Company Cars Employee Assignment","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/PrivateCarAssignment?$format=json","host":["{{url}}"],"path":["PrivateCarAssignment"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"no-cache","description":""},{"name":"connection","key":"connection","value":"keep-alive","description":""},{"name":"content-length","key":"content-length","value":"709","description":""},{"name":"content-type","key":"content-type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","description":""},{"name":"dataserviceversion","key":"dataserviceversion","value":"3.0;","description":""},{"name":"date","key":"date","value":"Mon, 31 Jul 2017 16:54:26 GMT","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"497","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#PrivateCarAssignment\",\n    \"value\": [\n        {\n            \"PersonCompanyCarGUID\": \"58b9c3cf-777f-4fc0-af8f-e880d0cdc163\",\n            \"PersonCode\": \"27\",\n            \"FullName\": \"Brenda Becker\",\n            \"EffectiveFrom\": \"2016-09-06T00:00:00\",\n            \"EffectiveTo\": \"2999-12-31T00:00:00\",\n            \"CarOwnershipTypeCode\": \"PRI\",\n            \"RegistrationNumber\": \"LLLLLL\",\n            \"Make\": null,\n            \"Model\": null,\n            \"VehicleType\": null,\n            \"EngineSize\": null,\n            \"FuelType\": null,\n            \"VehicleAllowance\": null,\n            \"BaseVehicleAllowance\": null,\n            \"VehicleAllowanceCurrencyCode\": null,\n            \"BaseCurrencyCode\": \"USD\",\n            \"Comments\": null,\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2016-09-05T13:58:49.56Z\",\n            \"FirstRegistered\": null\n        }\n    ]\n}"}],"_postman_id":"109f8373-9987-c22e-af3d-dcb718b04a8a"},{"name":"Add Private Company Cars Employee Assignment","id":"50d2fb59-d4b7-fab2-8423-f4e4c94c3987","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"PersonCompanyCarGUID\": \"12345678-1234-1234-1234-123456789101\",\n  \"PersonCode\": \"26\",\n  \"EffectiveFrom\": \"2017-01-01T00:00:00\",\n  \"EffectiveTo\": \"2017-12-31T00:00:00\",\n  \"CarOwnershipTypeCode\": \"PRI\",\n  \"RegistrationNumber\": \"C3ZA NN3\"\n}"},"url":"{{url}}/PrivateCarAssignment?$format=json","description":"<p>This request will insert an Employee Assignment record for a Private Company Car.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n<li>To add a new Person Assignment for a Company Car, you need to enter a unique PersonCompanyCarGUID for each new record in the following format: '12345678-1234-1234-1234-123456789101'\n</li>\n</ul>","urlObject":{"path":["PrivateCarAssignment"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"6b39d7c5-f311-e681-ebaf-8eb7c226cd1f","name":"Add Private Company Cars Employee Assignment","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"PersonCompanyCarGUID\": \"12345678-1234-1234-1234-123456789101\",\n\t\"PersonCode\": \"26\",\n\t\"EffectiveFrom\": \"2017-01-01T00:00:00\",\n\t\"EffectiveTo\": \"2017-12-31T00:00:00\",\n\t\"CarOwnershipTypeCode\": \"PRI\",\n\t\"RegistrationNumber\": \"C3ZA NN3\"\n}"},"url":{"raw":"{{url}}/PrivateCarAssignment?$format=json","host":["{{url}}"],"path":["PrivateCarAssignment"],"query":[{"key":"$format","value":"json"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"691","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","name":"Content-Type","description":""},{"key":"DataServiceVersion","value":"3.0;","name":"DataServiceVersion","description":""},{"key":"Date","value":"Mon, 08 Jan 2018 14:49:36 GMT","name":"Date","description":""},{"key":"Location","value":"https://showcase.cezanneondemand.com/cezanneondemand/v2/DataService.svc/PrivateCarAssignment(PersonCode='26',PersonCompanyCarGUID=guid'12345678-1234-1234-1234-123456789101')","name":"Location","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"10FF1C8527C119F7CB4E7C4120B8992C37BA1C8AE5234A9C7292845F5BF38D235F1BB6B2EF2F3728FEB7A384928DF969505638D3077B989C224A35AD3FE86D663EBCCEECF12BB193FF45C084F261369A94F105CDE91537455E5B49C713A694D62D34D7A7888AD9B597BDD3246C7569B4C58B10C159A04F82DF9242075831F7E38CE8DEDD0EEAACDD6CF905FEA56D401CC4DB3789AF82193C78C9A4D6A124EB0BDE5B27B6C1663E44BDFDC68E369CC4FD3AE57BC82F41E15393895D53FCBF45BEF8EE38E5FAC9F414B14AF836AC55E69E37B3A04760F8929B12DD607AB5345FE24508BB570572B35BF0EE26ECE04E899FDAEA1A227AC0432679902DA7737F2B5B8C91E71F7F5A858689E6919028A38ADB","key":"CF_SID"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"-1","key":"CF_SLV"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"/1cGaxGPTBHcD8RBFPNm12FtDYLb3lMpw7XIBqrYFhv/PCOTAE7wxR40Odzc4CqCBqtAOZUr4ANdr0FCU5+yshc/OebxJq3yb+4ZnDyqpu6AwS+bVPF+pa/xxdPnk2Wb9Paf0Dv+yZV/0G7/d6kslgWPqvC6vBmhi0lGAwQ6OUY=","key":"__RequestVerificationToken_L0NlemFubmVPbkRlbWFuZA__"}],"responseTime":"412","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#PrivateCarAssignment/@Element\",\n    \"PersonCompanyCarGUID\": \"12345678-1234-1234-1234-123456789101\",\n    \"PersonCode\": \"26\",\n    \"FullName\": null,\n    \"EffectiveFrom\": \"2017-01-01T00:00:00\",\n    \"EffectiveTo\": \"2017-12-31T00:00:00\",\n    \"CarOwnershipTypeCode\": \"PRI\",\n    \"RegistrationNumber\": \"C3ZA NN3\",\n    \"Make\": null,\n    \"Model\": null,\n    \"VehicleType\": null,\n    \"EngineSize\": null,\n    \"FuelType\": null,\n    \"VehicleAllowance\": null,\n    \"BaseVehicleAllowance\": null,\n    \"VehicleAllowanceCurrencyCode\": null,\n    \"BaseCurrencyCode\": null,\n    \"Comments\": null,\n    \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedDate\": \"2017-12-16T09:00:05.1461346Z\"\n}"}],"_postman_id":"50d2fb59-d4b7-fab2-8423-f4e4c94c3987"},{"name":"Update Private Company Cars Employee Assignment","id":"d306fd33-0219-4e1d-a840-ed1936d33c0d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"Comments\": \"Example Comments\"\n}"},"url":"{{url}}/PrivateCarAssignment(PersonCompanyCarGUID=guid'[PersonCompanyCarGUID]', PersonCode='[PersonCode]')","description":"<p>This request will update a Private Company Car's Employee Assignment record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Request body includes only one field as an example. You can add any extra fields from the table that you require. However, some fields are read-only. \n</li>\n<li>The PersonCompanyCarGUID and PersonCode cannot be updated as they are the the key fields for this table.</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["PrivateCarAssignment(PersonCompanyCarGUID=guid'[PersonCompanyCarGUID]', PersonCode='[PersonCode]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d306fd33-0219-4e1d-a840-ed1936d33c0d"},{"name":"Delete Private Company Cars Employee Assignment","id":"57f80573-9563-411d-64f3-3bd44365d807","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/PrivateCarAssignment(PersonCompanyCarGUID=guid'[PersonCompanyCarGUID]', PersonCode='[PersonCode]')","description":"<p>This request will delete a Private Company Car's Employee Assignment record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["PrivateCarAssignment(PersonCompanyCarGUID=guid'[PersonCompanyCarGUID]', PersonCode='[PersonCode]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"57f80573-9563-411d-64f3-3bd44365d807"}],"id":"73eefb05-e605-8b4b-2eb8-e75e61d2c249","description":"<p>This API enables information about the assignment of Private Cars (for company use) from the Person Company Car Details screen to be retrieved and modified.</p>\n<p>The identifying keys for Company Cars - Private Cars - Person Assignment are:</p>\n<ul><li><p>PersonCompanyCarGUID</p></li><li><p>PersonCode</p></li></ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PersonCompanyCarGUID</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>PersonCode</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>FullName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EffectiveFrom</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>EffectiveTo</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>CarOwnershipTypeCode</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>RegistrationNumber</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>Make</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Model</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>VehicleType</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>EngineSize</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>FuelType</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>VehicleAllowance</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>BaseVehicleAllowance</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>VehicleAllowanceCurrencyCode</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>BaseCurrencyCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Comments</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>FirstRegistered</td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to their and all subordinate records.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to their own record.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"d2518970-c341-47ca-9685-38a32c53b0b7","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"283757b5-4af4-4555-a9af-1a4ca1f8b301","type":"text/javascript","exec":[""]}}],"_postman_id":"73eefb05-e605-8b4b-2eb8-e75e61d2c249"},{"name":"Tax / Insurance Details","item":[{"name":"List of Private Company Cars Tax / Insurance Details","id":"18504bfc-aaf1-62a7-1d93-2468a3040c0e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/PrivateCarTaxInsuranceAssignment?$format=json","description":"<p>This request will return a list of Private Car Tax / Insurance Details from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["PrivateCarTaxInsuranceAssignment"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"a8981478-3852-974a-e15a-753c4b59dee1","name":"List of Private Company Cars Tax / Insurance Details","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/PrivateCarTaxInsuranceAssignment?$format=json","host":["{{url}}"],"path":["PrivateCarTaxInsuranceAssignment"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"no-cache","description":""},{"name":"connection","key":"connection","value":"keep-alive","description":""},{"name":"content-length","key":"content-length","value":"527","description":""},{"name":"content-type","key":"content-type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","description":""},{"name":"dataserviceversion","key":"dataserviceversion","value":"3.0;","description":""},{"name":"date","key":"date","value":"Mon, 31 Jul 2017 17:03:39 GMT","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"416","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#PrivateCarTaxInsuranceAssignment\",\n    \"value\": [\n        {\n            \"PersonCompanyCarGUID\": \"f94e126c-4bbf-4dc7-9b44-cd5c4679f33a\",\n            \"PersonCode\": \"807678\",\n            \"TaxInsuranceEffectiveFrom\": \"2017-01-01T00:00:00\",\n            \"TaxInsuranceEffectiveTo\": \"2017-12-31T00:00:00\",\n            \"TaxInsuranceType\": \"Tax\",\n            \"Group\": null,\n            \"Provider\": null,\n            \"Comments\": null,\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2017-07-31T17:01:16.107Z\"\n        }\n    ]\n}"}],"_postman_id":"18504bfc-aaf1-62a7-1d93-2468a3040c0e"},{"name":"Add Private Company Cars Tax / Insurance Details","id":"e1f6b06e-f291-3207-dcd7-0f0cf9efd4b7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"PersonCompanyCarGUID\": \"12345678-1234-1234-1234-123456789101\",\n  \"PersonCode\": \"26\",\n  \"TaxInsuranceEffectiveFrom\": \"2017-01-01T00:00:00\",\n  \"TaxInsuranceEffectiveTo\": \"2017-12-31T00:00:00\",\n  \"TaxInsuranceType\": \"Tax\"\n}"},"url":"{{url}}/PrivateCarTaxInsuranceAssignment?$format=json","description":"<p>This request will insert a Tax / Insurance Details record for a Private Company Car.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["PrivateCarTaxInsuranceAssignment"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"1645cee9-646f-ab9b-3a11-7407ffdd453c","name":"Add Private Company Cars Tax / Insurance Details","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"PersonCompanyCarGUID\": \"12345678-1234-1234-1234-123456789101\",\n\t\"PersonCode\": \"26\",\n\t\"TaxInsuranceEffectiveFrom\": \"2017-01-01T00:00:00\",\n\t\"TaxInsuranceEffectiveTo\": \"2017-12-31T00:00:00\",\n\t\"TaxInsuranceType\": \"Tax\"\n}"},"url":{"raw":"{{url}}/PrivateCarTaxInsuranceAssignment?$format=json","host":["{{url}}"],"path":["PrivateCarTaxInsuranceAssignment"],"query":[{"key":"$format","value":"json"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"514","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","name":"Content-Type","description":""},{"key":"DataServiceVersion","value":"3.0;","name":"DataServiceVersion","description":""},{"key":"Date","value":"Mon, 08 Jan 2018 15:03:15 GMT","name":"Date","description":""},{"key":"Location","value":"https://showcase.cezanneondemand.com/cezanneondemand/v2/DataService.svc/PrivateCarTaxInsuranceAssignment(PersonCode='26',PersonCompanyCarGUID=guid'12345678-1234-1234-1234-123456789101',TaxInsuranceEffectiveFrom=datetime'2017-01-01T00%3A00%3A00',TaxInsuranceType='Tax')","name":"Location","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"10FF1C8527C119F7CB4E7C4120B8992C37BA1C8AE5234A9C7292845F5BF38D235F1BB6B2EF2F3728FEB7A384928DF969505638D3077B989C224A35AD3FE86D663EBCCEECF12BB193FF45C084F261369A94F105CDE91537455E5B49C713A694D62D34D7A7888AD9B597BDD3246C7569B4C58B10C159A04F82DF9242075831F7E38CE8DEDD0EEAACDD6CF905FEA56D401CC4DB3789AF82193C78C9A4D6A124EB0BDE5B27B6C1663E44BDFDC68E369CC4FD3AE57BC82F41E15393895D53FCBF45BEF8EE38E5FAC9F414B14AF836AC55E69E37B3A04760F8929B12DD607AB5345FE24508BB570572B35BF0EE26ECE04E899FDAEA1A227AC0432679902DA7737F2B5B8C91E71F7F5A858689E6919028A38ADB","key":"CF_SID"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"-1","key":"CF_SLV"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"/1cGaxGPTBHcD8RBFPNm12FtDYLb3lMpw7XIBqrYFhv/PCOTAE7wxR40Odzc4CqCBqtAOZUr4ANdr0FCU5+yshc/OebxJq3yb+4ZnDyqpu6AwS+bVPF+pa/xxdPnk2Wb9Paf0Dv+yZV/0G7/d6kslgWPqvC6vBmhi0lGAwQ6OUY=","key":"__RequestVerificationToken_L0NlemFubmVPbkRlbWFuZA__"}],"responseTime":"646","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#PrivateCarTaxInsuranceAssignment/@Element\",\n    \"PersonCompanyCarGUID\": \"12345678-1234-1234-1234-123456789101\",\n    \"PersonCode\": \"26\",\n    \"TaxInsuranceEffectiveFrom\": \"2017-01-01T00:00:00\",\n    \"TaxInsuranceEffectiveTo\": \"2017-12-31T00:00:00\",\n    \"TaxInsuranceType\": \"Tax\",\n    \"Group\": null,\n    \"Provider\": null,\n    \"Comments\": null,\n    \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedDate\": \"2017-12-16T09:00:05.1617598Z\"\n}"}],"_postman_id":"e1f6b06e-f291-3207-dcd7-0f0cf9efd4b7"},{"name":"Update Private Company Cars Tax / Insurance Details","id":"be5d076b-af4e-40c0-a8f5-be8d11b25d10","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"Comments\": \"Example Comments\"\n}"},"url":"{{url}}/PrivateCarTaxInsuranceAssignment(PersonCompanyCarGUID=guid'[PersonCompanyCarGUID]', PersonCode='[PersonCode]', TaxInsuranceEffectiveFrom=datetime'[TaxInsuranceEffectiveFrom]', TaxInsuranceType='[TaxInsuranceType]')","description":"<p>This request will update a Private Company Car's Tax / Insurance Details record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Request body includes only one field as an example. You can add any extra fields from the table that you require. However, some fields are read-only. \n</li>\n<li>The PersonCompanyCarGUID, PersonCode, TaxInsuranceEffectiveFrom and TaxInsuranceType cannot be updated as they are the the key fields for this table.</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["PrivateCarTaxInsuranceAssignment(PersonCompanyCarGUID=guid'[PersonCompanyCarGUID]', PersonCode='[PersonCode]', TaxInsuranceEffectiveFrom=datetime'[TaxInsuranceEffectiveFrom]', TaxInsuranceType='[TaxInsuranceType]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"be5d076b-af4e-40c0-a8f5-be8d11b25d10"},{"name":"Delete Private Company Cars Tax / Insurance Details","id":"f69d56f9-fdaa-85e8-972c-6335f5574d23","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/PrivateCarTaxInsuranceAssignment(PersonCompanyCarGUID=guid'[PersonCompanyCarGUID]', PersonCode='[PersonCode]', TaxInsuranceEffectiveFrom=datetime'[TaxInsuranceEffectiveFrom]', TaxInsuranceType='[TaxInsuranceType]')","description":"<p>This request will delete a Private Company Car's Tax / Insurance Details record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["PrivateCarTaxInsuranceAssignment(PersonCompanyCarGUID=guid'[PersonCompanyCarGUID]', PersonCode='[PersonCode]', TaxInsuranceEffectiveFrom=datetime'[TaxInsuranceEffectiveFrom]', TaxInsuranceType='[TaxInsuranceType]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f69d56f9-fdaa-85e8-972c-6335f5574d23"}],"id":"64d25d9a-8b34-ab38-4ad5-3a5e2d682cb6","description":"<p>This API enables information from the Tax &amp; Insurance tab on the Person Company Car Details screen for private cars to be retrieved and modified. </p>\n<p>The identifying keys for Company Cars - Private Cars - Tax / Insurance Details are:</p>\n<ul>\n<li>PersonCompanyCarGUID</li>\n<li>PersonCode</li>\n<li>TaxInsuranceEffectiveFrom</li>\n<li>TaxInsuranceType</li>\n</ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PersonCompanyCarGUID</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>PersonCode</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>TaxInsuranceEffectiveFrom</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>TaxInsuranceEffectiveTo</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>TaxInsuranceType</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>Group</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Provider</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Comments</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2> Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"df40b9d8-dc15-4fd0-852a-4598e396a4d4","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"05c5c878-7c07-4330-af42-4946a700f276","type":"text/javascript","exec":[""]}}],"_postman_id":"64d25d9a-8b34-ab38-4ad5-3a5e2d682cb6"},{"name":"Service History","item":[{"name":"List of Private Company Cars Service History","id":"04b77fdf-d737-81ca-c009-a86032fb4e5c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/PrivateCarServiceHistoryAssignment?$format=json","description":"<p>This request will return a list of Private Cars Service History from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["PrivateCarServiceHistoryAssignment"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"d2fe4b9e-dfb7-37fb-c2cb-88cc106c48aa","name":"List of Private Company Cars Service History","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/PrivateCarServiceHistoryAssignment?$format=json","host":["{{url}}"],"path":["PrivateCarServiceHistoryAssignment"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"no-cache","description":""},{"name":"connection","key":"connection","value":"keep-alive","description":""},{"name":"content-length","key":"content-length","value":"506","description":""},{"name":"content-type","key":"content-type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","description":""},{"name":"dataserviceversion","key":"dataserviceversion","value":"3.0;","description":""},{"name":"date","key":"date","value":"Mon, 31 Jul 2017 16:57:59 GMT","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"588","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#PrivateCarServiceHistoryAssignment\",\n    \"value\": [\n        {\n            \"PersonCompanyCarGUID\": \"f94e126c-4bbf-4dc7-9b44-cd5c2267f66a\",\n            \"PersonCode\": \"807678\",\n            \"EffectiveFrom\": \"2017-09-01T00:00:00\",\n            \"EffectiveTo\": \"2018-08-31T00:00:00\",\n            \"ServiceType\": \"MOT\",\n            \"MOTTestNumber\": null,\n            \"Mileage\": null,\n            \"Comments\": null,\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2017-07-31T16:56:08.14Z\"\n        }\n    ]\n}"}],"_postman_id":"04b77fdf-d737-81ca-c009-a86032fb4e5c"},{"name":"Add Private Company Cars Service History","id":"0a7d538f-b0dd-7cbb-e1f3-db55fb2e5b8f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"PersonCompanyCarGUID\": \"12345678-1234-1234-1234-123456789101\",\n  \"PersonCode\": \"26\",\n  \"EffectiveFrom\": \"2017-01-01T00:00:00\",\n  \"EffectiveTo\": \"2017-12-31T00:00:00\",\n  \"ServiceType\": \"Service\"\n}"},"url":"{{url}}/PrivateCarServiceHistoryAssignment?$format=json","description":"<p>This request will insert a Service History record for a Private Company Car.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["PrivateCarServiceHistoryAssignment"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"2218580d-7a88-b803-aa35-df299a1334d7","name":"Add Private Company Cars Service History","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"PersonCompanyCarGUID\": \"12345678-1234-1234-1234-123456789101\",\n\t\"PersonCode\": \"26\",\n\t\"EffectiveFrom\": \"2017-01-01T00:00:00\",\n\t\"EffectiveTo\": \"2017-12-31T00:00:00\",\n\t\"ServiceType\": \"Service\"\n}"},"url":{"raw":"{{url}}/PrivateCarServiceHistoryAssignment?$format=json","host":["{{url}}"],"path":["PrivateCarServiceHistoryAssignment"],"query":[{"key":"$format","value":"json"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"498","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","name":"Content-Type","description":""},{"key":"DataServiceVersion","value":"3.0;","name":"DataServiceVersion","description":""},{"key":"Date","value":"Mon, 08 Jan 2018 15:11:03 GMT","name":"Date","description":""},{"key":"Location","value":"https://showcase.cezanneondemand.com/cezanneondemand/v2/DataService.svc/PrivateCarServiceHistoryAssignment(EffectiveFrom=datetime'2017-01-01T00%3A00%3A00',PersonCode='26',PersonCompanyCarGUID=guid'12345678-1234-1234-1234-123456789101',ServiceType='Service')","name":"Location","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"10FF1C8527C119F7CB4E7C4120B8992C37BA1C8AE5234A9C7292845F5BF38D235F1BB6B2EF2F3728FEB7A384928DF969505638D3077B989C224A35AD3FE86D663EBCCEECF12BB193FF45C084F261369A94F105CDE91537455E5B49C713A694D62D34D7A7888AD9B597BDD3246C7569B4C58B10C159A04F82DF9242075831F7E38CE8DEDD0EEAACDD6CF905FEA56D401CC4DB3789AF82193C78C9A4D6A124EB0BDE5B27B6C1663E44BDFDC68E369CC4FD3AE57BC82F41E15393895D53FCBF45BEF8EE38E5FAC9F414B14AF836AC55E69E37B3A04760F8929B12DD607AB5345FE24508BB570572B35BF0EE26ECE04E899FDAEA1A227AC0432679902DA7737F2B5B8C91E71F7F5A858689E6919028A38ADB","key":"CF_SID"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"-1","key":"CF_SLV"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"/1cGaxGPTBHcD8RBFPNm12FtDYLb3lMpw7XIBqrYFhv/PCOTAE7wxR40Odzc4CqCBqtAOZUr4ANdr0FCU5+yshc/OebxJq3yb+4ZnDyqpu6AwS+bVPF+pa/xxdPnk2Wb9Paf0Dv+yZV/0G7/d6kslgWPqvC6vBmhi0lGAwQ6OUY=","key":"__RequestVerificationToken_L0NlemFubmVPbkRlbWFuZA__"}],"responseTime":"610","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#PrivateCarServiceHistoryAssignment/@Element\",\n    \"PersonCompanyCarGUID\": \"12345678-1234-1234-1234-123456789101\",\n    \"PersonCode\": \"26\",\n    \"EffectiveFrom\": \"2017-01-01T00:00:00\",\n    \"EffectiveTo\": \"2017-12-31T00:00:00\",\n    \"ServiceType\": \"Service\",\n    \"MOTTestNumber\": null,\n    \"Mileage\": null,\n    \"Comments\": null,\n    \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedDate\": \"2017-12-16T09:00:05.1617598Z\"\n}"}],"_postman_id":"0a7d538f-b0dd-7cbb-e1f3-db55fb2e5b8f"},{"name":"Update Private Company Cars Service History","id":"aeb25f58-04e3-4763-8cc0-74d9d66eb20b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"Comments\": \"Example Comments\"\n}"},"url":"{{url}}/PrivateCarServiceHistoryAssignment(PersonCompanyCarGUID=guid'[PersonCompanyCarGUID]', PersonCode='[PersonCode]', EffectiveFrom=datetime'[EffectiveFrom]', ServiceType='[ServiceType]')","description":"<p>This request will update a Private Company Car's Service History record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Request body includes only one field as an example. You can add any extra fields from the table that you require. However, some fields are read-only. \n</li>\n<li>The PersonCompanyCarGUID, PersonCode, EffectiveFrom and ServiceType cannot be updated as they are the the key fields for this table.</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["PrivateCarServiceHistoryAssignment(PersonCompanyCarGUID=guid'[PersonCompanyCarGUID]', PersonCode='[PersonCode]', EffectiveFrom=datetime'[EffectiveFrom]', ServiceType='[ServiceType]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"aeb25f58-04e3-4763-8cc0-74d9d66eb20b"},{"name":"Delete Private Company Cars Service History","id":"143cf30d-eeeb-83a7-ddc0-c3be367b74b8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/PrivateCarServiceHistoryAssignment(PersonCompanyCarGUID=guid'[PersonCompanyCarGUID]', PersonCode='[PersonCode]', EffectiveFrom=datetime'[EffectiveFrom]', ServiceType='[ServiceType]')","description":"<p>This request will delete a Private Company Car's Service History record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["PrivateCarServiceHistoryAssignment(PersonCompanyCarGUID=guid'[PersonCompanyCarGUID]', PersonCode='[PersonCode]', EffectiveFrom=datetime'[EffectiveFrom]', ServiceType='[ServiceType]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"143cf30d-eeeb-83a7-ddc0-c3be367b74b8"}],"id":"eae0c761-c577-4497-1b2d-0794e6d7ce9b","description":"<p>This API enables information from the Service History tab on the Person Company Car Details screen for private cars to be retrieved and modified. </p>\n<p>The identifying keys for Company Cars - Private Cars - Service History are:</p>\n<ul>\n<li>PersonCompanyCarGUID</li>\n<li>PersonCode</li>\n<li>EffectiveFrom</li>\n<li>ServiceType</li>\n</ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PersonCompanyCarGUID</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>PersonCode</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>EffectiveFrom</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>EffectiveTo</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>ServiceType</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>MOTTestNumber</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Mileage</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Comments</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2> Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"331f3cdc-fe00-4116-9132-f2818ee2ecd4","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"ecc814c3-1582-4e92-81ec-bb66ab679b10","type":"text/javascript","exec":[""]}}],"_postman_id":"eae0c761-c577-4497-1b2d-0794e6d7ce9b"},{"name":"Costs","item":[{"name":"List of Private Company Car Costs","id":"203b5dad-635a-4314-986e-f01a2ab64992","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/PrivateCarCostsAssignment?$format=json","description":"<p>This request will return a list of Private Cars Costs from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["PrivateCarCostsAssignment"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"33468eba-c345-ec14-3775-c82867425f4d","name":"List of Private Company Car Costs","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/PrivateCarCostsAssignment?$format=json","host":["{{url}}"],"path":["PrivateCarCostsAssignment"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"no-cache","description":""},{"name":"connection","key":"connection","value":"keep-alive","description":""},{"name":"content-length","key":"content-length","value":"569","description":""},{"name":"content-type","key":"content-type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","description":""},{"name":"dataserviceversion","key":"dataserviceversion","value":"3.0;","description":""},{"name":"date","key":"date","value":"Mon, 31 Jul 2017 16:52:45 GMT","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"493","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#PrivateCarCostsAssignment\",\n    \"value\": [\n        {\n            \"PersonCompanyCarGUID\": \"f94e126c-4bbf-4dc7-9b44-cd5c5437f64a\",\n            \"PersonCode\": \"807678\",\n            \"EffectiveFrom\": \"2017-07-01T00:00:00\",\n            \"EffectiveTo\": \"2017-07-31T00:00:00\",\n            \"CostType\": \"Parking Permit\",\n            \"CostAmount\": \"125.00\",\n            \"BaseCostAmount\": null,\n            \"CostAmountCurrencyCode\": \"GBP\",\n            \"BaseCurrencyCode\": \"USD\",\n            \"Comments\": null,\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2017-07-31T16:52:06.69Z\"\n        }\n    ]\n}"}],"_postman_id":"203b5dad-635a-4314-986e-f01a2ab64992"},{"name":"Add Private Company Cars Costs","id":"f2b156d0-cbda-1f7f-db68-e8cd12d854fd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"PersonCompanyCarGUID\": \"12345678-1234-1234-1234-123456789101\",\n  \"PersonCode\": \"26\",\n  \"EffectiveFrom\": \"2017-01-01T00:00:00\",\n  \"EffectiveTo\": \"2017-12-31T00:00:00\",\n  \"CostType\": \"Congestion Charge\"\n}"},"url":"{{url}}/PrivateCarCostsAssignment?$format=json","description":"<p>This request will insert a Costs record for a Private Company Car.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["PrivateCarCostsAssignment"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"e226a0d0-62f3-2672-710f-35cca522b7f4","name":"Add Private Company Cars Costs","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"PersonCompanyCarGUID\": \"12345678-1234-1234-1234-123456789101\",\n\t\"PersonCode\": \"26\",\n\t\"EffectiveFrom\": \"2017-01-01T00:00:00\",\n\t\"EffectiveTo\": \"2017-12-31T00:00:00\",\n\t\"CostType\": \"Congestion Charge\"\n}"},"url":{"raw":"{{url}}/PrivateCarCostsAssignment?$format=json","host":["{{url}}"],"path":["PrivateCarCostsAssignment"],"query":[{"key":"$format","value":"json"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"554","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","name":"Content-Type","description":""},{"key":"DataServiceVersion","value":"3.0;","name":"DataServiceVersion","description":""},{"key":"Date","value":"Mon, 08 Jan 2018 15:09:25 GMT","name":"Date","description":""},{"key":"Location","value":"https://showcase.cezanneondemand.com/cezanneondemand/v2/DataService.svc/PrivateCarCostsAssignment(CostType='Congestion%20Charge',EffectiveFrom=datetime'2017-01-01T00%3A00%3A00',PersonCode='26',PersonCompanyCarGUID=guid'12345678-1234-1234-1234-123456789101')","name":"Location","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"10FF1C8527C119F7CB4E7C4120B8992C37BA1C8AE5234A9C7292845F5BF38D235F1BB6B2EF2F3728FEB7A384928DF969505638D3077B989C224A35AD3FE86D663EBCCEECF12BB193FF45C084F261369A94F105CDE91537455E5B49C713A694D62D34D7A7888AD9B597BDD3246C7569B4C58B10C159A04F82DF9242075831F7E38CE8DEDD0EEAACDD6CF905FEA56D401CC4DB3789AF82193C78C9A4D6A124EB0BDE5B27B6C1663E44BDFDC68E369CC4FD3AE57BC82F41E15393895D53FCBF45BEF8EE38E5FAC9F414B14AF836AC55E69E37B3A04760F8929B12DD607AB5345FE24508BB570572B35BF0EE26ECE04E899FDAEA1A227AC0432679902DA7737F2B5B8C91E71F7F5A858689E6919028A38ADB","key":"CF_SID"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"-1","key":"CF_SLV"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"/1cGaxGPTBHcD8RBFPNm12FtDYLb3lMpw7XIBqrYFhv/PCOTAE7wxR40Odzc4CqCBqtAOZUr4ANdr0FCU5+yshc/OebxJq3yb+4ZnDyqpu6AwS+bVPF+pa/xxdPnk2Wb9Paf0Dv+yZV/0G7/d6kslgWPqvC6vBmhi0lGAwQ6OUY=","key":"__RequestVerificationToken_L0NlemFubmVPbkRlbWFuZA__"}],"responseTime":"444","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#PrivateCarCostsAssignment/@Element\",\n    \"PersonCompanyCarGUID\": \"12345678-1234-1234-1234-123456789101\",\n    \"PersonCode\": \"26\",\n    \"EffectiveFrom\": \"2017-01-01T00:00:00\",\n    \"EffectiveTo\": \"2017-12-31T00:00:00\",\n    \"CostType\": \"Congestion Charge\",\n    \"CostAmount\": null,\n    \"BaseCostAmount\": null,\n    \"CostAmountCurrencyCode\": null,\n    \"BaseCurrencyCode\": null,\n    \"Comments\": null,\n    \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedDate\": \"2017-12-16T09:00:05.1930226Z\"\n}"}],"_postman_id":"f2b156d0-cbda-1f7f-db68-e8cd12d854fd"},{"name":"Update Private Company Cars Costs","id":"284acc6f-f411-41ea-a7d5-2ba876a475a6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"Comments\": \"Example Comments\"\n}"},"url":"{{url}}/PrivateCarCostsAssignment(PersonCompanyCarGUID=guid'[PersonCompanyCarGUID]', PersonCode='[PersonCode]', EffectiveFrom=datetime'[EffectiveFrom]', CostType='[CostType]')","description":"<p>This request will update a Private Company Car's Costs record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Request body includes only one field as an example. You can add any extra fields from the table that you require. However, some fields are read-only. \n</li>\n<li>The PersonCompanyCarGUID, PersonCode, EffectiveFrom and CostType cannot be updated as they are the the key fields for this table.</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["PrivateCarCostsAssignment(PersonCompanyCarGUID=guid'[PersonCompanyCarGUID]', PersonCode='[PersonCode]', EffectiveFrom=datetime'[EffectiveFrom]', CostType='[CostType]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"284acc6f-f411-41ea-a7d5-2ba876a475a6"},{"name":"Delete Private Company Cars Costs","id":"e6833282-5994-0642-1ffc-f9b8a5bf644e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/PrivateCarCostsAssignment(PersonCompanyCarGUID=guid'[PersonCompanyCarGUID]', PersonCode='[PersonCode]', EffectiveFrom=datetime'[EffectiveFrom]', CostType='[CostType]')","description":"<p>This request will delete a Private Company Car's Costs record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["PrivateCarCostsAssignment(PersonCompanyCarGUID=guid'[PersonCompanyCarGUID]', PersonCode='[PersonCode]', EffectiveFrom=datetime'[EffectiveFrom]', CostType='[CostType]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e6833282-5994-0642-1ffc-f9b8a5bf644e"}],"id":"147538b5-7cd0-c617-7c57-713c7d1f7cf8","description":"<p>This API enables information from the Service History tab on the Person Company Car Details screen for private cars to be retrieved and modified. </p>\n<p>The identifying keys for Company Cars - Private Cars - Costs are:</p>\n<ul>\n<li>PersonCompanyCarGUID</li>\n<li>PersonCode</li>\n<li>EffectiveFrom</li>\n<li>CostType</li>\n</ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PersonCompanyCarGUID</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>PersonCode</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>EffectiveFrom</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>EffectiveTo</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>CostType</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>CostAmount</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>BaseCostAmount</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>CostAmountCurrencyCode</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>BaseCurrencyCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Comments</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2> Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"f68c7158-cad7-4706-a9a4-eb3c862c4552","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"d8bff3c0-10f1-4e86-8857-c23d673cf981","type":"text/javascript","exec":[""]}}],"_postman_id":"147538b5-7cd0-c617-7c57-713c7d1f7cf8"}],"id":"06adc43d-6621-0c40-79d2-217fb627e24b","_postman_id":"06adc43d-6621-0c40-79d2-217fb627e24b","description":""}],"id":"6ec712ba-925b-cd25-0f45-46a7288122a5","_postman_id":"6ec712ba-925b-cd25-0f45-46a7288122a5","description":""},{"name":"Calendar Events","item":[{"name":"Calendar Events - Person","item":[{"name":"List of Person Calendar Events","id":"f374bf32-3976-f0a6-cf4e-824898e05f39","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/PersonCalendarEvents?$format=json","description":"<p>This request will return a list of Person Calendar Events from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["PersonCalendarEvents"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"8b02e5d1-723e-bf30-11db-6d12f0895cf5","name":"List of Person Calendar Events","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/PersonCalendarEvents?$format=json","host":["{{url}}"],"path":["PersonCalendarEvents"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"no-cache","description":""},{"name":"connection","key":"connection","value":"keep-alive","description":""},{"name":"content-length","key":"content-length","value":"554","description":""},{"name":"content-type","key":"content-type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","description":""},{"name":"dataserviceversion","key":"dataserviceversion","value":"3.0;","description":""},{"name":"date","key":"date","value":"Thu, 27 Jul 2017 15:13:47 GMT","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"847","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#PersonCalendarEvents\",\n    \"value\": [\n        {\n            \"PersonCalendarEventsGUID\": \"cf22a2f2-d70e-437f-867d-0ff0345b3820\",\n            \"PersonCode\": \"27\",\n            \"Description\": null,\n            \"Comments\": null,\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2016-02-29T16:51:33.48Z\",\n            \"EffectiveFromDate\": \"2016-03-14T00:00:00\",\n            \"EffectiveToDate\": \"2016-03-18T00:00:00\",\n            \"EffectiveFromTime\": null,\n            \"EffectiveToTime\": null,\n            \"EventType\": \"Working From Home\",\n            \"AllDay\": 1,\n            \"FullName\": \"Cheryl Abrahams\"\n        }\n    ]\n}"}],"_postman_id":"f374bf32-3976-f0a6-cf4e-824898e05f39"},{"name":"Add a Person Calendar Event","id":"6bb2dca4-bc7a-70f7-12da-ac22a3675626","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"PersonCalendarEventsGUID\": \"12345678-1234-1234-1234-123456789101\",\n  \"PersonCode\": \"26\",\n  \"EffectiveFromDate\": \"2017-10-18T00:00:00\",\n  \"EffectiveToDate\": \"2017-10-18T00:00:00\",\n  \"EventType\": \"Travelling\"\n}"},"url":"{{url}}/PersonCalendarEvents?$format=json","description":"<p>This request will insert a Calendar Event record for an employee.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n<li>To add a new Person Calendar Event, you need to enter a unique PersonCalendarEventsGUID for each new record in the following format: '12345678-1234-1234-1234-123456789101'\n</li>\n</ul>","urlObject":{"path":["PersonCalendarEvents"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"1ef8cd3d-23b5-b3db-184f-56888f111e64","name":"Add a Person Calendar Event","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"PersonCalendarEventsGUID\": \"12345678-1234-1234-1234-123456789101\",\n\t\"PersonCode\": \"26\",\n\t\"EffectiveFromDate\": \"2017-10-18T00:00:00\",\n\t\"EffectiveToDate\": \"2017-10-18T00:00:00\",\n\t\"EventType\": \"Travelling\"\n}"},"url":{"raw":"{{url}}/PersonCalendarEvents?$format=json","host":["{{url}}"],"path":["PersonCalendarEvents"],"query":[{"key":"$format","value":"json"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"539","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","name":"Content-Type","description":""},{"key":"DataServiceVersion","value":"3.0;","name":"DataServiceVersion","description":""},{"key":"Date","value":"Mon, 08 Jan 2018 18:17:21 GMT","name":"Date","description":""},{"key":"Location","value":"https://showcase.cezanneondemand.com/cezanneondemand/v2/DataService.svc/PersonCalendarEvents(PersonCalendarEventsGUID=guid'12345678-1234-1234-1234-123456789101',PersonCode='26')","name":"Location","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"10FF1C8527C119F7CB4E7C4120B8992C37BA1C8AE5234A9C7292845F5BF38D235F1BB6B2EF2F3728FEB7A384928DF969505638D3077B989C224A35AD3FE86D663EBCCEECF12BB193FF45C084F261369A94F105CDE91537455E5B49C713A694D62D34D7A7888AD9B597BDD3246C7569B4C58B10C159A04F82DF9242075831F7E38CE8DEDD0EEAACDD6CF905FEA56D401CC4DB3789AF82193C78C9A4D6A124EB0BDE5B27B6C1663E44BDFDC68E369CC4FD3AE57BC82F41E15393895D53FCBF45BEF8EE38E5FAC9F414B14AF836AC55E69E37B3A04760F8929B12DD607AB5345FE24508BB570572B35BF0EE26ECE04E899FDAEA1A227AC0432679902DA7737F2B5B8C91E71F7F5A858689E6919028A38ADB","key":"CF_SID"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"-1","key":"CF_SLV"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"/1cGaxGPTBHcD8RBFPNm12FtDYLb3lMpw7XIBqrYFhv/PCOTAE7wxR40Odzc4CqCBqtAOZUr4ANdr0FCU5+yshc/OebxJq3yb+4ZnDyqpu6AwS+bVPF+pa/xxdPnk2Wb9Paf0Dv+yZV/0G7/d6kslgWPqvC6vBmhi0lGAwQ6OUY=","key":"__RequestVerificationToken_L0NlemFubmVPbkRlbWFuZA__"}],"responseTime":"533","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#PersonCalendarEvents/@Element\",\n    \"PersonCalendarEventsGUID\": \"12345678-1234-1234-1234-123456789101\",\n    \"PersonCode\": \"26\",\n    \"Description\": null,\n    \"Comments\": null,\n    \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedDate\": \"2017-12-16T09:00:04.5680245Z\",\n    \"EffectiveFromDate\": \"2017-10-18T00:00:00\",\n    \"EffectiveToDate\": \"2017-10-18T00:00:00\",\n    \"EffectiveFromTime\": null,\n    \"EffectiveToTime\": null,\n    \"EventType\": \"Travelling\",\n    \"AllDay\": 1\n}"}],"_postman_id":"6bb2dca4-bc7a-70f7-12da-ac22a3675626"},{"name":"Update a Person Calendar Event","id":"d4443210-467e-48ee-81d2-76fab02c01f9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"Comments\": \"Example Comments\"\n}"},"url":"{{url}}/PersonCalendarEvents(PersonCalendarEventsGUID=guid'[PersonCalendarEventsGUID]', PersonCode='[PersonCode]')","description":"<p>This request will update an employee's Calendar Event record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Request body includes only one field as an example. You can add any extra fields from the table that you require. However, some fields are read-only. \n</li>\n<li>The PersonCalendarEventsGUID and PersonCode cannot be updated as they are the the key fields for this table.</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["PersonCalendarEvents(PersonCalendarEventsGUID=guid'[PersonCalendarEventsGUID]', PersonCode='[PersonCode]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d4443210-467e-48ee-81d2-76fab02c01f9"},{"name":"Delete a Person Calendar Event","id":"760815dc-f351-bb5f-a012-832dba5bc6d2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/PersonCalendarEvents(PersonCalendarEventsGUID=guid'[PersonCalendarEventsGUID]', PersonCode='[PersonCode]')","description":"<p>This request will delete an employee's Calendar Event record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["PersonCalendarEvents(PersonCalendarEventsGUID=guid'[PersonCalendarEventsGUID]', PersonCode='[PersonCode]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"760815dc-f351-bb5f-a012-832dba5bc6d2"}],"id":"eacf372b-f200-ed87-6c71-31609ea81abb","description":"<p>This API enables all information from the Person Calendar Events screen to be retrieved and modified.</p>\n<p>The identifying keys for Person Calendar Events are:</p>\n<ul><li><div>PersonCalendarEventsGUID</div></li><li><div>PersonCode</div></li></ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PersonCalendarEventsGUID</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>PersonCode</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Comments</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EffectiveFromDate</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>EffectiveToDate</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>EffectiveFromTime</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>EffectiveToTime</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>EventType</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>AllDay</td>\n<td></td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>FullName</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>CalendarEventStatus</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>CalendarEventStatusCode</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>CalendarEventStatusApproverGuid</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>CalendarEventStatusApproverName</td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to their and all subordinate records.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to their own record.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"9f209d98-b4cf-4510-9d4a-611d941035b4","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"1042a341-9bde-487a-9a84-52a00bbe4b9a","type":"text/javascript","exec":[""]}}],"_postman_id":"eacf372b-f200-ed87-6c71-31609ea81abb"},{"name":"Calendar Events - Company","item":[{"name":"List of Company Calendar Events","id":"116527e5-3c2f-1de5-2f04-86817499957f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/CompanyCalendarEvents?$format=json","description":"<p>This request will return a list of Company Calendar Events from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["CompanyCalendarEvents"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"946ab7e6-7c9e-47f0-9d91-fcbc77dbc3d1","name":"List of Company Calendar Events","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token","disabled":false}],"url":{"raw":"{{url}}/CompanyCalendarEvents?$format=json","host":["{{url}}"],"path":["CompanyCalendarEvents"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Content-Length","value":"652","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"DataServiceVersion","value":"3.0;","name":"DataServiceVersion","description":"Custom header"},{"key":"Date","value":"Fri, 27 Jul 2018 12:22:17 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#CompanyCalendarEvents\",\n    \"value\": [\n        {\n            \"CompanyAdHocEventsGUID\": \"315ffa21-84c4-44b2-8740-40e6f3ea654g\",\n            \"EffectiveFromDate\": \"2018-07-26T00:00:00\",\n            \"EffectiveToDate\": \"2018-07-26T00:00:00\",\n            \"Title\": \"Company Kick-Off Meeting\",\n            \"Comments\": null,\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2018-07-26T15:33:53.3Z\",\n            \"EffectiveFromTime\": null,\n            \"EffectiveToTime\": null,\n            \"AllDay\": 1,\n            \"CompanyCode\": \"OMUK\",\n            \"CompanyLocationCode\": \"LDN\",\n            \"CompanyLocationName\": \"London\",\n            \"PreventAbsence\": 0,\n            \"CompanyName\": \"Omnicrom UK\",\n            \"Colour\": null\n        }\n    ]\n}"}],"_postman_id":"116527e5-3c2f-1de5-2f04-86817499957f"},{"name":"Add a Company Calendar Event","id":"866ca657-d1d4-da75-8209-4213daca98bc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"CompanyAdHocEventsGUID\": \"12345678-1234-1234-1234-123456789101\",\n  \"EffectiveFromDate\": \"2017-10-18T00:00:00\",\n  \"EffectiveToDate\": \"2017-10-18T00:00:00\",\n  \"Title\": \"Kick Off Meeting\",\n  \"CompanyCode\": \"OMUK\"\n}"},"url":"{{url}}/CompanyCalendarEvents?$format=json","description":"<p>This request will insert a Calendar Event record for a company.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n<li>To add a new Company Calendar Event, you need to enter a unique CompanyAdHocEventsGUID for each new record in the following format: '12345678-1234-1234-1234-123456789101'\n</li>\n</ul>","urlObject":{"path":["CompanyCalendarEvents"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"d250d8c9-a31c-f17f-8d87-cf1d7184d54f","name":"Add a Company Calendar Event","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"CompanyAdHocEventsGUID\": \"12345678-1234-1234-1234-123456789101\",\n\t\"EffectiveFromDate\": \"2017-10-18T00:00:00\",\n\t\"EffectiveToDate\": \"2017-10-18T00:00:00\",\n\t\"Title\": \"Kick Off Meeting\",\n\t\"CompanyCode\": \"OMUK\"\n}"},"url":{"raw":"{{url}}/CompanyCalendarEvents?$format=json","host":["{{url}}"],"path":["CompanyCalendarEvents"],"query":[{"key":"$format","value":"json"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"524","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","name":"Content-Type","description":""},{"key":"DataServiceVersion","value":"3.0;","name":"DataServiceVersion","description":""},{"key":"Date","value":"Mon, 08 Jan 2018 18:18:59 GMT","name":"Date","description":""},{"key":"Location","value":"https://showcase.cezanneondemand.com/cezanneondemand/v2/DataService.svc/CompanyCalendarEvents(CompanyAdHocEventsGUID=guid'12345678-1234-1234-1234-123456789101',CompanyCode='OMUK')","name":"Location","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"10FF1C8527C119F7CB4E7C4120B8992C37BA1C8AE5234A9C7292845F5BF38D235F1BB6B2EF2F3728FEB7A384928DF969505638D3077B989C224A35AD3FE86D663EBCCEECF12BB193FF45C084F261369A94F105CDE91537455E5B49C713A694D62D34D7A7888AD9B597BDD3246C7569B4C58B10C159A04F82DF9242075831F7E38CE8DEDD0EEAACDD6CF905FEA56D401CC4DB3789AF82193C78C9A4D6A124EB0BDE5B27B6C1663E44BDFDC68E369CC4FD3AE57BC82F41E15393895D53FCBF45BEF8EE38E5FAC9F414B14AF836AC55E69E37B3A04760F8929B12DD607AB5345FE24508BB570572B35BF0EE26ECE04E899FDAEA1A227AC0432679902DA7737F2B5B8C91E71F7F5A858689E6919028A38ADB","key":"CF_SID"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"-1","key":"CF_SLV"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"/1cGaxGPTBHcD8RBFPNm12FtDYLb3lMpw7XIBqrYFhv/PCOTAE7wxR40Odzc4CqCBqtAOZUr4ANdr0FCU5+yshc/OebxJq3yb+4ZnDyqpu6AwS+bVPF+pa/xxdPnk2Wb9Paf0Dv+yZV/0G7/d6kslgWPqvC6vBmhi0lGAwQ6OUY=","key":"__RequestVerificationToken_L0NlemFubmVPbkRlbWFuZA__"}],"responseTime":"2043","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#CompanyCalendarEvents/@Element\",\n    \"CompanyAdHocEventsGUID\": \"12345678-1234-1234-1234-123456789101\",\n    \"EffectiveFromDate\": \"2017-10-18T00:00:00\",\n    \"EffectiveToDate\": \"2017-10-18T00:00:00\",\n    \"Title\": \"Kick Off Meeting\",\n    \"Comments\": null,\n    \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedDate\": \"2017-12-16T09:00:04.5836495Z\",\n    \"EffectiveFromTime\": null,\n    \"EffectiveToTime\": null,\n    \"AllDay\": 1,\n    \"CompanyCode\": \"OMUK\"\n}"}],"_postman_id":"866ca657-d1d4-da75-8209-4213daca98bc"},{"name":"Update a Company Calendar Event","id":"13714046-ec6c-4d6e-9bc3-1f2c90cfccf8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"Comments\": \"Example Comments\"\n}"},"url":"{{url}}/CompanyCalendarEvents(CompanyAdHocEventsGUID=guid'[CompanyAdHocEventsGUID]', CompanyCode='[CompanyCode]')","description":"<p>This request will delete a company's Calendar Event record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Request body includes only one field as an example. You can add any extra fields from the table that you require. However, some fields are read-only. \n</li>\n<li>The CompanyAdHocEventsGUID and CompanyCode cannot be updated as they are the the key fields for this table.</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["CompanyCalendarEvents(CompanyAdHocEventsGUID=guid'[CompanyAdHocEventsGUID]', CompanyCode='[CompanyCode]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"13714046-ec6c-4d6e-9bc3-1f2c90cfccf8"},{"name":"Delete a Company Calendar Event","id":"12699dd1-0730-4258-259e-90d2898354d8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/CompanyCalendarEvents(CompanyAdHocEventsGUID=guid'[CompanyAdHocEventsGUID]', CompanyCode='[CompanyCode]')","description":"<p>This request will delete a company's Calendar Event record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["CompanyCalendarEvents(CompanyAdHocEventsGUID=guid'[CompanyAdHocEventsGUID]', CompanyCode='[CompanyCode]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"12699dd1-0730-4258-259e-90d2898354d8"}],"id":"d56fef87-1fd0-80fa-17b0-db198689346b","description":"<p>This API enables all information from the Company Calendar Events screen to be retrieved and modified.</p>\n<p>The identifying keys for Company Calendar Events are:</p>\n<ul><li><p>CompanyAdHocEventsGUID</p></li><li><p>CompanyCode</p></li></ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CompanyAdHocEventsGUID</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>EffectiveFromDate</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>EffectiveToDate</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>Title</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>Comments</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EffectiveFromTime</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>EffectiveToTime</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>AllDay</td>\n<td></td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>CompanyCode</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>CompanyLocationCode</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>CompanyLocationName</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>PreventAbsence</td>\n<td></td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>CompanyName</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Colour</td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to events within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has access to events as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"d6a2a5e1-e1b7-4628-af32-8815e8903f34","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"36f444ae-4b9c-4a02-b940-18c625d66f30","type":"text/javascript","exec":[""]}}],"_postman_id":"d56fef87-1fd0-80fa-17b0-db198689346b"},{"name":"Calendar Events - Org Unit","item":[{"name":"List of Org Unit Calendar Events","id":"325f3963-4a17-4718-9bcb-0c0fbda679dd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"url":"{{url}}/OrgUnitCalendarEvents?$format=json","description":"<p>This request will return a list of Org Unit Calendar Events from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["OrgUnitCalendarEvents"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[],"_postman_id":"325f3963-4a17-4718-9bcb-0c0fbda679dd"},{"name":"Add an Org Unit Calendar Event","id":"48f5c68c-01a2-4569-9f3e-beb203dcd76d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"OrgUnitAdHocEventsGUID\": \"12345678-1234-1234-1234-123456789104\",\n  \"EffectiveFromDate\": \"2017-10-18T00:00:00\",\n  \"EffectiveToDate\": \"2017-10-18T00:00:00\",\n  \"Title\": \"Board Meeting\",\n  \"OrgUnitCode\": \"BRD\"\n}"},"url":"{{url}}/OrgUnitCalendarEvents?$format=json","description":"<p>This request will insert a Calendar Event record for an org unit.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n<li>To add a new Org Unit Calendar Event, you need to enter a unique OrgUnitAdHocEventsGUID for each new record in the following format: '12345678-1234-1234-1234-123456789101'\n</li>\n</ul>","urlObject":{"path":["OrgUnitCalendarEvents"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"},{"disabled":true,"key":"$top","value":"1"}],"variable":[]}},"response":[],"_postman_id":"48f5c68c-01a2-4569-9f3e-beb203dcd76d"},{"name":"Update an Org Unit Calendar Event","id":"6fcdf196-a590-4503-bc29-3a7e520326bc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"Comments\": \"Example Comments\"\n}"},"url":"{{url}}/OrgUnitCalendarEvents(OrgUnitAdHocEventsGUID=guid'[OrgUnitAdHocEventsGUID]', OrgUnitCode='[OrgUnitCode]')","description":"<p>This request will update an org unit's Calendar Event record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Request body includes only one field as an example. You can add any extra fields from the table that you require. However, some fields are read-only. \n</li>\n<li>The OrgUnitAdHocEventsGUID and OrgUnitCode cannot be updated as they are the the key fields for this table.</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["OrgUnitCalendarEvents(OrgUnitAdHocEventsGUID=guid'[OrgUnitAdHocEventsGUID]', OrgUnitCode='[OrgUnitCode]')"],"host":["{{url}}"],"query":[{"disabled":true,"key":"$top","value":"1"}],"variable":[]}},"response":[],"_postman_id":"6fcdf196-a590-4503-bc29-3a7e520326bc"},{"name":"Delete an Org Unit Calendar Event","id":"d2cc7e3a-20cc-40f1-b7e2-10b2742e5444","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"OrgUnitAdHocEventsGUID\": \"12345678-1234-1234-1234-123456789104\",\n  \"EffectiveFromDate\": \"2017-10-18T00:00:00\",\n  \"EffectiveToDate\": \"2017-10-18T00:00:00\",\n  \"Title\": \"Board Meeting\",\n  \"OrgUnitCode\": \"BRD\"\n}"},"url":"{{url}}/OrgUnitCalendarEvents(OrgUnitAdHocEventsGUID=guid'[OrgUnitAdHocEventsGUID]', OrgUnitCode='[OrgUnitCode]')","description":"<p>This request will delete an org unit's Calendar Event record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["OrgUnitCalendarEvents(OrgUnitAdHocEventsGUID=guid'[OrgUnitAdHocEventsGUID]', OrgUnitCode='[OrgUnitCode]')"],"host":["{{url}}"],"query":[{"disabled":true,"key":"$top","value":"1"}],"variable":[]}},"response":[],"_postman_id":"d2cc7e3a-20cc-40f1-b7e2-10b2742e5444"}],"id":"18941188-d570-4347-8c36-f2ec81da05a9","description":"<p>This API enables all information from the Org Unit Calendar Events screen to be retrieved and modified.</p>\n<p>The identifying keys for Org Unit Calendar Events are:</p>\n<ul><li><p>OrgUnitAdHocEventsGUID</p></li><li><p>OrgUnitCode</p></li></ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>OrgUnitAdHocEventsGUID</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>EffectiveFromDate</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>EffectiveToDate</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>Title</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>Comments</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EffectiveFromTime</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>EffectiveToTime</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>AllDay</td>\n<td></td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>OrgUnitCode</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>PreventAbsence</td>\n<td></td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>OrgUnitName</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Colour</td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to every event within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has access to events as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"0794ed10-106e-4a3d-b66d-161c4cddd6ff","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"356eae39-998b-46d7-9cf2-74b3eac9368d","type":"text/javascript","exec":[""]}}],"_postman_id":"18941188-d570-4347-8c36-f2ec81da05a9"}],"id":"965da2c0-622e-906e-a6b0-082313eafef2","_postman_id":"965da2c0-622e-906e-a6b0-082313eafef2","description":""},{"name":"Timesheets","item":[{"name":"Projects","item":[{"name":"List of Timesheet Projects","id":"e4aceb1f-bead-07b9-4244-fbc8ef1a0b1b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"clientSecret":"<client-secret>","clientId":"<client-id>","accessToken":"<access-token>","tokenType":"<token-type>","challengeAlgorithm":"<challenge-algorithm>","scope":"<scope>","grant_type":"<grant_type>","client_authentication":"<client_authentication>","accessTokenUrl":"<access-token-url>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/TimesheetProjects?$format=json","description":"<p>This request will return a list of Timesheet Projects from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["TimesheetProjects"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"c12b3a59-db56-4f33-828d-87d1da6ca94b","name":"List of Timesheet Projects","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/TimesheetProjects?$format=json","host":["{{url}}"],"path":["TimesheetProjects"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Aug 2022 18:04:14 GMT"},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8"},{"key":"Content-Length","value":"572"},{"key":"Connection","value":"keep-alive"},{"key":"Set-Cookie","value":"AWSALB=CSO3I00pS0MRibCued9+e9ZNfc2fKVrJp9ngeVAniku8sOs7xndp5D/Ld9J482RUBXcExm9iQupJhY/c0ymJ0XOses0CwRVav/ophqe1KyvfllriC6beDZdy/Icx; Expires=Tue, 30 Aug 2022 18:04:14 GMT; Path=/"},{"key":"Set-Cookie","value":"AWSALBCORS=CSO3I00pS0MRibCued9+e9ZNfc2fKVrJp9ngeVAniku8sOs7xndp5D/Ld9J482RUBXcExm9iQupJhY/c0ymJ0XOses0CwRVav/ophqe1KyvfllriC6beDZdy/Icx; Expires=Tue, 30 Aug 2022 18:04:14 GMT; Path=/; SameSite=None; Secure"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"DataServiceVersion","value":"3.0;"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#TimesheetProjects\",\n    \"value\": [\n        {\n            \"ProjectGUID\": \"7fb294ef-5bd2-4628-8736-3f4ca52e9185\",\n            \"EffectiveFrom\": \"2017-01-01T00:00:00\",\n            \"EffectiveTo\": \"2017-12-31T00:00:00\",\n            \"ProjectCode\": \"1234\",\n            \"ProjectName\": \"ABC Website Redesign\",\n            \"TranslatedProjectName\": \"ABC Website Redesign\",\n            \"Description\": null,\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2022-08-23T18:04:09.477Z\",\n            \"TranslatedCompanyName\": null,\n            \"CompanyCode\": null\n        }\n    ]\n}"}],"_postman_id":"e4aceb1f-bead-07b9-4244-fbc8ef1a0b1b"},{"name":"Add a Timesheet Project","id":"2f50690a-612d-7d15-bf1d-8d4968b1bb00","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"EffectiveFrom\": \"2017-01-01T00:00:00\",\n  \"EffectiveTo\": \"2017-12-31T00:00:00\",\n  \"ProjectCode\": \"1234\",\n  \"ProjectName\": \"ABC Website Redesign\"\n}"},"url":"{{url}}/TimesheetProjects?$format=json","description":"<p>This request will insert a Timesheet Project record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["TimesheetProjects"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"a98d8de1-7f66-49e6-8a27-4fa981e55c46","name":"Add a Timesheet Project","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"EffectiveFrom\": \"2017-01-01T00:00:00\",\n\t\"EffectiveTo\": \"2017-12-31T00:00:00\",\n\t\"ProjectCode\": \"1234\",\n\t\"ProjectName\": \"ABC Website Redesign\"\n}"},"url":{"raw":"{{url}}/TimesheetProjects?$format=json","host":["{{url}}"],"path":["TimesheetProjects"],"query":[{"key":"$format","value":"json"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"450","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","name":"Content-Type","description":""},{"key":"DataServiceVersion","value":"3.0;","name":"DataServiceVersion","description":""},{"key":"Date","value":"Tue, 09 Jan 2018 11:10:15 GMT","name":"Date","description":""},{"key":"Location","value":"https://showcase.cezanneondemand.com/cezanneondemand/v2/DataService.svc/TimesheetProjects('1234')","name":"Location","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"10FF1C8527C119F7CB4E7C4120B8992C37BA1C8AE5234A9C7292845F5BF38D235F1BB6B2EF2F3728FEB7A384928DF969505638D3077B989C224A35AD3FE86D663EBCCEECF12BB193FF45C084F261369A94F105CDE91537455E5B49C713A694D62D34D7A7888AD9B597BDD3246C7569B4C58B10C159A04F82DF9242075831F7E38CE8DEDD0EEAACDD6CF905FEA56D401CC4DB3789AF82193C78C9A4D6A124EB0BDE5B27B6C1663E44BDFDC68E369CC4FD3AE57BC82F41E15393895D53FCBF45BEF8EE38E5FAC9F414B14AF836AC55E69E37B3A04760F8929B12DD607AB5345FE24508BB570572B35BF0EE26ECE04E899FDAEA1A227AC0432679902DA7737F2B5B8C91E71F7F5A858689E6919028A38ADB","key":"CF_SID"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"-1","key":"CF_SLV"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"/1cGaxGPTBHcD8RBFPNm12FtDYLb3lMpw7XIBqrYFhv/PCOTAE7wxR40Odzc4CqCBqtAOZUr4ANdr0FCU5+yshc/OebxJq3yb+4ZnDyqpu6AwS+bVPF+pa/xxdPnk2Wb9Paf0Dv+yZV/0G7/d6kslgWPqvC6vBmhi0lGAwQ6OUY=","key":"__RequestVerificationToken_L0NlemFubmVPbkRlbWFuZA__"}],"responseTime":"567","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#TimesheetProjects/@Element\",\n    \"ProjectGUID\": null,\n    \"EffectiveFrom\": \"2017-01-01T00:00:00\",\n    \"EffectiveTo\": \"2017-12-31T00:00:00\",\n    \"ProjectCode\": \"1234\",\n    \"ProjectName\": \"ABC Website Redesign\",\n    \"TranslatedProjectName\": null,\n    \"Description\": null,\n    \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedDate\": \"2017-12-16T09:00:04.5836495Z\"\n}"}],"_postman_id":"2f50690a-612d-7d15-bf1d-8d4968b1bb00"},{"name":"Update a Timesheet Project","id":"34774a79-10a3-4527-805d-d192eaf0b58e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"Description\": \"Example Description\"\n}"},"url":"{{url}}/TimesheetProjects(ProjectCode='[ProjectCode]')","description":"<p>This request will update a Timesheet Project record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Request body includes only one field as an example. You can add any extra fields from the table that you require. However, some fields are read-only. \n</li>\n<li>The ProjectCode cannot be updated as it is the the key field for this table.</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["TimesheetProjects(ProjectCode='[ProjectCode]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"34774a79-10a3-4527-805d-d192eaf0b58e"},{"name":"Delete a Timesheet Project","id":"201b35c3-4bd7-9951-acc3-fa4f6502b24c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/TimesheetProjects(ProjectCode='[ProjectCode]')","description":"<p>This request will delete a Timesheet Project record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["TimesheetProjects(ProjectCode='[ProjectCode]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"201b35c3-4bd7-9951-acc3-fa4f6502b24c"}],"id":"10f4182e-54b9-fae6-27a5-227b9b8e8e91","description":"<p>This API enables the Timesheet Project Details screen to be retrieved and modified.</p>\n<p>The identifying key for Timesheet Projects is:</p>\n<ul><li><p>ProjectCode</p></li></ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ProjectGUID</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EffectiveFrom</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>EffectiveTo</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>ProjectCode</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>ProjectName</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>TranslatedProjectName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TranslatedCompanyName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>CompanyCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to their and all subordinate records.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"006f00cb-d199-4605-81c3-e776afe24d27","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"70944d7d-f88b-4d81-ae95-bb5d526dfe04","type":"text/javascript","exec":[""]}}],"_postman_id":"10f4182e-54b9-fae6-27a5-227b9b8e8e91"},{"name":"Activities","item":[{"name":"List of Timesheet Project Activities","id":"2107f1e9-e824-135f-3199-61c0f0bd0374","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/TimesheetProjectActivities?$format=json","description":"<p>This request will return a list of Timesheet Project Activities from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["TimesheetProjectActivities"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"574f1e61-1d5a-8cee-caf7-0baf2f656f52","name":"List of Timesheet Project Activities","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/TimesheetProjectActivities?$format=json","host":["{{url}}"],"path":["TimesheetProjectActivities"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"no-cache","description":""},{"name":"connection","key":"connection","value":"keep-alive","description":""},{"name":"content-length","key":"content-length","value":"753","description":""},{"name":"content-type","key":"content-type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","description":""},{"name":"dataserviceversion","key":"dataserviceversion","value":"3.0;","description":""},{"name":"date","key":"date","value":"Mon, 31 Jul 2017 16:20:10 GMT","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"986","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#TimesheetProjectActivities\",\n    \"value\": [\n        {\n            \"ProjectActivitiesGUID\": \"e817d229-00c1-48ac-9ba1-a51521c618ea\",\n            \"TimesheetActivityName\": \"Client Meeting\",\n            \"TimesheetActivityTranslatedName\": \"Client Meeting\",\n            \"Description\": null,\n            \"TranslatedDescription\": null,\n            \"EffectiveFrom\": \"2014-10-22T00:00:00\",\n            \"EffectiveTo\": \"2999-12-31T00:00:00\",\n            \"ProjectGUID\": \"728e80ab-6281-4b7e-ab1b-4c42e5df9e24\",\n            \"ProjectCode\": \"ABC Website Redesign\",\n            \"ProjectName\": \"ABC Website Redesign\",\n            \"TranslatedProjectName\": \"ABC Website Redesign\",\n            \"ActivityType\": \"Client Meeting\",\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2015-05-14T09:39:47.923Z\"\n        }\n    ]\n}"}],"_postman_id":"2107f1e9-e824-135f-3199-61c0f0bd0374"},{"name":"Add a Timesheet Project Activity","id":"0404ab45-669d-e630-ecdf-24cb2906ab0d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"TimesheetActivityName\": \"Client Meeting\",\n  \"EffectiveFrom\": \"2017-01-01T00:00:00\",\n  \"EffectiveTo\": \"2017-12-31T00:00:00\",\n  \"ProjectGUID\": \"7fb294ef-5bd2-4628-8736-3f4ca52e9185\",\n  \"ProjectCode\": \"1234\"\n}"},"url":"{{url}}/TimesheetProjectActivities?$format=json","description":"<p>This request will insert a Timesheet Project Activity record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["TimesheetProjectActivities"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"fb36aac7-f1db-39b1-64b7-16f25f3ef3ca","name":"Add a Timesheet Project Activity","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"TimesheetActivityName\": \"Client Meeting\",\n\t\"EffectiveFrom\": \"2017-01-01T00:00:00\",\n\t\"EffectiveTo\": \"2017-12-31T00:00:00\",\n\t\"ProjectGUID\": \"7fb294ef-5bd2-4628-8736-3f4ca52e9185\",\n\t\"ProjectCode\": \"1234\"\n}"},"url":{"raw":"{{url}}/TimesheetProjectActivities?$format=json","host":["{{url}}"],"path":["TimesheetProjectActivities"],"query":[{"key":"$format","value":"json"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"633","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","name":"Content-Type","description":""},{"key":"DataServiceVersion","value":"3.0;","name":"DataServiceVersion","description":""},{"key":"Date","value":"Tue, 09 Jan 2018 11:24:19 GMT","name":"Date","description":""},{"key":"Location","value":"https://showcase.cezanneondemand.com/cezanneondemand/v2/DataService.svc/TimesheetProjectActivities(ProjectCode='1234',TimesheetActivityName='Client%20Meeting')","name":"Location","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"10FF1C8527C119F7CB4E7C4120B8992C37BA1C8AE5234A9C7292845F5BF38D235F1BB6B2EF2F3728FEB7A384928DF969505638D3077B989C224A35AD3FE86D663EBCCEECF12BB193FF45C084F261369A94F105CDE91537455E5B49C713A694D62D34D7A7888AD9B597BDD3246C7569B4C58B10C159A04F82DF9242075831F7E38CE8DEDD0EEAACDD6CF905FEA56D401CC4DB3789AF82193C78C9A4D6A124EB0BDE5B27B6C1663E44BDFDC68E369CC4FD3AE57BC82F41E15393895D53FCBF45BEF8EE38E5FAC9F414B14AF836AC55E69E37B3A04760F8929B12DD607AB5345FE24508BB570572B35BF0EE26ECE04E899FDAEA1A227AC0432679902DA7737F2B5B8C91E71F7F5A858689E6919028A38ADB","key":"CF_SID"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"-1","key":"CF_SLV"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"/1cGaxGPTBHcD8RBFPNm12FtDYLb3lMpw7XIBqrYFhv/PCOTAE7wxR40Odzc4CqCBqtAOZUr4ANdr0FCU5+yshc/OebxJq3yb+4ZnDyqpu6AwS+bVPF+pa/xxdPnk2Wb9Paf0Dv+yZV/0G7/d6kslgWPqvC6vBmhi0lGAwQ6OUY=","key":"__RequestVerificationToken_L0NlemFubmVPbkRlbWFuZA__"}],"responseTime":"471","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#TimesheetProjectActivities/@Element\",\n    \"ProjectActivitiesGUID\": null,\n    \"TimesheetActivityName\": \"Client Meeting\",\n    \"TimesheetActivityTranslatedName\": null,\n    \"Description\": null,\n    \"TranslatedDescription\": null,\n    \"EffectiveFrom\": \"2017-01-01T00:00:00\",\n    \"EffectiveTo\": \"2017-12-31T00:00:00\",\n    \"ProjectGUID\": \"7fb294ef-5bd2-4628-8736-3f4ca52e9185\",\n    \"ProjectCode\": \"1234\",\n    \"ProjectName\": null,\n    \"TranslatedProjectName\": null,\n    \"ActivityType\": null,\n    \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedDate\": \"2017-12-16T09:00:04.6461186Z\"\n}"}],"_postman_id":"0404ab45-669d-e630-ecdf-24cb2906ab0d"},{"name":"Update a Timesheet Project Activity","id":"72f74204-d37c-4985-8762-84b98ebf7819","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"Description\": \"Example Description\"\n}"},"url":"{{url}}/TimesheetProjectActivities(TimesheetActivityName='[TimesheetActivityName]', ProjectCode='[ProjectCode]')","description":"<p>This request will update a Timesheet Project Activity record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Request body includes only one field as an example. You can add any extra fields from the table that you require. However, some fields are read-only. \n</li>\n<li>The TimesheetActivityName and ProjectCode cannot be updated as they are the the key fields for this table.</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["TimesheetProjectActivities(TimesheetActivityName='[TimesheetActivityName]', ProjectCode='[ProjectCode]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"72f74204-d37c-4985-8762-84b98ebf7819"},{"name":"Delete a Timesheet Project Activity","id":"6a602709-480b-afa1-9ec2-80e0a0b96380","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/TimesheetProjectActivities(TimesheetActivityName='[TimesheetActivityName]', ProjectCode='[ProjectCode]')","description":"<p>This request will delete a Timesheet Project Activity record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["TimesheetProjectActivities(TimesheetActivityName='[TimesheetActivityName]', ProjectCode='[ProjectCode]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6a602709-480b-afa1-9ec2-80e0a0b96380"}],"id":"778f08f3-4fe8-7332-7fe9-da1d6d9e3d54","description":"<p>This API enables the Project Activities screen to be retrieved and modified. </p>\n<p>The identifying keys for Timesheet Projects - Activities are:</p>\n<ul>\n<li>TimesheetActivityName</li>\n<li>ProjectCode</li>\n</ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ProjectActivitiesGUID</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TimesheetActivityName</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>TimesheetActivityTranslatedName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>TranslatedDescription</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EffectiveFrom</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>EffectiveTo</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>ProjectGUID</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ProjectCode</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>ProjectName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TranslatedProjectName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ActivityType</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LinkWithAbsenceTimeWorked</td>\n<td></td>\n<td>1 = Ticked, 0 = Not Ticked</td>\n</tr>\n</tbody>\n</table>\n</div><h2> Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to their and all subordinate records.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to their own record.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"098c297f-c599-4ea3-bb08-599a49f7b1a7","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"0238ca04-5a12-4308-ae61-88538d131dd6","type":"text/javascript","exec":[""]}}],"_postman_id":"778f08f3-4fe8-7332-7fe9-da1d6d9e3d54"},{"name":"Activity Time Types","item":[{"name":"List of Timesheet Project Activity Time Types","id":"9f9ddad7-e974-db61-7d89-bc77c6f0ff4b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"clientSecret":"<client-secret>","clientId":"<client-id>","accessToken":"<access-token>","tokenType":"<token-type>","challengeAlgorithm":"<challenge-algorithm>","scope":"<scope>","grant_type":"<grant_type>","client_authentication":"<client_authentication>","accessTokenUrl":"<access-token-url>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/TimesheetProjectActivityTimeTypes?$format=json","description":"<p>This request will return a list of Activity Time Types from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["TimesheetProjectActivityTimeTypes"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"dac35192-1c7d-4b2a-aec5-193e595b931c","name":"List of Timesheet Project Activity Time Types","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/TimesheetProjectActivityTimeTypes?$format=json","host":["{{url}}"],"path":["TimesheetProjectActivityTimeTypes"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Aug 2022 18:10:41 GMT"},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8"},{"key":"Content-Length","value":"595"},{"key":"Connection","value":"keep-alive"},{"key":"Set-Cookie","value":"AWSALB=L9Oesh2blk80+d+1+d0A1N4rrv/SatNyuZT972N/3CBnJzSct7tLVIPSHAHueQLA06zU4SIjnjnhwQbdTss0rHdL5WqmnAH8unvRLzVigV1ZZ+58IUNyI9DTvnXw; Expires=Tue, 30 Aug 2022 18:10:41 GMT; Path=/"},{"key":"Set-Cookie","value":"AWSALBCORS=L9Oesh2blk80+d+1+d0A1N4rrv/SatNyuZT972N/3CBnJzSct7tLVIPSHAHueQLA06zU4SIjnjnhwQbdTss0rHdL5WqmnAH8unvRLzVigV1ZZ+58IUNyI9DTvnXw; Expires=Tue, 30 Aug 2022 18:10:41 GMT; Path=/; SameSite=None; Secure"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"DataServiceVersion","value":"3.0;"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#TimesheetProjectActivityTimeTypes\",\n    \"value\": [\n        {\n            \"TimesheetActivityTimeTypeGUID\": \"64f477ed-f248-4505-9b34-7e37a8b99dde\",\n            \"TimesheetActivityGUID\": \"5572e0d3-572d-4c70-a58b-118ff48f7e8e\",\n            \"TimesheetActivityName\": \"Overtime\",\n            \"TimesheetTimeTypeCode\": \"OT\",\n            \"TimesheetTimeTypeDescription\": \"Overtime\",\n            \"SortOrder\": 2,\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2022-08-23T18:10:35.567Z\",\n            \"PayCodeTitle\": null,\n            \"PayCode\": null,\n            \"ActivityHourlyRate\": \"30.00000\"\n        }\n    ]\n}"}],"_postman_id":"9f9ddad7-e974-db61-7d89-bc77c6f0ff4b"},{"name":"Add Timesheet Project Activity Time Types","id":"ced98490-02ea-9952-3d51-73026aa650b0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"TimesheetActivityGUID\": \"e9df667a-b905-484b-baf4-dc3003b4666d\",\n  \"TimesheetTimeTypeCode\": \"OT\",\n  \"TimesheetTimeTypeDescription\": \"Overtime\"\n}"},"url":"{{url}}/TimesheetProjectActivityTimeTypes?$format=json","description":"<p>This request will insert a Timesheet Project Activity Time Type record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["TimesheetProjectActivityTimeTypes"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"b3954b50-3847-9aca-2243-bd4f60cb98a4","name":"Add Timesheet Project Activity Time Types","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"TimesheetActivityGUID\": \"e9df667a-b905-484b-baf4-dc3003b4666d\",\n\t\"TimesheetTimeTypeCode\": \"OT\",\n\t\"TimesheetTimeTypeDescription\": \"Overtime\"\n}"},"url":{"raw":"{{url}}/TimesheetProjectActivityTimeTypes?$format=json","host":["{{url}}"],"path":["TimesheetProjectActivityTimeTypes"],"query":[{"key":"$format","value":"json"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"481","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","name":"Content-Type","description":""},{"key":"DataServiceVersion","value":"3.0;","name":"DataServiceVersion","description":""},{"key":"Date","value":"Tue, 09 Jan 2018 11:33:56 GMT","name":"Date","description":""},{"key":"Location","value":"https://showcase.cezanneondemand.com/cezanneondemand/v2/DataService.svc/TimesheetProjectActivityTimeTypes(TimesheetActivityGUID=guid'e9df667a-b905-484b-baf4-dc3003b4666d',TimesheetTimeTypeDescription='Overtime')","name":"Location","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"10FF1C8527C119F7CB4E7C4120B8992C37BA1C8AE5234A9C7292845F5BF38D235F1BB6B2EF2F3728FEB7A384928DF969505638D3077B989C224A35AD3FE86D663EBCCEECF12BB193FF45C084F261369A94F105CDE91537455E5B49C713A694D62D34D7A7888AD9B597BDD3246C7569B4C58B10C159A04F82DF9242075831F7E38CE8DEDD0EEAACDD6CF905FEA56D401CC4DB3789AF82193C78C9A4D6A124EB0BDE5B27B6C1663E44BDFDC68E369CC4FD3AE57BC82F41E15393895D53FCBF45BEF8EE38E5FAC9F414B14AF836AC55E69E37B3A04760F8929B12DD607AB5345FE24508BB570572B35BF0EE26ECE04E899FDAEA1A227AC0432679902DA7737F2B5B8C91E71F7F5A858689E6919028A38ADB","key":"CF_SID"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"-1","key":"CF_SLV"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"/1cGaxGPTBHcD8RBFPNm12FtDYLb3lMpw7XIBqrYFhv/PCOTAE7wxR40Odzc4CqCBqtAOZUr4ANdr0FCU5+yshc/OebxJq3yb+4ZnDyqpu6AwS+bVPF+pa/xxdPnk2Wb9Paf0Dv+yZV/0G7/d6kslgWPqvC6vBmhi0lGAwQ6OUY=","key":"__RequestVerificationToken_L0NlemFubmVPbkRlbWFuZA__"}],"responseTime":"684","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#TimesheetProjectActivityTimeTypes/@Element\",\n    \"TimesheetActivityTimeTypeGUID\": null,\n    \"TimesheetActivityGUID\": \"e9df667a-b905-484b-baf4-dc3003b4666d\",\n    \"TimesheetActivityName\": null,\n    \"TimesheetTimeTypeCode\": \"OT\",\n    \"TimesheetTimeTypeDescription\": \"Overtime\",\n    \"SortOrder\": 0,\n    \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedDate\": \"2017-12-16T09:00:04.6461186Z\"\n}"}],"_postman_id":"ced98490-02ea-9952-3d51-73026aa650b0"},{"name":"Update Timesheet Project Activity Time Types","id":"98222749-a4ab-48fa-9862-cccbeb0e1135","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"TimesheetActivityName\": \"Example Activity Name\""},"url":"{{url}}/TimesheetProjectActivityTimeTypes(TimesheetActivityGUID=guid'[TimesheetActivityGUID]', TimesheetTimeTypeDescription='[TimesheetTimeTypeDescription]')","description":"<p>This request will update a Timesheet Project Activity Time Type record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Request body includes only one field as an example. You can add any extra fields from the table that you require. However, some fields are read-only. \n</li>\n<li>The TimesheetActivityGUID and TimesheetTimeTypeDescription cannot be updated as they are the the key fields for this table.</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["TimesheetProjectActivityTimeTypes(TimesheetActivityGUID=guid'[TimesheetActivityGUID]', TimesheetTimeTypeDescription='[TimesheetTimeTypeDescription]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"98222749-a4ab-48fa-9862-cccbeb0e1135"},{"name":"Delete Timesheet Project Activity Time Types","id":"fe3dc43d-5b95-6cec-c7b1-9c11f9adfc6e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/TimesheetProjectActivityTimeTypes(TimesheetActivityGUID=guid'[TimesheetActivityGUID]', TimesheetTimeTypeDescription='[TimesheetTimeTypeDescription]')","description":"<p>This request will delete a Timesheet Project Activity Time Type record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["TimesheetProjectActivityTimeTypes(TimesheetActivityGUID=guid'[TimesheetActivityGUID]', TimesheetTimeTypeDescription='[TimesheetTimeTypeDescription]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"fe3dc43d-5b95-6cec-c7b1-9c11f9adfc6e"}],"id":"6794639a-24cf-ed48-0162-5a585f557c5c","description":"<p>This API enables the 'Supported Time Types' for Activities on the Project Activities screen to be retrieved and modified.</p>\n<p>The identifying keys for Timesheet Projects - Activity Time Types are:</p>\n<ul><li><p>TimesheetActivityGUID</p></li><li><p>TimesheetTimeTypeDescription</p></li></ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>TimesheetActivityTimeTypeGUID</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TimesheetActivityGUID</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>TimesheetActivityName</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>TimesheetTimeTypeCode</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>TimesheetTimeTypeDescription</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>SortOrder</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PayCodeTitle</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PayCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ActivityHourlyRate</td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to their and all subordinate records.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to their own record.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"ccc48ba0-ce72-42bb-89db-ac713a995682","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"2668d03d-6d37-4a1b-9f94-8ca141aab581","type":"text/javascript","exec":[""]}}],"_postman_id":"6794639a-24cf-ed48-0162-5a585f557c5c"},{"name":"Plan Types (Read-Only)","item":[{"name":"List of Timesheet Plan Types","id":"d467196b-a911-e068-00bf-0856de5ee315","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"clientSecret":"<client-secret>","clientId":"<client-id>","accessToken":"<access-token>","tokenType":"<token-type>","challengeAlgorithm":"<challenge-algorithm>","scope":"<scope>","grant_type":"<grant_type>","client_authentication":"<client_authentication>","accessTokenUrl":"<access-token-url>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/TimesheetPlanTypes?$format=json","description":"<p>This request will return a list of Timesheet Plan Types from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["TimesheetPlanTypes"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"f92d1147-768a-4a2d-a5f2-cf56041f306a","name":"List of Timesheet Plan Types","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/TimesheetPlanTypes?$format=json","host":["{{url}}"],"path":["TimesheetPlanTypes"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Aug 2022 18:00:54 GMT"},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8"},{"key":"Content-Length","value":"1081"},{"key":"Connection","value":"keep-alive"},{"key":"Set-Cookie","value":"AWSALB=F3FdketbWRhK53j+edTXMbEdXzgdE4mir1YktDwNMELopwHQVkRL5Rn7mseY7I6wbe1aaZYY4JrXDrUE7IbRrsBa4MR61XlZaEA3LttZCzgBWDAV2WJ1w4STwKWX; Expires=Tue, 30 Aug 2022 18:00:53 GMT; Path=/"},{"key":"Set-Cookie","value":"AWSALBCORS=F3FdketbWRhK53j+edTXMbEdXzgdE4mir1YktDwNMELopwHQVkRL5Rn7mseY7I6wbe1aaZYY4JrXDrUE7IbRrsBa4MR61XlZaEA3LttZCzgBWDAV2WJ1w4STwKWX; Expires=Tue, 30 Aug 2022 18:00:53 GMT; Path=/; SameSite=None; Secure"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"DataServiceVersion","value":"3.0;"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#TimesheetPlanTypes\",\n    \"value\": [\n        {\n            \"TimesheetPlanTypeGUID\": \"13e76eaa-69a4-4617-98cc-37dce010269c\",\n            \"PlanTypeName\": \"Timesheet Plan UK\",\n            \"TranslatedPlanTypeName\": \"Timesheet Plan UK\",\n            \"TimesheetFormatCode\": \"Duration\",\n            \"TimesheetFormatDescription\": \"Duration\",\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2017-11-28T14:53:06.27Z\",\n            \"ValidateTimesheetEmployeeWTP\": 0,\n            \"AutoCreateTimesheets\": 0,\n            \"EmailEmployeeOnTaskCreation\": 0,\n            \"TimeMustBeEnteredNearestQuarterHour\": 1,\n            \"SplitWeeklyTimesheetsForMonthlyRecording\": 0,\n            \"PreventTimeAndAbsenceOnSameDay\": 0,\n            \"AllowCopyAPreviousWeek\": 0,\n            \"LinkWithAbsenceTimeWorked\": 0,\n            \"LineManagerCanEdit\": 1,\n            \"EmployeesCanEditClockInClockOut\": 0,\n            \"LineManagersCanEditClockInClockOut\": 0,\n            \"RecordGeolocation\": 0,\n            \"RecordIPAddress\": 0,\n            \"ArchiveExceptionsAfterDays\": 0,\n            \"ExceptionsLastAutoArchived\": null,\n            \"TimeZone\": null,\n            \"EnableOvernightWorking\": 0,\n            \"EnableAutomaticBreaks\": 0,\n            \"DurationMinutes\": null,\n            \"EnableManualBreaks\": 0,\n            \"DefaultBreakType\": null,\n            \"ShowClockInClockOutTIme\": 0\n        }\n    ]\n}"}],"_postman_id":"d467196b-a911-e068-00bf-0856de5ee315"}],"id":"72cac70e-94a8-c415-6ae0-9125b0f2b2cf","description":"<p>This API enables information from the Timesheet Plan Types screen to be retrieved.</p>\n<p>The identifying key for Timesheet Plan Types is:</p>\n<ul><li><div>PlanTypeName</div></li></ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>TimesheetPlanTypeGUID</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PlanTypeName</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>TranslatedPlanTypeName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TimesheetFormatCode</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TimesheetFormatDescription</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ValidateTimesheetEmployeeWTP</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>AutoCreateTimesheets</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>EmailEmployeeOnTaskCreation</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>TimeMustBeEnteredNearestQuarterHour</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>SplitWeeklyTimesheetsForMonthlyRecording</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>PreventTimeAndAbsenceOnSameDay</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>AllowCopyAPreviousWeek</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>LinkWithAbsenceTimeWorked</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>LineManagerCanEdit</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>EmployeesCanEditClockInClockOut</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>LineManagersCanEditClockInClockOut</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>RecordGeolocation</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>RecordIPAddress</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>ArchiveExceptionsAfterDays</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ExceptionsLastAutoArchived</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TimeZone</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EnableOvernightWorking</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>EnableAutomaticBreaks</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>DurationMinutes</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EnableManualBreaks</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>DefaultBreakType</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ShowClockInClockOutTime</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>IsActivitiesEnabled</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has read-only access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to their and all subordinate records.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to their own record.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"94343777-082b-4f08-a4c4-4d5b728cc05d","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"7497f0d6-bb7c-4eea-8972-934292579c42","type":"text/javascript","exec":[""]}}],"_postman_id":"72cac70e-94a8-c415-6ae0-9125b0f2b2cf"},{"name":"People","item":[{"name":"Timesheet Plans","item":[{"name":"List of Employee Timesheet Plan Assignments","id":"501b1cac-5d29-8179-e6ba-48e460e369e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/PersonTimesheetPlans?$format=json","description":"<p>This request will return a list of Employee Timesheet Plan Assignments from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["PersonTimesheetPlans"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"57ed0754-2456-133b-ac79-5f345b1d4898","name":"List of Employee Timesheet Plans","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/PersonTimesheetPlans?$format=json","host":["{{url}}"],"path":["PersonTimesheetPlans"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"no-cache","description":""},{"name":"connection","key":"connection","value":"keep-alive","description":""},{"name":"content-length","key":"content-length","value":"702","description":""},{"name":"content-type","key":"content-type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","description":""},{"name":"dataserviceversion","key":"dataserviceversion","value":"3.0;","description":""},{"name":"date","key":"date","value":"Mon, 31 Jul 2017 15:45:55 GMT","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"436","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#PersonTimesheetPlans\",\n    \"value\": [\n        {\n            \"PersonTimeSheetPlanGUID\": \"b29a57cb-724f-4a21-b988-3b54b95e2d79\",\n            \"TimesheetPlanTypeGUID\": \"7505af84-cb74-4f49-9e31-7c59e2e9eb4b\",\n            \"TimesheetPlanTypeName\": \"Duration Plan\",\n            \"TimesheetTranslatedPlanTypeName\": \"Duration Plan\",\n            \"PersonGUID\": \"1191a092-fbe2-445e-9580-f76581b416a6\",\n            \"PersonCode\": \"CEZ64\",\n            \"EffectiveFrom\": \"2014-10-06T00:00:00\",\n            \"EffectiveTo\": \"2015-07-13T00:00:00\",\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2015-07-13T13:21:40.593Z\",\n            \"TimesheetFormat\": \"Duration\",\n            \"FullName\": \"Tammy Bell\",\n            \"TimesheetFormatCode\": \"Duration\",\n            \"TimeZone\": null\n        }\n    ]\n}"}],"_postman_id":"501b1cac-5d29-8179-e6ba-48e460e369e5"},{"name":"Add Employee Timesheet Plan Assignments","id":"fdfa0bc6-6179-5848-cad3-987cb77aef83","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"TimesheetPlanTypeName\": \"Timesheet Plan\",\n  \"PersonCode\": \"26\",\n  \"EffectiveFrom\": \"2017-01-01T00:00:00\",\n  \"EffectiveTo\": \"2017-12-31T00:00:00\"\n}"},"url":"{{url}}/PersonTimesheetPlans?$format=json","description":"<p>This request will insert a Timesheet Plan Assignment record for an employee.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["PersonTimesheetPlans"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"7111490c-aad7-9f9b-720d-ac2dcf912111","name":"Add Employee Timesheet Plan Assignments","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"TimesheetPlanTypeName\": \"Timesheet Plan\",\n\t\"PersonCode\": \"26\",\n\t\"EffectiveFrom\": \"2017-01-01T00:00:00\",\n\t\"EffectiveTo\": \"2017-12-31T00:00:00\"\n}"},"url":{"raw":"{{url}}/PersonTimesheetPlans?$format=json","host":["{{url}}"],"path":["PersonTimesheetPlans"],"query":[{"key":"$format","value":"json"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"570","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","name":"Content-Type","description":""},{"key":"DataServiceVersion","value":"3.0;","name":"DataServiceVersion","description":""},{"key":"Date","value":"Tue, 09 Jan 2018 11:42:03 GMT","name":"Date","description":""},{"key":"Location","value":"https://showcase.cezanneondemand.com/cezanneondemand/v2/DataService.svc/PersonTimesheetPlans(EffectiveFrom=datetime'2017-01-01T00%3A00%3A00',PersonCode='26',TimesheetPlanTypeName='Timesheet%20Plan')","name":"Location","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"10FF1C8527C119F7CB4E7C4120B8992C37BA1C8AE5234A9C7292845F5BF38D235F1BB6B2EF2F3728FEB7A384928DF969505638D3077B989C224A35AD3FE86D663EBCCEECF12BB193FF45C084F261369A94F105CDE91537455E5B49C713A694D62D34D7A7888AD9B597BDD3246C7569B4C58B10C159A04F82DF9242075831F7E38CE8DEDD0EEAACDD6CF905FEA56D401CC4DB3789AF82193C78C9A4D6A124EB0BDE5B27B6C1663E44BDFDC68E369CC4FD3AE57BC82F41E15393895D53FCBF45BEF8EE38E5FAC9F414B14AF836AC55E69E37B3A04760F8929B12DD607AB5345FE24508BB570572B35BF0EE26ECE04E899FDAEA1A227AC0432679902DA7737F2B5B8C91E71F7F5A858689E6919028A38ADB","key":"CF_SID"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"-1","key":"CF_SLV"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"/1cGaxGPTBHcD8RBFPNm12FtDYLb3lMpw7XIBqrYFhv/PCOTAE7wxR40Odzc4CqCBqtAOZUr4ANdr0FCU5+yshc/OebxJq3yb+4ZnDyqpu6AwS+bVPF+pa/xxdPnk2Wb9Paf0Dv+yZV/0G7/d6kslgWPqvC6vBmhi0lGAwQ6OUY=","key":"__RequestVerificationToken_L0NlemFubmVPbkRlbWFuZA__"}],"responseTime":"519","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#PersonTimesheetPlans/@Element\",\n    \"PersonTimeSheetPlanGUID\": null,\n    \"TimesheetPlanTypeGUID\": null,\n    \"TimesheetPlanTypeName\": \"Timesheet Plan\",\n    \"TimesheetTranslatedPlanTypeName\": null,\n    \"PersonGUID\": null,\n    \"PersonCode\": \"26\",\n    \"EffectiveFrom\": \"2017-01-01T00:00:00\",\n    \"EffectiveTo\": \"2017-12-31T00:00:00\",\n    \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedDate\": \"2017-12-16T09:00:04.1461312Z\",\n    \"TimesheetFormat\": null,\n    \"FullName\": null,\n    \"TimesheetFormatCode\": null\n}"}],"_postman_id":"fdfa0bc6-6179-5848-cad3-987cb77aef83"},{"name":"Update Employee Timesheet Plan Assignments Copy","id":"e30f7718-31a3-46bd-9191-a5a111957172","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"EffectiveTo\": \"2020-01-01T00:00:00\"\n}"},"url":"{{url}}/PersonTimesheetPlans(TimesheetPlanTypeName='[TimesheetPlanTypeName]', PersonCode='[PersonCode]', EffectiveFrom=datetime'[EffectiveFrom]')","description":"<p>This request will update a Timesheet Plan Assignment record for an employee.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Request body includes only one field as an example. You can add any extra fields from the table that you require. However, some fields are read-only. \n</li>\n<li>The TimesheetPlanTypeName, PersonCode and EffectiveFrom cannot be updated as they are the the key fields for this table.</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["PersonTimesheetPlans(TimesheetPlanTypeName='[TimesheetPlanTypeName]', PersonCode='[PersonCode]', EffectiveFrom=datetime'[EffectiveFrom]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e30f7718-31a3-46bd-9191-a5a111957172"},{"name":"Delete Employee Timesheet Plan Assignments","id":"df8e215e-ba25-0bdc-029e-1171f9e28581","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/PersonTimesheetPlans(TimesheetPlanTypeName='[TimesheetPlanTypeName]', PersonCode='[PersonCode]', EffectiveFrom=datetime'[EffectiveFrom]')","description":"<p>This request will delete a Timesheet Plan Assignment record for an employee.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["PersonTimesheetPlans(TimesheetPlanTypeName='[TimesheetPlanTypeName]', PersonCode='[PersonCode]', EffectiveFrom=datetime'[EffectiveFrom]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"df8e215e-ba25-0bdc-029e-1171f9e28581"}],"id":"b20a2a09-cc87-bf51-f49f-b015eb5fb858","description":"<p>This API enables all information from the Person Timesheet Plans screen for active and inactive employees to be retrieved and modified. </p>\n<p>The identifying keys for Person Timesheet Plans are:</p>\n<ul>\n<li>TimesheetPlanTypeName</li>\n<li>PersonCode</li>\n<li>EffectiveFrom</li>\n</ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PersonTimeSheetPlanGUID</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TimesheetPlanTypeGUID</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TimesheetPlanTypeName</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>TimesheetTranslatedPlanTypeName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PersonGUID</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PersonCode</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>EffectiveFrom</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>EffectiveTo</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TimesheetFormat</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>FullName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TimesheetFormatCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TimeZone</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2> Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to their and all subordinate records.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to their own record.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"37791152-748a-45b0-969d-4a81e417aedd","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"fb187af8-b35b-431e-a21f-fca90c287aa5","type":"text/javascript","exec":[""]}}],"_postman_id":"b20a2a09-cc87-bf51-f49f-b015eb5fb858"},{"name":"Timesheets (Read-Only)","item":[{"name":"List of Employee Timesheets","id":"6a40e27b-8baf-967b-ab4c-7fd125e14791","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/PersonTimesheets?$format=json","description":"<p>This request will return a list of Employee Timesheets from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["PersonTimesheets"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"ea978d30-aa0d-99e4-3006-1b3f5b261b52","name":"List of Employee Timesheets","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/PersonTimesheets?$format=json","host":["{{url}}"],"path":["PersonTimesheets"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"no-cache","description":""},{"name":"connection","key":"connection","value":"keep-alive","description":""},{"name":"content-length","key":"content-length","value":"691","description":""},{"name":"content-type","key":"content-type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","description":""},{"name":"dataserviceversion","key":"dataserviceversion","value":"3.0;","description":""},{"name":"date","key":"date","value":"Mon, 31 Jul 2017 15:50:24 GMT","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"1118","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#PersonTimesheets\",\n    \"value\": [\n        {\n            \"PersonTimesheetGUID\": \"212a6522-b562-4cd8-8d30-c0a12c099a5f\",\n            \"PersonGUID\": \"1191a092-fbe2-445e-9580-f76581b416a6\",\n            \"PersonCode\": \"CEZ64\",\n            \"PersonTimesheetPlanGUID\": \"b29a57cb-724f-4a21-b988-3b54b95e2d79\",\n            \"TimesheetTranslatedPlanTypeName\": \"Duration Plan\",\n            \"EffetiveFrom\": \"2021-08-23T00:00:00\",\n            \"EffectiveTo\": \"2021-08-29T00:00:00\",\n            \"TimesheetStatusCode\": \"PNSUB\",\n            \"TimesheetStatusDescription\": \"Pending Submission\",\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"FullName\": \"Tammy Bell\",\n            \"TimesheetFormatCode\": \"Duration\",\n            \"ValidateAgainstEmployeeWTP\": 1,\n            \"TimesheetStatusDate\": \"2021-08-31T18:00:00\",\n            \"TimesheetApprover\": \"Cheryl Abrahams\",\n            \"ShowClockInClockOutTime\": 0\n        }\n    ]\n}"}],"_postman_id":"6a40e27b-8baf-967b-ab4c-7fd125e14791"}],"id":"cb3bd7b2-b848-dc2b-ae92-2fcf184cb0fa","description":"<p>This API enables information from the Person Timesheets setup screen for active and inactive employees to be retrieved.</p>\n<p>The identifying keys for Person Timesheets are:</p>\n<ul><li><p>PersonCode</p></li><li><p>PersonTimesheetPlanGUID</p></li><li><p>EffetiveFrom</p></li></ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PersonTimesheetGUID</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PersonGUID</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PersonCode</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>PersonTimesheetPlanGUID</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>TimesheetTranslatedPlanTypeName</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EffetiveFrom</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>EffectiveTo</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TimesheetStatusCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TimesheetStatusDescription</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>FullName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TimesheetFormatCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ValidateAgainstEmployeeWTP</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TimesheetStatusDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TimesheetApprover</td>\n<td></td>\n<td>Read-only. If there is more than one Approver at the stage, this will return 'Multiple'.</td>\n</tr>\n<tr>\n<td>ShowClockInClockOutTime</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has read-only access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to their and all subordinate records.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to their own record.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"a8a61523-9978-477e-9f67-3305d313ae9b","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"12f8e727-d658-4d50-9cea-e0e518052ac9","type":"text/javascript","exec":[""]}}],"_postman_id":"cb3bd7b2-b848-dc2b-ae92-2fcf184cb0fa"},{"name":"Timesheets - Settings","item":[{"name":"List of Employee Timesheet Settings","id":"cceeabe6-1cc2-f22c-ed39-3d6c16b923cb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/PersonTimesheetSettings?$format=json","description":"<p>This request will return a list of Employee Timesheet Settings from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["PersonTimesheetSettings"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"6aad4b9e-1eb3-9b3c-6199-967bc88c8b58","name":"List of Employee Timesheet Settings","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/PersonTimesheetSettings?$format=json","host":["{{url}}"],"path":["PersonTimesheetSettings"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"no-cache","description":""},{"name":"connection","key":"connection","value":"keep-alive","description":""},{"name":"content-length","key":"content-length","value":"338","description":""},{"name":"content-type","key":"content-type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","description":""},{"name":"dataserviceversion","key":"dataserviceversion","value":"3.0;","description":""},{"name":"date","key":"date","value":"Mon, 31 Jul 2017 16:07:38 GMT","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"809","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#PersonTimesheetSettings\",\n    \"value\": [\n        {\n            \"PersonGUID\": \"db162c7c-7526-40a1-a4a3-ebbb5043a6fe\",\n            \"PersonCode\": \"0590\",\n            \"ManageActivitiesManually\": 0,\n            \"LastModifiedDate\": \"2011-07-28T14:48:25.757Z\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\"\n        }\n    ]\n}"}],"_postman_id":"cceeabe6-1cc2-f22c-ed39-3d6c16b923cb"},{"name":"Update an Employee's Timesheet Settings","id":"9018ee6a-d95e-4157-8ce3-3ce0eccb232a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"ManageActivitiesManually\": \"1\"\n}"},"url":"{{url}}/PersonTimesheetSettings(PersonCode='[PersonCode]')","description":"<p>This request will update an employee's Timesheet Settings record.</p>\n<p><strong>Notes:</strong></p>\n<ul><li><div>The Request body includes only one field as an example. You can add any extra fields from the table that you require. However, some fields are read-only.<br /></div></li><li><div>The PersonCode cannot be updated as it is the the key field for this table.</div></li><li><div>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</div></li><li><div>It is not possible to update more than one Person Timesheet Settings record at once.</div></li></ul>","urlObject":{"path":["PersonTimesheetSettings(PersonCode='[PersonCode]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9018ee6a-d95e-4157-8ce3-3ce0eccb232a"}],"id":"da7c823c-7383-7686-e883-322630056ed9","description":"<p>This API enables the 'Manage Activities Manually' option on the Person Timesheet Activities screen for active and inactive employees to be retrieved and modified.</p>\n<p>The identifying key for Person Timesheets - Settings is:</p>\n<ul>\n<li>PersonCode</li>\n</ul>\n\n<h2>Fields</h2>\n\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PersonGUID</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PersonCode</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>ManageActivitiesManually</td>\n<td>Y</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2> Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has read-only access to everyone in the system.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to everyone in the system.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to everyone in the system.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"20cfa605-936a-4c61-8e89-99d3c71d20ec","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"135ca975-4b3b-4d6b-9bae-7f4ad5cd576d","type":"text/javascript","exec":[""]}}],"_postman_id":"da7c823c-7383-7686-e883-322630056ed9"},{"name":"Timesheets - Activities","item":[{"name":"List of Employee Timesheet Activities","id":"1a8b9058-d19d-38a9-50c1-4708ee00d20d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/PersonTimesheetActivities?$format=json","description":"<p>This request will return a list of Employee Timesheet Activities from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["PersonTimesheetActivities"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"0ce39f56-d9fc-52b7-fbdc-fccb37922be2","name":"List of Employee Timesheet Activities","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/PersonTimesheetActivities?$format=json","host":["{{url}}"],"path":["PersonTimesheetActivities"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"no-cache","description":""},{"name":"connection","key":"connection","value":"keep-alive","description":""},{"name":"content-length","key":"content-length","value":"810","description":""},{"name":"content-type","key":"content-type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","description":""},{"name":"dataserviceversion","key":"dataserviceversion","value":"3.0;","description":""},{"name":"date","key":"date","value":"Mon, 31 Jul 2017 16:00:39 GMT","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"637","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#PersonTimesheetActivities\",\n    \"value\": [\n        {\n            \"PersonTimesheetActivityGUID\": \"8719f2bc-6033-4610-a257-b108c5d91249\",\n            \"ProjectActivityGUID\": \"e817d229-00c1-48ac-9ba1-a51521c618ea\",\n            \"TimesheetActivityTranslatedName\": \"Client Meeting\",\n            \"TimesheetActivityTranslatedDescription\": null,\n            \"PersonGUID\": \"738ae7a5-e3f4-4a2e-9f18-6b9860c87dba\",\n            \"PersonCode\": \"119\",\n            \"FullName\": \"Jane Williams\",\n            \"EffectiveFrom\": \"2014-10-22T00:00:00\",\n            \"EffectiveTo\": \"2999-12-31T00:00:00\",\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2016-08-09T16:11:39.217Z\",\n            \"TimesheetActivityType\": \"Client Meeting\",\n            \"TimesheetProjectName\": \"ABC Website Redesign\",\n            \"TimesheetTranslatedProjectName\": \"ABC Website Redesign\"\n        }\n    ]\n}"}],"_postman_id":"1a8b9058-d19d-38a9-50c1-4708ee00d20d"},{"name":"Add Employee Timesheet Activities","id":"c2ef0b62-34ee-d229-0d41-2bf67131ea80","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"ProjectActivityGUID\": \"e9df667a-b905-484b-baf4-dc3003b4666d\",\n  \"PersonCode\": \"26\",\n  \"EffectiveFrom\": \"2017-01-01T00:00:00\",\n  \"EffectiveTo\": \"2017-12-31T00:00:00\"\n}"},"url":"{{url}}/PersonTimesheetActivities?$format=json","description":"<p>This request will insert a Timesheet Activity record for an employee.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["PersonTimesheetActivities"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"290643c9-a336-071f-e611-1d81bd6e767e","name":"Add Employee Timesheet Activities","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"ProjectActivityGUID\": \"e9df667a-b905-484b-baf4-dc3003b4666d\",\n\t\"PersonCode\": \"26\",\n\t\"EffectiveFrom\": \"2017-01-01T00:00:00\",\n\t\"EffectiveTo\": \"2017-12-31T00:00:00\"\n}"},"url":{"raw":"{{url}}/PersonTimesheetActivities?$format=json","host":["{{url}}"],"path":["PersonTimesheetActivities"],"query":[{"key":"$format","value":"json"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"660","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","name":"Content-Type","description":""},{"key":"DataServiceVersion","value":"3.0;","name":"DataServiceVersion","description":""},{"key":"Date","value":"Tue, 09 Jan 2018 11:47:21 GMT","name":"Date","description":""},{"key":"Location","value":"https://showcase.cezanneondemand.com/cezanneondemand/v2/DataService.svc/PersonTimesheetActivities(PersonCode='26',ProjectActivityGUID=guid'e9df667a-b905-484b-baf4-dc3003b4666d')","name":"Location","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"10FF1C8527C119F7CB4E7C4120B8992C37BA1C8AE5234A9C7292845F5BF38D235F1BB6B2EF2F3728FEB7A384928DF969505638D3077B989C224A35AD3FE86D663EBCCEECF12BB193FF45C084F261369A94F105CDE91537455E5B49C713A694D62D34D7A7888AD9B597BDD3246C7569B4C58B10C159A04F82DF9242075831F7E38CE8DEDD0EEAACDD6CF905FEA56D401CC4DB3789AF82193C78C9A4D6A124EB0BDE5B27B6C1663E44BDFDC68E369CC4FD3AE57BC82F41E15393895D53FCBF45BEF8EE38E5FAC9F414B14AF836AC55E69E37B3A04760F8929B12DD607AB5345FE24508BB570572B35BF0EE26ECE04E899FDAEA1A227AC0432679902DA7737F2B5B8C91E71F7F5A858689E6919028A38ADB","key":"CF_SID"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"-1","key":"CF_SLV"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"/1cGaxGPTBHcD8RBFPNm12FtDYLb3lMpw7XIBqrYFhv/PCOTAE7wxR40Odzc4CqCBqtAOZUr4ANdr0FCU5+yshc/OebxJq3yb+4ZnDyqpu6AwS+bVPF+pa/xxdPnk2Wb9Paf0Dv+yZV/0G7/d6kslgWPqvC6vBmhi0lGAwQ6OUY=","key":"__RequestVerificationToken_L0NlemFubmVPbkRlbWFuZA__"}],"responseTime":"521","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#PersonTimesheetActivities/@Element\",\n    \"PersonTimesheetActivityGUID\": null,\n    \"ProjectActivityGUID\": \"e9df667a-b905-484b-baf4-dc3003b4666d\",\n    \"TimesheetActivityTranslatedName\": null,\n    \"TimesheetActivityTranslatedDescription\": null,\n    \"PersonGUID\": null,\n    \"PersonCode\": \"26\",\n    \"FullName\": null,\n    \"EffectiveFrom\": \"2017-01-01T00:00:00\",\n    \"EffectiveTo\": \"2017-12-31T00:00:00\",\n    \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedDate\": \"2017-12-16T09:00:04.286735Z\",\n    \"TimesheetActivityType\": null,\n    \"TimesheetProjectName\": null,\n    \"TimesheetTranslatedProjectName\": null\n}"}],"_postman_id":"c2ef0b62-34ee-d229-0d41-2bf67131ea80"},{"name":"Update Employee Timesheet Activities","id":"ef4a210a-b47c-4c5e-a2ba-a0bbdf3583f5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"EffectiveTo\": \"2020-01-01T00:00:00\"\n}"},"url":"{{url}}/PersonTimesheetActivities(ProjectActivityGUID=guid'[ProjectActivityGUID]', PersonCode='[PersonCode]')","description":"<p>This request will update an employee's Timesheet Activity record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Request body includes only one field as an example. You can add any extra fields from the table that you require. However, some fields are read-only. \n</li>\n<li>The ProjectActivityGUID and PersonCode cannot be updated as they are the the key fields for this table.</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["PersonTimesheetActivities(ProjectActivityGUID=guid'[ProjectActivityGUID]', PersonCode='[PersonCode]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ef4a210a-b47c-4c5e-a2ba-a0bbdf3583f5"},{"name":"Delete Employee Timesheet Activities","id":"33ecaccb-7a3a-6966-1e96-9427ea1a929e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"url":"{{url}}/PersonTimesheetActivities(ProjectActivityGUID=guid'[ProjectActivityGUID]', PersonCode='[PersonCode]')","description":"<p>This request will delete an employee's Timesheet Activity record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["PersonTimesheetActivities(ProjectActivityGUID=guid'[ProjectActivityGUID]', PersonCode='[PersonCode]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"33ecaccb-7a3a-6966-1e96-9427ea1a929e"}],"id":"190edbd5-f865-2393-0cb7-afe30cefa313","description":"<p>This API enables all information from the Person Timesheet Activities screen for active and inactive employees to be retrieved and modified. </p>\n<p>The identifying keys for Person Timesheets - Activities are:</p>\n<ul>\n<li>ProjectActivityGUID</li>\n<li>PersonCode</li>\n</ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PersonTimesheetActivityGUID</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ProjectActivityGUID</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>TimesheetActivityTranslatedName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TimesheetActivityTranslatedDescription</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PersonGUID</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PersonCode</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>FullName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EffectiveFrom</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>EffectiveTo</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TimesheetActivityType</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TimesheetProjectName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TimesheetTranslatedProjectName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2> Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to their and all subordinate records.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"091d3ea2-8813-46d3-8e1f-45c2f0be5db4","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"8c61b972-68b0-4a86-8262-dd4c14dcda99","type":"text/javascript","exec":[""]}}],"_postman_id":"190edbd5-f865-2393-0cb7-afe30cefa313"},{"name":"Timesheets - Details (Read-Only)","item":[{"name":"List of Employee Timesheet Details","id":"8400246a-997e-f39e-5e57-508e4a2bb6a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/PersonTimesheetDetails?$format=json","description":"<p>This request will return a list of Employee Timesheet Details from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["PersonTimesheetDetails"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"ebcad2e5-60f1-e806-f24c-4b376448be95","name":"List of Employee Timesheet Details","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/PersonTimesheetDetails?$format=json","host":["{{url}}"],"path":["PersonTimesheetDetails"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"no-cache","description":""},{"name":"content-length","key":"content-length","value":"939","description":""},{"name":"content-type","key":"content-type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","description":""},{"name":"dataserviceversion","key":"dataserviceversion","value":"3.0;","description":""},{"name":"date","key":"date","value":"Wed, 16 Aug 2017 10:17:07 GMT","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"957","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#PersonTimesheetDetails\",\n    \"value\": [\n        {\n            \"PersonTimesheetDetailGUID\": \"6147f817-76aa-487a-915b-756010d6abb3\",\n            \"PersonTimesheetGUID\": \"6264fd2b-9e09-4787-baed-85c6bbb96371\",\n            \"ProjectActivityGUID\": \"6412cc40-64e0-41d1-9534-817622ea293c\",\n            \"PersonCode\": \"CEZ01\",\n            \"FullName\": \"Cheryl Abrahams\",\n            \"PersonTimesheetActivityGUID\": \"1e28625d-fe3b-428c-b68e-20ff076c9928\",\n            \"EntryDate\": \"2015-08-24T00:00:00\",\n            \"Duration\": \"1900-01-01T07:30:00\",\n            \"DurationAsDecimal\": \"7.50\",\n            \"StartTime\": null,\n            \"EndTime\": null,\n            \"TimesheetComments\": \"\",\n            \"InsertUser\": \"ROB\",\n            \"LastModifiedUser\": \"ROB\",\n            \"LastModifiedDate\": \"2017-08-16T10:17:04.34Z\",\n            \"ActivityName\": \"Client meeting\",\n            \"TimeType\": \"Standard Work Time\",\n            \"ProjectGUID\": \"d6e0eb36-dd5f-4694-99cf-64a91f33ba7e\",\n            \"ProjectName\": \"ABC Website Redesign\",\n            \"ProjectCode\": \"ABC\",\n            \"TranslatedProjectName\": \"ABC Website Redesign\",\n            \"ActivityType\": null,\n            \"TimesheetStatus\": \"Open\"\n        }\n    ]\n}"}],"_postman_id":"8400246a-997e-f39e-5e57-508e4a2bb6a5"}],"id":"3c39764b-44f1-60fa-5bc3-eca5f82b79fc","description":"<p>This API enables the details from the Person Timesheets screen for active and inactive employees to be retrieved.</p>\n<p>The identifying key for Person Timesheets - Details is:</p>\n<ul><li><div>PersonTimesheetDetailGUID</div></li></ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PersonTimesheetDetailGUID</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>PersonTimesheetGUID</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ProjectActivityGUID</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PersonCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>FullName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PersonTimesheetActivityGUID</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EntryDate</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Duration</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>DurationAsDecimal</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>StartTime</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EndTime</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TimesheetComments</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ActivityName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TimeType</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ProjectGUID</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ProjectName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ProjectCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TranslatedProjectName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ActivityType</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TimesheetStatus</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PaymentApproved</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PayCodeGUID</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PayCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ActivityHourlyRate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Paid</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Ticked</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has read-only access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"f70abfbd-b6ac-44c0-82da-baaa5285c13d","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"2b60fb73-1308-48d2-adca-317c49d94878","type":"text/javascript","exec":[""]}}],"_postman_id":"3c39764b-44f1-60fa-5bc3-eca5f82b79fc"}],"id":"0a43a395-cd90-e6e9-a866-9d96db6ba599","_postman_id":"0a43a395-cd90-e6e9-a866-9d96db6ba599","description":""}],"id":"6fef8c64-ea7b-10ca-664a-0a448a9a2cd1","_postman_id":"6fef8c64-ea7b-10ca-664a-0a448a9a2cd1","description":""},{"name":"Organisation","item":[{"name":"Company Details","item":[{"name":"List of Company Details","id":"1a81ca3d-0d6b-4491-8b11-f200a8d67641","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"password":"<password>","username":"<username>","showPassword":"<show-password>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer Your-API-Token","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."}],"url":"{{url}}/CompanyDetails?$format=json","description":"<p>This request will return a list of Company Details from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["CompanyDetails"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"7a60263e-71fb-445c-a285-4ec53df2dd17","name":"List of Company Details","originalRequest":{"method":"GET","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer Your-API-Token","type":"text"}],"url":{"raw":"{{url}}/CompanyDetails?$format=json","host":["{{url}}"],"path":["CompanyDetails"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"DataServiceVersion","value":"3.0;"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Date","value":"Tue, 24 Sep 2019 16:14:10 GMT"},{"key":"Content-Length","value":"536"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"https://w3.cezanneondemand.com/Cezanneondemand/v4/DataService.svc/$metadata#CompanyDetails\",\n    \"value\": [\n        {\n            \"CompanyGuid\": \"554f8348-b609-4735-bd4f-9444b38589db\",\n            \"EffectiveFrom\": \"2000-01-01T00:00:00\",\n            \"EffectiveTo\": \"2999-12-31T00:00:00\",\n            \"CompanyCode\": \"OMUK\",\n            \"CompanyName\": \"Omnicrom UK\",\n            \"LegalCompanyName\": \"Omnicrom UK Ltd\",\n            \"ParentCompanyName\": \"Omnicrom Holding Ltd\",\n            \"TranslatedCompanyName\": \"Omnicrom UK\",\n            \"PrimaryLocationName\": \"London\",\n            \"SortOrder\": 0,\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2019-09-20T14:40:36.097Z\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\"\n        }\n    ]\n}"}],"_postman_id":"1a81ca3d-0d6b-4491-8b11-f200a8d67641"},{"name":"Add a new Company","id":"47230142-c64c-4288-8edc-16da2f9fab91","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"password":"<password>","username":"<username>","showPassword":"<show-password>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer Your-API-Token","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"EffectiveFrom\": \"2000-01-01T00:00:00\",\n\t\"EffectiveTo\": \"2999-12-31T00:00:00\",\n\t\"CompanyCode\": \"New\",\n\t\"CompanyName\": \"New Company\"\n}"},"url":"{{url}}/CompanyDetails?$format=json","description":"<p>This request will insert a new Company in the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>If the EffectiveTo is left blank, the system will try to insert the record with EffectiveTo set to Open Ended.</li>\n</ul>","urlObject":{"path":["CompanyDetails"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[],"_postman_id":"47230142-c64c-4288-8edc-16da2f9fab91"},{"name":"Update a Company","id":"0137a6d1-2c4c-49fa-896d-4266737acd3e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"password":"<password>","username":"<username>","showPassword":"<show-password>"},"isInherited":false},"method":"PUT","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","type":"text","value":"Bearer Your-API-Token"}],"body":{"mode":"raw","raw":"{\n\t\"CompanyName\": \"Example Company Name\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/CompanyDetails(CompanyGUID=guid'[CompanyGUID]')","description":"<p>This request will update a Company Details record in the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Request body includes only one field as an example. You can add any extra fields from the table that you require. However, some fields are read-only. \n</li>\n<li>The CompanyGUID cannot be updated as it is the key field for this table.</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["CompanyDetails(CompanyGUID=guid'[CompanyGUID]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0137a6d1-2c4c-49fa-896d-4266737acd3e"},{"name":"Delete a Company","id":"28cd126e-b8f5-45e6-9788-d5cb98cf5c9a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"password":"<password>","username":"<username>","showPassword":"<show-password>"},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Bearer Your-API-Token","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":"{{url}}/CompanyDetails(CompanyGUID=guid'[CompanyGUID]')","description":"<p>This request will delete a Company from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["CompanyDetails(CompanyGUID=guid'[CompanyGUID]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"28cd126e-b8f5-45e6-9788-d5cb98cf5c9a"}],"id":"94ba4b5b-102f-454e-bc49-697378cbd0bd","description":"<p>This API enables all information from the Company tab on the Company Details screen for active and inactive Companies to be retrieved and modified. </p>\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n</ul>\n\n\n\n<p>The identifying key for Org Units is:</p>\n<ul>\n<li>CompanyGuid</li>\n</ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CompanyGuid</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>EffectiveFrom</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>EffectiveTo</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>CompanyCode</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>CompanyName</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>LegalCompanyName</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>ParentCompanyName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TranslatedCompanyName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PrimaryLocationName</td>\n<td></td>\n<td>Read-Only.</td>\n</tr>\n<tr>\n<td>ManagerOfOrgUnit</td>\n<td></td>\n<td>Read-Only.</td>\n</tr>\n<tr>\n<td>SortOrder</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2> Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to all companies.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Can read and update all companies.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to all companies.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to all companies.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"c7e6a39c-1a39-4318-b95f-66f1d7b626a7","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"d686a9c4-290b-4c0c-a4b5-085c50b9e6ee","type":"text/javascript","exec":[""]}}],"_postman_id":"94ba4b5b-102f-454e-bc49-697378cbd0bd"},{"name":"Company Attributes","item":[{"name":"List of Company Attributes","id":"8cb31ed5-e69b-4e1d-b5dc-3637808772e3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"password":"<password>","username":"<username>","showPassword":"<show-password>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer Your-API-Token","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":"{{url}}/CompanyAttributes?$format=json","description":"<p>This request will return a list of Company Attributes from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["CompanyAttributes"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"73b36b73-ff6a-40d7-8607-77e42ccba366","name":"List of Company Attributes","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer Your-API-Token","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."}],"url":{"raw":"{{url}}/CompanyAttributes?$format=json","host":["{{url}}"],"path":["CompanyAttributes"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"DataServiceVersion","value":"3.0;"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Date","value":"Tue, 24 Sep 2019 16:25:26 GMT"},{"key":"Content-Length","value":"941"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"https://w3.cezanneondemand.com/Cezanneondemand/v4/DataService.svc/$metadata#CompanyAttributes\",\n    \"value\": [\n        {\n            \"CompanyGuid\": \"312f8348-b555-4345-bd8f-9428b39621db\",\n            \"CompanyName\": \"Omnicrom UK\",\n            \"CompanyCode\": \"OMUK\",\n            \"EffectiveFrom\": \"2000-01-01T00:00:00\",\n            \"EffectiveTo\": \"2999-12-31T00:00:00\",\n            \"CompanyType\": \"Limited Company\",\n            \"Currency\": \"United Kingdom, Pounds\",\n            \"CurrencyCode\": \"GBP\",\n            \"Country\": \"United Kingdom\",\n            \"Language\": \"English\",\n            \"TaxDistrict\": null,\n            \"TaxReference\": null,\n            \"StateofIncorporation\": null,\n            \"ChamberofCommerceEnrolment\": null,\n            \"FiscalYearEnd\": null,\n            \"LocationofCertificates\": null,\n            \"LocationofOrigCorpDocs\": null,\n            \"ConsolidationMethod\": null,\n            \"NatureofOperations\": null,\n            \"Shareholders\": null,\n            \"ExternalAuditors\": null,\n            \"BylawsArticles\": null,\n            \"Purpose\": null,\n            \"AuthorisedCapital\": null,\n            \"ShareCapital\": null,\n            \"IssuedCapital\": null,\n            \"ParValue\": null,\n            \"Comments\": null,\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2019-09-24T16:25:02.107Z\"\n        }\n    ]\n}"}],"_postman_id":"8cb31ed5-e69b-4e1d-b5dc-3637808772e3"},{"name":"Add a Company's Attributes","id":"664c4086-7591-4fa9-99c3-45f737e94a0f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"password":"<password>","username":"<username>","showPassword":"<show-password>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer Your-API-Token","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"CompanyGuid\": \"d4d3e642-373c-4f45-ac33-a5e68f5b5708\",\n\t\"EffectiveFrom\": \"2000-01-01T00:00:00\",\n\t\"EffectiveTo\": \"999-12-31T00:00:00\"\n}"},"url":"{{url}}/CompanyAttributes?$format=json","description":"<p>This request will insert a new Company Attributes record for an existing Company in the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>A company has to always have an active Company Attributes record so the EffectiveFrom and EffectiveTo need to be set to cover any potential gap in the Effective dates of the Company Details record.</li>\n</ul>","urlObject":{"path":["CompanyAttributes"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[],"_postman_id":"664c4086-7591-4fa9-99c3-45f737e94a0f"},{"name":"Update a Company's Attributes","id":"b483dfe5-9f4f-4be2-a85b-68465faec37e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"password":"<password>","username":"<username>","showPassword":"<show-password>"},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer Your-API-Token","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"Comments\": \"Example Comments\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/CompanyAttributes(CompanyGUID=guid'[CompanyGUID]', EffectiveFrom=datetime'[EffectiveFrom]')","description":"<p>This request will update a Company Attributes record from a Company in the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Request body includes only one field as an example. You can add any extra fields from the table that you require. However, some fields are read-only. \n</li>\n<li>The CompanyGUID and EffectiveFrom cannot be updated as they are the key fields for this table.</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["CompanyAttributes(CompanyGUID=guid'[CompanyGUID]', EffectiveFrom=datetime'[EffectiveFrom]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b483dfe5-9f4f-4be2-a85b-68465faec37e"},{"name":"Delete a Company's Attributes","id":"72993a28-644e-4ed6-9474-97b2a2c0d5b3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"password":"<password>","username":"<username>","showPassword":"<show-password>"},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Bearer Your-API-Token","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":"{{url}}/CompanyAttributes(CompanyGUID=guid'[CompanyGUID]', EffectiveFrom=datetime'[EffectiveFrom]')","description":"<p>This request will delete a Company Attributes record from a Company in the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n<li>A company has to always have an active Company Attributes record so you may need to delete the Company itself or add in a new Company Attributes record before deleting.</li>\n</ul>","urlObject":{"path":["CompanyAttributes(CompanyGUID=guid'[CompanyGUID]', EffectiveFrom=datetime'[EffectiveFrom]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"72993a28-644e-4ed6-9474-97b2a2c0d5b3"}],"id":"21c9de0c-1616-4a62-9e83-5b98cd038984","description":"<p>This API enables all information from the Company Attributes tab on the Company Details screen to be retrieved and modified. </p>\n<p>The identifying key for Positions is:</p>\n<ul>\n<li>CompanyGuid</li>\n<li>EffectiveFrom</li>\n</ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CompanyGuid</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>CompanyName</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>CompanyCode</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>EffectiveFrom</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>EffectiveTo</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>CompanyType</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Currency</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>CurrencyCode</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Country</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Language</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>TaxDistrict</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>TaxReference</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>StateofIncorporation</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>ChamberofCommerceEnrolment</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>FiscalYearEnd</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>LocationofCertificates</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>LocationofOrigCorpDocs</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>ConsolidationMethod</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>NatureofOperations</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Shareholders</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>ExternalAuditors</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>BylawsArticles</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Purpose</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>AuthorisedCapital</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>ShareCapital</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>IssuedCapital</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>ParValue</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Comments</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2> Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to all company attributes.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has full access to all company attributes.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"255d2beb-0e63-4dc6-b43c-dbe9e3436325","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"09c54666-3c12-4dd4-967c-e2dc46ceb334","type":"text/javascript","exec":[""]}}],"_postman_id":"21c9de0c-1616-4a62-9e83-5b98cd038984"},{"name":"Org Units","item":[{"name":"List of Org Unit Details","id":"9a952512-a501-8e92-83c7-5604b1853f89","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/OrgUnits?$format=json","description":"<p>This request will return a list of Org Unit Details from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["OrgUnits"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"b1b578ae-a548-44f8-deb2-d9b787e91bbb","name":"List of Org Unit Details","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/OrgUnits?$format=json","host":["{{url}}"],"path":["OrgUnits"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"no-cache","description":""},{"name":"connection","key":"connection","value":"keep-alive","description":""},{"name":"content-length","key":"content-length","value":"546","description":""},{"name":"content-type","key":"content-type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","description":""},{"name":"dataserviceversion","key":"dataserviceversion","value":"3.0;","description":""},{"name":"date","key":"date","value":"Mon, 31 Jul 2017 15:34:45 GMT","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"767","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#OrgUnits\",\n    \"value\": [\n        {\n            \"OrgUnitGUID\": \"738b7e37-9eca-412c-b00f-84dbae698866\",\n            \"EffectiveFrom\": \"1980-01-01T00:00:00\",\n            \"EffectiveTo\": \"2999-12-31T00:00:00\",\n            \"OrgUnitCode\": \"ABC BOARD\",\n            \"OrgUnitName\": \"ABC BOARD\",\n            \"ParentOrgUnitCode\": null,\n            \"ParentOrgUnitGUID\": null,\n            \"ParentOrgUnitName\": null,\n            \"ManagerOfOrgUnitPersonCode\": \"MD001\",\n            \"ManagerOfOrgUnit\": \"Margaret Dawkin\",\n            \"SortOrder\": 0,\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2013-04-04T08:33:00.43Z\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\"\n        }\n    ]\n}"}],"_postman_id":"9a952512-a501-8e92-83c7-5604b1853f89"},{"name":"Add an Org Unit","id":"e8ca281a-2d93-4407-39c8-58e2e220f7ee","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer Your-API-Token"}],"body":{"mode":"raw","raw":"{\n  \"OrgUnitCode\": \"QA3\",\n  \"OrgUnitName\": \"Quality Assurance\"\n}"},"url":"{{url}}/OrgUnits?$format=json","description":"<p>This request will insert a new Org Unit in the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>If the EffectiveTo is left blank, the system will try to insert the record with EffectiveTo set to Open Ended.</li>\n</ul>","urlObject":{"path":["OrgUnits"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"5b39029c-4fed-db66-308c-964976a6dca7","name":"Add an Org Unit","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer Your-API-Token"}],"body":{"mode":"raw","raw":"{\n  \"OrgUnitCode\": \"QA3\",\n  \"OrgUnitName\": \"Quality Assurance\"\n}"},"url":{"raw":"{{url}}/OrgUnits?$format=json","host":["{{url}}"],"path":["OrgUnits"],"query":[{"key":"$format","value":"json"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"492","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","name":"Content-Type","description":""},{"key":"DataServiceVersion","value":"3.0;","name":"DataServiceVersion","description":""},{"key":"Date","value":"Tue, 09 Jan 2018 11:58:01 GMT","name":"Date","description":""},{"key":"Location","value":"https://showcase.cezanneondemand.com/cezanneondemand/v2/DataService.svc/OrgUnits('QA3')","name":"Location","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"10FF1C8527C119F7CB4E7C4120B8992C37BA1C8AE5234A9C7292845F5BF38D235F1BB6B2EF2F3728FEB7A384928DF969505638D3077B989C224A35AD3FE86D663EBCCEECF12BB193FF45C084F261369A94F105CDE91537455E5B49C713A694D62D34D7A7888AD9B597BDD3246C7569B4C58B10C159A04F82DF9242075831F7E38CE8DEDD0EEAACDD6CF905FEA56D401CC4DB3789AF82193C78C9A4D6A124EB0BDE5B27B6C1663E44BDFDC68E369CC4FD3AE57BC82F41E15393895D53FCBF45BEF8EE38E5FAC9F414B14AF836AC55E69E37B3A04760F8929B12DD607AB5345FE24508BB570572B35BF0EE26ECE04E899FDAEA1A227AC0432679902DA7737F2B5B8C91E71F7F5A858689E6919028A38ADB","key":"CF_SID"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"-1","key":"CF_SLV"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"/1cGaxGPTBHcD8RBFPNm12FtDYLb3lMpw7XIBqrYFhv/PCOTAE7wxR40Odzc4CqCBqtAOZUr4ANdr0FCU5+yshc/OebxJq3yb+4ZnDyqpu6AwS+bVPF+pa/xxdPnk2Wb9Paf0Dv+yZV/0G7/d6kslgWPqvC6vBmhi0lGAwQ6OUY=","key":"__RequestVerificationToken_L0NlemFubmVPbkRlbWFuZA__"}],"responseTime":"474","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#OrgUnits/@Element\",\n    \"OrgUnitGUID\": null,\n    \"EffectiveFrom\": \"2017-12-16T00:00:00\",\n    \"EffectiveTo\": \"2999-12-31T00:00:00\",\n    \"OrgUnitCode\": \"QA3\",\n    \"OrgUnitName\": \"Quality Assurance\",\n    \"ParentOrgUnitCode\": null,\n    \"ParentOrgUnitGUID\": null,\n    \"ParentOrgUnitName\": null,\n    \"ManagerOfOrgUnitPersonCode\": null,\n    \"ManagerOfOrgUnit\": null,\n    \"SortOrder\": 0,\n    \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedDate\": \"2017-12-16T09:00:04.4274268Z\",\n    \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\"\n}"}],"_postman_id":"e8ca281a-2d93-4407-39c8-58e2e220f7ee"},{"name":"Update an Org Unit","id":"b4b0b369-dff6-407e-ba6f-73bc5f14cff8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer Your-API-Token"}],"body":{"mode":"raw","raw":"{\n\t\"EffectiveTo\": \"2020-01-01T00:00:00\"\n}"},"url":"{{url}}/OrgUnits(OrgUnitCode='[OrgUnitCode]', OrgUnitName='[OrgUnitName]')","description":"<p>This request will update an Org Unit record in the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["OrgUnits(OrgUnitCode='[OrgUnitCode]', OrgUnitName='[OrgUnitName]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b4b0b369-dff6-407e-ba6f-73bc5f14cff8"},{"name":"Delete an Org Unit","id":"50a7a974-b38a-64a7-60cf-8b0dc9f58d5f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer Your-API-Token"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/OrgUnits(OrgUnitCode='[OrgUnitCode]', OrgUnitName='[OrgUnitName]')","description":"<p>This request will delete an Org Unit record in the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["OrgUnits(OrgUnitCode='[OrgUnitCode]', OrgUnitName='[OrgUnitName]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"50a7a974-b38a-64a7-60cf-8b0dc9f58d5f"}],"id":"cc1ecd61-f2da-3427-8ed5-b04b60e859eb","description":"<p>This API enables all information from the Org Unit tab on the Org Units screen for active and inactive Org Units to be retrieved and modified.</p>\n<p>Available Parameters:</p>\n<ul><li><p>$filter</p></li><li><p>$top</p></li><li><p>$orderby</p></li><li><p>$select</p></li><li><p>$skip</p></li></ul>\n\n<p>The identifying key for Org Units is:</p>\n<ul><li><p>OrgUnitCode</p></li></ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>OrgUnitGUID</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EffectiveFrom</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>EffectiveTo</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>OrgUnitCode</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>OrgUnitName</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>ParentOrgUnitCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ParentOrgUnitGUID</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ParentOrgUnitName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ManagerOfOrgUnitPersonCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ManagerOfOrgUnit</td>\n<td></td>\n<td>Read-Only.</td>\n</tr>\n<tr>\n<td>SortOrder</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to all org units.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has read-only access to all org units.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to all org units.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to all org units.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"ea68046f-af36-449e-abce-fa26bf082c26","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"960ed2f1-9e20-475f-a724-fa6884079ba4","type":"text/javascript","exec":[""]}}],"_postman_id":"cc1ecd61-f2da-3427-8ed5-b04b60e859eb"},{"name":"Cost Centres (Read-Only)","item":[{"name":"List of Cost Centre Details","id":"35beceb2-d4f1-4e61-8ead-ccda2fae15a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/CostCentres?$format=json","description":"<p>This request will return a list of Cost Centre Details from the system.</p>\n<p><strong>Notes:</strong></p>\n<ul><li><p>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</p></li><li><p>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</p></li></ul>\n\n<p>Available Parameters:</p>\n<ul><li><p>$filter</p></li><li><p>$top</p></li><li><p>$orderby</p></li><li><p>$select</p></li><li><p>$skip</p></li><li><p>$inlinecount</p></li></ul>\n\n<p>Available Parameters:</p>\n<ul><li><p>$filter</p></li><li><p>$top</p></li><li><p>$orderby</p></li><li><p>$select</p></li><li><p>$skip</p></li><li><p>$inlinecount</p></li></ul>\n\n<p>For more information about using the above parameters, see: <a href>OData URI Conventions</a></p>\n","urlObject":{"path":["CostCentres"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"f01c6491-493c-4f87-b37a-3ad8a9637657","name":"List of Cost Centre Details","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"https://w3.cezanneondemand.com/cezanneondemand/v7/dataservice.svc/CostCentres?$format=json","protocol":"https","host":["w3","cezanneondemand","com"],"path":["cezanneondemand","v7","dataservice.svc","CostCentres"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"no-cache","description":""},{"name":"connection","key":"connection","value":"keep-alive","description":""},{"name":"content-length","key":"content-length","value":"546","description":""},{"name":"content-type","key":"content-type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","description":""},{"name":"dataserviceversion","key":"dataserviceversion","value":"3.0;","description":""},{"name":"date","key":"date","value":"Mon, 31 Jul 2017 15:34:45 GMT","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"767","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#OrgUnits\",\n    \"value\": [\n        {\n            \"CostCentreGUID\": \"738b7e37-9eca-412c-b00f-84dbae698866\",\n            \"EffectiveFrom\": \"1980-01-01T00:00:00\",\n            \"EffectiveTo\": \"2999-12-31T00:00:00\",\n            \"CostCentreCode\": \"ABC\",\n            \"CostCentreName\": \"ABC BOARD\",\n            \"TranslatedCostCentreName\": \"ABC BOARD\",\n            \"SortOrder\": 0,\n            \"ParentCostCentreGUID\": \"BOARD\",\n            \"ParentCostCentreCode\": \"BOARD\",\n            \"ParentCostCentreName\": \"BOARD\",\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2013-04-04T08:33:00.43Z\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\"\n        }\n    ]\n}"}],"_postman_id":"35beceb2-d4f1-4e61-8ead-ccda2fae15a2"}],"id":"3ff79552-9a4c-4937-a2bc-9696e5a50b4a","description":"<p>This API enables all information from the Cost Centre tab on the Cost Centres screen for active and inactive Cost Centres to be retrieved and modified.</p>\n<p>Available Parameters:</p>\n<ul><li><p>$filter</p></li><li><p>$top</p></li><li><p>$orderby</p></li><li><p>$select</p></li><li><p>$skip</p></li></ul>\n\n<p>The identifying key for Org Units is:</p>\n<ul><li><p>CostCentreGUID</p></li></ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CostCentreGUID</td>\n<td>Y</td>\n<td>Read-only. Key.</td>\n</tr>\n<tr>\n<td>EffectiveFrom</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EffectiveTo</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>CostCentreCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>CostCentreName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TranslatedCostCentreName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>SortOrder</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ParentCostCentreGUID</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ParentCostCentreCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ParentCostCentreName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to all cost centres.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has read-only access to all cost centres.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"ea68046f-af36-449e-abce-fa26bf082c26","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"960ed2f1-9e20-475f-a724-fa6884079ba4","type":"text/javascript","exec":[""]}}],"_postman_id":"3ff79552-9a4c-4937-a2bc-9696e5a50b4a"},{"name":"Jobs","item":[{"name":"List of Job Details","id":"a9d32aca-9cb8-aaa4-7c28-82c01907b758","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/Jobs?$format=json","description":"<p>This request will return a list of Job Details from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["Jobs"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"4be42360-7eda-4777-af81-f353cddece69","name":"List of Job Details","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/Jobs?$format=json","host":["{{url}}"],"path":["Jobs"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"no-cache","description":""},{"name":"connection","key":"connection","value":"keep-alive","description":""},{"name":"content-length","key":"content-length","value":"450","description":""},{"name":"content-type","key":"content-type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","description":""},{"name":"dataserviceversion","key":"dataserviceversion","value":"3.0;","description":""},{"name":"date","key":"date","value":"Mon, 31 Jul 2017 15:07:38 GMT","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"687","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#Jobs\",\n    \"value\": [\n        {\n            \"JobGUID\": \"e58def99-e5ac-466f-8d06-26f4766cfacb\",\n            \"EffectiveFrom\": \"2008-01-01T00:00:00\",\n            \"EffectiveTo\": \"2999-12-31T00:00:00\",\n            \"JobCode\": \"ADM\",\n            \"JobName\": \"Administration\",\n            \"TranslatedJobName\": \"Administration\",\n            \"ParentJob\": null,\n            \"SortOrder\": 0,\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2011-07-28T14:50:34.623Z\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\"\n        }\n    ]\n}"}],"_postman_id":"a9d32aca-9cb8-aaa4-7c28-82c01907b758"},{"name":"Add a new Job","id":"184b17c1-958e-29ae-d72b-b8a26dbcc960","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer Your-API-Token"}],"body":{"mode":"raw","raw":"{\n  \"JobCode\": \"CUSTSUPP\",\n  \"JobName\": \"Customer Support\",\n  \"EffectiveFrom\": \"2017-08-25T00:00:00\"\n}"},"url":"{{url}}/Jobs?$format=json","description":"<p>This request will insert a new Job in the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>If the EffectiveTo is left blank, the system will try to insert the record with EffectiveTo set to Open Ended.</li>\n</ul>","urlObject":{"path":["Jobs"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"345068a2-d445-2267-f3fc-7570ed64ade1","name":"Add a new Job","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer Your-API-Token"}],"body":{"mode":"raw","raw":"{\n  \"JobCode\": \"CUSTSUPP\",\n  \"JobName\": \"Customer Support\",\n  \"EffectiveFrom\": \"2017-08-25T00:00:00\"\n}"},"url":{"raw":"{{url}}/Jobs?$format=json","host":["{{url}}"],"path":["Jobs"],"query":[{"key":"$format","value":"json"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"418","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","name":"Content-Type","description":""},{"key":"DataServiceVersion","value":"3.0;","name":"DataServiceVersion","description":""},{"key":"Date","value":"Tue, 09 Jan 2018 11:59:33 GMT","name":"Date","description":""},{"key":"Location","value":"https://showcase.cezanneondemand.com/cezanneondemand/v2/DataService.svc/Jobs('CUSTSUPP')","name":"Location","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"10FF1C8527C119F7CB4E7C4120B8992C37BA1C8AE5234A9C7292845F5BF38D235F1BB6B2EF2F3728FEB7A384928DF969505638D3077B989C224A35AD3FE86D663EBCCEECF12BB193FF45C084F261369A94F105CDE91537455E5B49C713A694D62D34D7A7888AD9B597BDD3246C7569B4C58B10C159A04F82DF9242075831F7E38CE8DEDD0EEAACDD6CF905FEA56D401CC4DB3789AF82193C78C9A4D6A124EB0BDE5B27B6C1663E44BDFDC68E369CC4FD3AE57BC82F41E15393895D53FCBF45BEF8EE38E5FAC9F414B14AF836AC55E69E37B3A04760F8929B12DD607AB5345FE24508BB570572B35BF0EE26ECE04E899FDAEA1A227AC0432679902DA7737F2B5B8C91E71F7F5A858689E6919028A38ADB","key":"CF_SID"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"-1","key":"CF_SLV"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"/1cGaxGPTBHcD8RBFPNm12FtDYLb3lMpw7XIBqrYFhv/PCOTAE7wxR40Odzc4CqCBqtAOZUr4ANdr0FCU5+yshc/OebxJq3yb+4ZnDyqpu6AwS+bVPF+pa/xxdPnk2Wb9Paf0Dv+yZV/0G7/d6kslgWPqvC6vBmhi0lGAwQ6OUY=","key":"__RequestVerificationToken_L0NlemFubmVPbkRlbWFuZA__"}],"responseTime":"430","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#Jobs/@Element\",\n    \"JobGUID\": null,\n    \"EffectiveFrom\": \"2017-08-25T00:00:00\",\n    \"EffectiveTo\": \"2999-12-31T00:00:00\",\n    \"JobCode\": \"CUSTSUPP\",\n    \"JobName\": \"Customer Support\",\n    \"TranslatedJobName\": null,\n    \"ParentJob\": null,\n    \"SortOrder\": 0,\n    \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedDate\": \"2017-12-16T09:00:04.5367817Z\",\n    \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\"\n}"}],"_postman_id":"184b17c1-958e-29ae-d72b-b8a26dbcc960"},{"name":"Update a Job","id":"bd571d9c-966b-4da9-9110-95037c9740e0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer Your-API-Token"}],"body":{"mode":"raw","raw":"{\n\t\"EffectiveTo\": \"2020-01-01T00:00:00\"\n}"},"url":"{{url}}/Jobs(JobCode='[JobCode]')","description":"<p>This request will update a Job in the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Request body includes only one field as an example. You can add any extra fields from the table that you require. However, some fields are read-only. \n</li>\n<li>The JobCode cannot be updated as it is the key field for this table.</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["Jobs(JobCode='[JobCode]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"bd571d9c-966b-4da9-9110-95037c9740e0"},{"name":"Delete a Job","id":"28eb5f7a-a3a8-08dc-16f7-9fb2324485f3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer Your-API-Token"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/Jobs(JobCode='[JobCode]')","description":"<p>This request will delete a Job from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["Jobs(JobCode='[JobCode]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"28eb5f7a-a3a8-08dc-16f7-9fb2324485f3"}],"id":"b5eed373-a736-2f69-c711-98d40d0d72d2","description":"<p>This API enables all information from the Job tab on the Job Details screen to be retrieved and modified. </p>\n<p>The identifying key for Jobs is:</p>\n<ul>\n<li>JobCode</li>\n</ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>JobGUID</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EffectiveFrom</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>EffectiveTo</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>JobCode</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>JobName</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>TranslatedJobName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ParentJob</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>SortOrder</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2> Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to all jobs.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has read-only access to all jobs.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"7b2996b3-c90b-45a5-8fd3-aba34d833f24","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"73dc4621-f887-4343-bfd3-fd3f40845ccd","type":"text/javascript","exec":[""]}}],"_postman_id":"b5eed373-a736-2f69-c711-98d40d0d72d2"},{"name":"Job Attributes","item":[{"name":"List of Job Attributes","id":"d81f3bce-aa73-4ba4-a140-66229e101ae3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"password":"<password>","username":"<username>","showPassword":"<show-password>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer Your-API-Token","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."}],"url":"{{url}}/JobAttributes?$format=json","description":"<p>This request will return a list of Job Attributes from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["JobAttributes"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"96adb7f2-5731-489d-8c00-6ce658921ea5","name":"List of Job Attributes","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer Your-API-Token","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."}],"url":{"raw":"{{url}}/JobAttributes?$format=json","host":["{{url}}"],"path":["JobAttributes"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"DataServiceVersion","value":"3.0;"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Date","value":"Tue, 24 Sep 2019 16:28:51 GMT"},{"key":"Content-Length","value":"476"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"https://w3.cezanneondemand.com/Cezanneondemand/v4/DataService.svc/$metadata#JobAttributes\",\n    \"value\": [\n        {\n            \"EffectiveFrom\": \"2000-01-01T00:00:00\",\n            \"EffectiveTo\": \"2999-12-31T00:00:00\",\n            \"JobGuid\": \"9b4c0784-34dd-47cb-b7f6-3629a760ba5f\",\n            \"JobName\": \"Admin Assistant\",\n            \"JobCode\": \"ADMASST\",\n            \"Comments\": null,\n            \"ComparableLevel\": null,\n            \"Description\": null,\n            \"StandardJobClass\": null,\n            \"FLSAExemptStatus\": null,\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2019-09-20T14:44:10.74Z\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\"\n        }\n    ]\n}"}],"_postman_id":"d81f3bce-aa73-4ba4-a140-66229e101ae3"},{"name":"Add a Job's Attributes","id":"3ddbc480-37bb-4d73-839f-59e98b81745c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"password":"<password>","username":"<username>","showPassword":"<show-password>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer Your-API-Token","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"JobGuid\": \"d7d3e552-373c-4f04-ac44-a5e56f5b5708\",\n\t\"EffectiveFrom\": \"2000-01-01T00:00:00\",\n\t\"EffectiveTo\": \"999-12-31T00:00:00\"\n}"},"url":"{{url}}/JobAttributes?$format=json","description":"<p>This request will insert a new Job Attributes record for an existing Job in the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>A job has to always have an active Job Attributes record so the EffectiveFrom and EffectiveTo need to be set to cover any potential gap in the Effective dates of the Job Details record.</li>\n</ul>","urlObject":{"path":["JobAttributes"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[],"_postman_id":"3ddbc480-37bb-4d73-839f-59e98b81745c"},{"name":"Update a Job's Attributes","id":"24ad86dc-8bb8-42d6-b2c2-c0d781dce283","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"password":"<password>","username":"<username>","showPassword":"<show-password>"},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Bearer Your-API-Token","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"Comments\": \"Example Comment\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/JobAttributes(JobGUID=guid'[JobGUID]', EffectiveFrom=datetime'[EffectiveFrom]')","description":"<p>This request will delete a Job Attributes record from a Job in the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n<li>A job has to always have an active Job Attributes record so you may need to delete the Job itself or add in a new Job Attributes record before deleting.</li>\n</ul>","urlObject":{"path":["JobAttributes(JobGUID=guid'[JobGUID]', EffectiveFrom=datetime'[EffectiveFrom]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"24ad86dc-8bb8-42d6-b2c2-c0d781dce283"},{"name":"Delete a Job's Attributes","id":"ad5f6503-299b-4b93-9638-1bf05ff57cf2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"password":"<password>","username":"<username>","showPassword":"<show-password>"},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Bearer Your-API-Token","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."}],"url":"{{url}}/JobAttributes(JobGUID=guid'[JobGUID]', EffectiveFrom=datetime'[EffectiveFrom]')","description":"<p>This request will delete a Job Attributes record from a Job in the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n<li>A job has to always have an active Job Attributes record so you may need to delete the Job itself or add in a new Job Attributes record before deleting.</li>\n</ul>","urlObject":{"path":["JobAttributes(JobGUID=guid'[JobGUID]', EffectiveFrom=datetime'[EffectiveFrom]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ad5f6503-299b-4b93-9638-1bf05ff57cf2"}],"id":"47a90215-8097-4f42-9ef5-12f55d017372","description":"<p>This API enables all information from the Job Attributes tab on the Job Details screen to be retrieved and modified. </p>\n<p>The identifying key for Job Attributes is:</p>\n<ul>\n<li>JobGuid</li>\n<li>EffectiveFrom</li>\n</ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>EffectiveFrom</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>EffectiveTo</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>JobGuid</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>JobName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>JobCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Comments</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>ComparableLevel</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Description</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>StandardJobClass</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>FLSAExemptStatus</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2> Security</h2>\n\n<p>| HR Professional | Has full access to all job attributes.|\n| Restricted HR Professional | Has full access to all job attributes.|\n| Line Manager | Has read-only access to all job attributes.|\n| Self Service | Has read-only access to all job attributes.|</p>\n","event":[{"listen":"prerequest","script":{"id":"97046bed-e359-46f6-bb9a-f01244a1c123","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"5f9cdbbf-19a8-49c7-8f54-e28ab8f55c72","type":"text/javascript","exec":[""]}}],"_postman_id":"47a90215-8097-4f42-9ef5-12f55d017372"},{"name":"Positions","item":[{"name":"List of Position Details","id":"d92c66ae-d26c-4549-b5d2-4eb1b1e4e01d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"password":"<password>","username":"<username>","showPassword":"<show-password>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer Your-API-Token","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."}],"url":"{{url}}/PositionDetails?$format=json","description":"<p>This request will return a list of Position Details from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["PositionDetails"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"},{"disabled":true,"key":"$top","value":"1"}],"variable":[]}},"response":[{"id":"d372249e-a00a-4832-be15-1d079dc723a4","name":"List of Position Details","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token","type":"text"}],"url":{"raw":"{{url}}/PositionDetails?$format=json","host":["{{url}}"],"path":["PositionDetails"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"DataServiceVersion","value":"3.0;"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Date","value":"Tue, 13 Aug 2019 09:25:38 GMT"},{"key":"Content-Length","value":"645"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"{{url}}/DataService.svc/$metadata#PositionDetails\",\n    \"value\": [\n        {\n            \"PositionGuid\": \"12345000-1230-0000-0670-003355880001\",\n            \"EffectiveFrom\": \"2017-01-01T00:00:00\",\n            \"PositionCode\": \"MKTDIR\",\n            \"PositionTitle\": \"Marketing Director\",\n            \"TranslatedPositionTitle\": \"Marketing Director\",\n            \"SortOrder\": 7,\n            \"AbbrevPositionTitle\": \"Marketing Dir\",\n            \"TranslatedAbbrevPositionTitle\": \"Marketing Dir\",\n            \"EffectiveTo\": \"2999-12-31T00:00:00\",\n            \"ParentPositionTitle\": \"Chief Executive Officer\",\n            \"PrimaryGrade\": \"Internal 07\",\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2019-05-12T15:18:04.21Z\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\"\n        }\n    ]\n}"}],"_postman_id":"d92c66ae-d26c-4549-b5d2-4eb1b1e4e01d"},{"name":"Add a new Position","id":"b9e2e6e8-3c57-4388-a53e-8ea22aa7c27d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"password":"<password>","username":"<username>","showPassword":"<show-password>"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"Bearer Your-API-Token","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."}],"body":{"mode":"raw","raw":"{\n\t\"PositionCode\": \"MKTDIR-UK\",\n\t\"PositionTitle\": \"Marketing Director (UK)\",\n\t\"EffectiveFrom\": \"2019-08-13T00:00:00Z\",\n\t\"EffectiveTo\": \"2999-12-31T00:00:00Z\"\n}"},"url":"{{url}}/PositionDetails?$format=json","description":"<p>This request will insert a new Position in the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>If the EffectiveTo is left blank, the system will try to insert the record with EffectiveTo set to Open Ended.</li>\n</ul>","urlObject":{"path":["PositionDetails"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[],"_postman_id":"b9e2e6e8-3c57-4388-a53e-8ea22aa7c27d"},{"name":"Update a Position","id":"e3836222-9c76-4fc9-8614-f6d5f0d4ea6f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Your-API-Token"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"PositionTitle\": \"Example Title\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/PositionDetails(PositionGuid=guid'[PositionGuid]')","description":"<p>This request will update a Position in the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Request body includes only one field as an example. You can add any extra fields from the table that you require. However, some fields are read-only. \n</li>\n<li>The PositionGUID cannot be updated as it is the key field for this table.</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["PositionDetails(PositionGuid=guid'[PositionGuid]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e3836222-9c76-4fc9-8614-f6d5f0d4ea6f"},{"name":"Delete a Position","id":"3518074b-d267-46db-ad38-35780e94aff4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Your-API-Token"}],"url":"{{url}}/PositionDetails(PositionGuid=guid'[PositionGuid]')","description":"<p>This request will deletec a Position from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["PositionDetails(PositionGuid=guid'[PositionGuid]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3518074b-d267-46db-ad38-35780e94aff4"}],"id":"500ff6a9-3eb9-457e-b575-a52cbf1ff83f","description":"<p>This API enables all information from the Position tab on the Position Details screen to be retrieved and modified. </p>\n<p>The identifying key for Positions is:</p>\n<ul>\n<li>PositionGuid</li>\n</ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PositionGuid</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>EffectiveFrom</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>PositionCode</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>PositionTitle</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>TranslatedPositionTitle</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>SortOrder</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>AbbrevPositionTitle</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>TranslatedAbbrevPositionTitle</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EffectiveTo</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>ParentPositionTitle</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>PrimaryGrade</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2> Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to all positions.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has full access to all positions.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to all positions.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to all positions.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"d421937e-61d0-4d75-ac47-800017d2aad4","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"fd12f2b9-7fe5-4ef1-af32-f2c5f41b5cbc","type":"text/javascript","exec":[""]}}],"_postman_id":"500ff6a9-3eb9-457e-b575-a52cbf1ff83f"},{"name":"Position Attributes","item":[{"name":"List of Position Attributes","id":"0b08bdba-6d68-4ee2-baa9-2ac493eb3029","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"password":"<password>","username":"<username>","showPassword":"<show-password>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer Your-API-Token"}],"url":"{{url}}/PositionAttributes?$format=json","description":"<p>This request will return a list of Position Details from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["PositionAttributes"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"a26d97e9-ddf7-4785-9f95-51ccf6244941","name":"List of Position Attributes","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token","type":"text"}],"url":{"raw":"{{url}}/PositionAttributes?$format=json","host":["{{url}}"],"path":["PositionAttributes"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"DataServiceVersion","value":"3.0;"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Date","value":"Tue, 13 Aug 2019 09:45:49 GMT"},{"key":"Content-Length","value":"915"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#PositionAttributes\",\n    \"value\": [\n        {\n            \"PositionGuid\": \"12345000-1230-0000-0670-003355880001\",\n            \"EffectiveFrom\": \"2017-01-01T00:00:00\",\n            \"EffectiveTo\": \"2999-12-31T00:00:00\",\n            \"SupportingPosition\": 0,\n            \"PositionTitle\": \"Marketing Director\",\n            \"PositionCode\": \"MKTDIR\",\n            \"Comments\": null,\n            \"CostCentre\": \"OM002 - Marketing\",\n            \"CostCentreCode\": \"OM002\",\n            \"ExpectedFTE\": \"1.000\",\n            \"Description\": \"Marketing Director Position\",\n            \"KeyPosition\": 0,\n            \"FunctionalArea\": \"Marketing\",\n            \"ExpectedHeadcount\": 1,\n            \"JobName\": \"Marketing Director\",\n            \"JobCode\": \"MKTDIR\",\n            \"Location\": \"London Sales Office\",\n            \"LocationCompany\": \"Omnicrom UK\",\n            \"LocationCode\": \"LONSAL\",\n            \"Type\": \"Standard Permanent\",\n            \"WorkingTimePattern\": \"Full Time\",\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2019-05-12T15:18:04.21Z\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"ActualFTE\": \"0.500000000\",\n            \"ActualHeadcount\": 1,\n            \"SeniorManager\": 0,\n            \"CertifiedStaff\": 0\n        }\n    ]\n}"}],"_postman_id":"0b08bdba-6d68-4ee2-baa9-2ac493eb3029"},{"name":"Add a Position's Attributes","id":"4b6c8577-709c-4d2c-868b-8a62928d4a78","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"password":"<password>","username":"<username>","showPassword":"<show-password>"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"Bearer Your-API-Token","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."}],"body":{"mode":"raw","raw":"{\n\t\"PositionGuid\": \"f8634c7b-ea1a-42a5-9cbe-25616dcbce29\",\n\t\"EffectiveFrom\": \"2019-08-15T00:00:00Z\",\n\t\"EffectiveTo\": \"2999-12-31T00:00:00Z\"\n}"},"url":"{{url}}/PositionAttributes?$format=json","description":"<p>This request will insert a new Position Attributes record for an existing Position in the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>A position has to always have an active Position Attributes record so the EffectiveFrom and EffectiveTo need to be set to cover any potential gap in the Effective dates of the Position Details record.</li>\n</ul>","urlObject":{"path":["PositionAttributes"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[],"_postman_id":"4b6c8577-709c-4d2c-868b-8a62928d4a78"},{"name":"Update a Position's Attributes","id":"c67c0304-0385-4b9c-8698-90f59ea61f97","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"password":"<password>","username":"<username>","showPassword":"<show-password>"},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"Comments\": \"Example Comment\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/PositionAttributes(PositionGuid=guid'[PositionGuid]', EffectiveFrom=datetime'[EffectiveFrom]')","description":"<p>This request will update a Position Attributes record for a Position in the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Request body includes only one field as an example. You can add any extra fields from the table that you require. However, some fields are read-only. \n</li>\n<li>The PositionGUID and EffectiveFrom cannot be updated as they are the key fields for this table.</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["PositionAttributes(PositionGuid=guid'[PositionGuid]', EffectiveFrom=datetime'[EffectiveFrom]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c67c0304-0385-4b9c-8698-90f59ea61f97"},{"name":"Delete a Position's Attributes","id":"3daf8913-854a-4ebb-8746-0bf7f6c2d44a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"password":"<password>","username":"<username>","showPassword":"<show-password>"},"isInherited":false},"method":"DELETE","header":[],"url":"{{url}}/PositionAttributes(PositionGuid=guid'[PositionGuid]', EffectiveFrom=datetime'[EffectiveFrom]')","description":"<p>This request will delete a Position Attributes record from a Position in the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n<li>A position has to always have an active Position Attributes record so you may need to delete the Position itself or add in a new Position Attributes record before deleting.</li>\n</ul>","urlObject":{"path":["PositionAttributes(PositionGuid=guid'[PositionGuid]', EffectiveFrom=datetime'[EffectiveFrom]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3daf8913-854a-4ebb-8746-0bf7f6c2d44a"}],"id":"4d11dd36-ccb5-4cc0-b776-6810bfa6ba77","description":"<p>This API enables all information from the Position Attributes tab on the Position Details screen to be retrieved and modified. </p>\n<p>The identifying key for Positions is:</p>\n<ul>\n<li>EffectiveFrom</li>\n<li>PositionGuid</li>\n</ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PositionGuid</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>EffectiveFrom</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>EffectiveTo</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>SupportingPosition</td>\n<td></td>\n<td>1 = ticked, 0 = not ticked.</td>\n</tr>\n<tr>\n<td>PositionTitle</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>PositionCode</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>Comments</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>CostCentre</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>CostCentreCode</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>ExpectedFTE</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Description</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>KeyPosition</td>\n<td></td>\n<td>1 = ticked, 0 = not ticked.</td>\n</tr>\n<tr>\n<td>FunctionalArea</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>ExpectedHeadcount</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>JobName</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>JobCode</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Location</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LocationCompany</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>LocationCode</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Type</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>WorkingTimePattern</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ActualFTE</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>ActualHeadcount</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>SeniorManager</td>\n<td></td>\n<td>1 = ticked, 0 = not ticked.</td>\n</tr>\n<tr>\n<td>CertifiedStaff</td>\n<td></td>\n<td>1 = ticked, 0 = not ticked.</td>\n</tr>\n</tbody>\n</table>\n</div><h2> Security</h2>\n\n<p>| HR Professional | Has full access to all position attributes.|\n| Restricted HR Professional | Has full access to all position attributes.|\n| Line Manager | Has read-only access to all position attributes.|\n| Self Service | Has read-only access to all position attributes.|</p>\n","event":[{"listen":"prerequest","script":{"id":"1c312b8f-a456-4a9c-8b02-132cf7c47c5f","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"9c62a127-c095-41ff-8a1f-11fcd368d057","type":"text/javascript","exec":[""]}}],"_postman_id":"4d11dd36-ccb5-4cc0-b776-6810bfa6ba77"},{"name":"Position Grades","item":[{"name":"List of Position Grades","id":"df873669-b509-4d58-9d81-9ce1999819e0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/PositionGrades?$format=json","description":"<p>This request will return a list of Position Grades from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["PositionGrades"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"1aba6fcd-3499-4ea1-95da-a49fe20f5635","name":"List of Position Grades","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/PositionGrades?$format=json","host":["{{url}}"],"path":["PositionGrades"],"query":[{"key":"$format","value":"json"},{"key":"$top","value":"1","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"DataServiceVersion","value":"3.0;"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Date","value":"Thu, 28 Mar 2019 13:05:09 GMT"},{"key":"Content-Length","value":"547"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#PositionGrades\",\n    \"value\": [\n        {\n            \"PositionGradeGuid\": \"t122ff61-da3a-2451-8448-72cves53tt66\",\n            \"EffectiveFrom\": \"2007-01-01T00:00:00\",\n            \"EffectiveTo\": \"2999-12-31T00:00:00\",\n            \"PrimaryGrade\": 1,\n            \"Grade\": \"Internal 03\",\n            \"GradeCode\": \"INT03\",\n            \"GradeGroup\": \"Internal\",\n            \"PositionTitle\": \"Italy Sales Consultant\",\n            \"PositionCode\": \"ITALYSAL\",\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2010-05-12T15:18:36.31Z\",\n            \"Comments\": null\n        }\n    ]\n}"}],"_postman_id":"df873669-b509-4d58-9d81-9ce1999819e0"},{"name":"Add a new Position Grade","id":"08b825e9-7df7-45e4-889b-33fda852bb13","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"PositionGradeGuid\": \"cf44a4g2-d70e-437f-867d-0ff0793b3820\",\n\t\"EffectiveFrom\": \"2019-01-01T00:00:00\",\n\t\"EffectiveTo\": \"2999-12-31T00:00:00\",\n\t\"PrimaryGrade\": \"1\",\n\t\"Grade\": \"Internal 09\",\n\t\"PositionCode\": \"ACC117\"\n}"},"url":"{{url}}/PositionGrades?$format=json","description":"<p>This request will insert a new Position Grade in the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>If you have two grades with the same name in the system, the position will be allocated one of them at random as it doesn't take into account the GradeCode or GradeGroup when inserting.</li>\n</ul>","urlObject":{"path":["PositionGrades"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"2d455898-49e6-44d3-a2d5-988c372f637e","name":"Add a Position Grade","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"PositionGradeGuid\": \"cf44a4g2-d70e-437f-867d-0ff0793b3820\",\n\t\"EffectiveFrom\": \"2019-01-01T00:00:00\",\n\t\"EffectiveTo\": \"2999-12-31T00:00:00\",\n\t\"PrimaryGrade\": \"1\",\n\t\"Grade\": \"Internal 09\",\n\t\"PositionCode\": \"ACC117\"\n}"},"url":{"raw":"{{url}}/PositionGrades?$format=json","host":["{{url}}"],"path":["PositionGrades"],"query":[{"key":"$format","value":"json"},{"key":"$top","value":"1","disabled":true}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8"},{"key":"Location","value":"https://qa.cezanneondemand.com/COD_UPGRADE/v4/DataService.svc/PositionGrades(guid'cf44a2f2-d70e-437f-867d-0ff0793b3820')"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"DataServiceVersion","value":"3.0;"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Date","value":"Thu, 28 Mar 2019 13:31:22 GMT"},{"key":"Content-Length","value":"477"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#PositionGrades/@Element\",\n    \"PositionGradeGuid\": \"cf44a4g2-d70e-437f-867d-0ff0793b3820\",\n    \"EffectiveFrom\": \"2019-01-01T00:00:00\",\n    \"EffectiveTo\": \"2999-12-31T00:00:00\",\n    \"PrimaryGrade\": 1,\n    \"Grade\": \"Internal 09\",\n    \"GradeCode\": null,\n    \"GradeGroup\": null,\n    \"PositionTitle\": null,\n    \"PositionCode\": \"ACC117\",\n    \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedDate\": \"2019-03-28T12:44:55.013024Z\",\n    \"Comments\": null\n}"}],"_postman_id":"08b825e9-7df7-45e4-889b-33fda852bb13"},{"name":"Update a Position Grade","id":"d9a5a21e-de20-4c22-997b-7e213b37ab44","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"Comments\": \"Example Comment\"\n}"},"url":"{{url}}/PositionGrades(PositionGradeGuid=guid'[PositionGradeGuid]')","description":"<p>This request will update a Position Grade in the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Request body includes only one field as an example. You can add any extra fields from the table that you require. However, some fields are read-only. \n</li>\n<li>The PositionGradeGuid cannot be updated as it is the key field for this table.</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["PositionGrades(PositionGradeGuid=guid'[PositionGradeGuid]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d9a5a21e-de20-4c22-997b-7e213b37ab44"},{"name":"Delete a Position Grade","id":"c750117f-38a5-4a1e-8056-966e2b9d8023","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":"{{url}}/PositionGrades(PositionGradeGuid=guid'[PositionGradeGuid]')","description":"<p>This request will delete a Position Grade from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["PositionGrades(PositionGradeGuid=guid'[PositionGradeGuid]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c750117f-38a5-4a1e-8056-966e2b9d8023"}],"id":"10f7e944-b4ef-4f1e-9bd9-166b246714bb","description":"<p>This API enables all information from the Position Grades screen for active and inactive Positions to be retrieved and modified. </p>\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n</ul>\n\n\n\n<p>The identifying key for Org Units is:</p>\n<ul>\n<li>PositionGradeGuid</li>\n</ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PositionGradeGuid</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>EffectiveFrom</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>EffectiveTo</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>PrimaryGrade</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>Grade</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>GradeCode</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>GradeGroup</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>PositionTitle</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>PositionCode</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Comments</td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2> Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to all position grades.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has read-only access to all position grades.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"606b5070-8ce7-4a05-915b-d61c070ec8ca","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"d2bd8c35-48b7-4e9c-92bc-53f36f4a6e85","type":"text/javascript","exec":[""]}}],"_postman_id":"10f7e944-b4ef-4f1e-9bd9-166b246714bb"}],"id":"e6b54dd4-ec8f-5be2-3718-da7bc5a911f4","_postman_id":"e6b54dd4-ec8f-5be2-3718-da7bc5a911f4","description":""},{"name":"Onboarding","item":[{"name":"Checklists (Read-Only)","item":[{"name":"List of Checklists","id":"06748685-517a-427a-8dda-d6b7e0186349","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/ChecklistInstances?$format=json","description":"<p>This request will return a list of Checklist Instances from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["ChecklistInstances"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"3c237931-610b-49f2-8a3b-53e33dd705cf","name":"List of Checklists","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/ChecklistInstances?$format=json","host":["{{url}}"],"path":["ChecklistInstances"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"DataServiceVersion","value":"3.0;"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Date","value":"Thu, 05 Nov 2020 19:28:16 GMT"},{"key":"Content-Length","value":"535"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#ChecklistInstances\",\n    \"value\": [\n        {\n            \"ChecklistInstanceGUID\": \"c48ac3a1-b46c-6664-a03c-8719753caf6c\",\n            \"ChecklistStatus\": \"Running\",\n            \"OwnerName\": \"Cheryl Abrahams\",\n            \"CreatedDate\": \"2020-11-05T19:27:55.683\",\n            \"TargetDate\": \"2020-11-18T00:00:00\",\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2020-11-05T19:28:04.743Z\",\n            \"DeadlineDate\": \"2020-11-17T00:00:00\",\n            \"PercentageCompleted\": \"50.00\",\n            \"FocusPersonCode\": \"CEZ72\",\n            \"ChecklistTemplateName\": \"New Starter Checklist\"\n        }\n    ]\n}"}],"_postman_id":"06748685-517a-427a-8dda-d6b7e0186349"}],"id":"04d07043-d03e-485f-9da8-7d1e0c92baa1","description":"<p>This API enables information from the Checklist Details screen to be retrieved. </p>\n<p>The identifying key for Checklist Instances is:</p>\n<ul>\n<li>ChecklistInstanceGUID</li>\n</ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ChecklistInstanceGUID</td>\n<td></td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>ChecklistStatus</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>OwnerName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>CreatedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TargetDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>DeadlineDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PercentageCompleted</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>FocusPersonCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ChecklistTemplateName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2> Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to all checklists.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has read-only access to checklists which they are the owner of.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to checklists which they are the owner of.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to checklists which they are the owner of.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"ba5d3fb5-9690-4e2e-b071-bf2ef05d2b08","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"005824d4-0d73-4f8a-8d99-322128ed4a7b","type":"text/javascript","exec":[""]}}],"_postman_id":"04d07043-d03e-485f-9da8-7d1e0c92baa1"},{"name":"Checklist Tasks (Read-Only)","item":[{"name":"List of Checklist Tasks","id":"ec8b3070-a09b-43b8-b850-e1a539682621","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/ChecklistTasks?$format=json","description":"<p>This request will return a list of Checklist Tasks from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n<li>If the AssignedUser is 'Multiple', you can use the ChecklistTasksByUsers API to retrieve the details of the multiple users. The two APIs can be linked using ChecklistTaskGUID.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["ChecklistTasks"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"ab0477f3-b3ea-40a0-850f-fd22a1b13a41","name":"List of Checklist Tasks","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/ChecklistTasks?$format=json","host":["{{url}}"],"path":["ChecklistTasks"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"DataServiceVersion","value":"3.0;"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Date","value":"Thu, 05 Nov 2020 19:33:09 GMT"},{"key":"Content-Length","value":"739"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#ChecklistTasks\",\n    \"value\": [\n        {\n            \"ChecklistTaskGUID\": \"d55df0d6-101e-435e-816e-1dc0b99a0d65\",\n            \"FocusPersonGUID\": \"2all3358-7004-4ecc-b3c4-2f54356a5ab5\",\n            \"ChecklistInstanceGUID\": \"c43ac3a1-b35c-4364-a08c-8719753caf6c\",\n            \"Category\": \"Administration\",\n            \"AssignedTo\": \"Supervisor\",\n            \"TaskStatus\": \"To Do\",\n            \"Deadline\": \"2020-11-17T00:00:00\",\n            \"Description\": \"Organise Welcome Lunch\",\n            \"Instructions\": \"<p>Book the welcome lunch and send relevant invites to other team members</p>\",\n            \"Comments\": null,\n            \"InsertUser\": \"Rob\",\n            \"LastModifiedUser\": \"Rob\",\n            \"LastModifiedDate\": \"2020-11-05T19:28:04.743Z\",\n            \"ChecklistFocusName\": \"Brenda Becker\",\n            \"AssignedToSecurityRole\": null,\n            \"AssignedUser\": \"Tammy Bell\"\n        }\n    ]\n}"}],"_postman_id":"ec8b3070-a09b-43b8-b850-e1a539682621"}],"id":"bdda9c9f-9a52-4abf-866e-8b9edfc0d87c","description":"<p>This API enables information from Checklist Tasks to be retrieved. </p>\n<p>The identifying key for Checklist Tasks is:</p>\n<ul>\n<li>ChecklistTaskGUID</li>\n</ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ChecklistTaskGUID</td>\n<td></td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>FocusPersonGUID</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ChecklistInstanceGUID</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Category</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AssignedTo</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TaskStatus</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Deadline</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Instructions</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Comments</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ChecklistFocusName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AssignedToSecurityRole</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AssignedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2> Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to all checklists.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has read-only access to checklist tasks from checklists which they are the owner of.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to checklist tasks from checklists which they are the owner of.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to checklist tasks from checklists which they are the owner of.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"ddd15f3c-0c04-48eb-a0e5-7384acbeb4ca","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"48bd773b-4377-476a-93cb-54ef3cc55b08","type":"text/javascript","exec":[""]}}],"_postman_id":"bdda9c9f-9a52-4abf-866e-8b9edfc0d87c"},{"name":"Checklist Tasks by Users (Read-Only)","item":[{"name":"List of Checklist Tasks by Users","id":"92b8ae08-a141-4d39-9ccc-7943ac3f2b96","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/ChecklistTasksByUsers?$format=json","description":"<p>This request will return a list of Checklist Tasks by Users from the system. </p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n<li>This API is mainly used to return the list of users for a Checklist Task which has the AssignedUser set to 'Multiple'. Using this API you can retrieve the details of who the multiple users are. This API can be linked to the Checklist Tasks API using ChecklistTaskGUID.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["ChecklistTasksByUsers"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"59d6a384-cf85-4584-bae1-937909a72ade","name":"List of Checklist Tasks by Users","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/ChecklistTasksByUsers?$format=json","host":["{{url}}"],"path":["ChecklistTasksByUsers"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"DataServiceVersion","value":"3.0;"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Date","value":"Thu, 05 Nov 2020 19:38:37 GMT"},{"key":"Content-Length","value":"252"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#ChecklistTasksByUsers\",\n    \"value\": [\n        {\n            \"ChecklistTaskGUID\": \"d33df0d6-101e-555e-816e-1fg0b44a0d65\",\n            \"UserGUID\": \"ec1e3a95-aae1-415f-72b4-17f93a44551c\",\n            \"UserName\": \"Tammy Bell\"\n        }\n    ]\n}"}],"_postman_id":"92b8ae08-a141-4d39-9ccc-7943ac3f2b96"}],"id":"140baaeb-6eb9-4e6f-8f89-ec805aae660a","description":"<p>This API enables information about the Assigned users of Checklist Tasks to be retrieved. It should mostly be used for when a Checklist Task has AssignedUser set to 'Multiple' as this API can list who the multiple users are if linked using the ChecklistTaskGUID on each API.</p>\n<p>The identifying key for Checklist Tasks is:</p>\n<ul>\n<li>ChecklistTaskGUID</li>\n</ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ChecklistTaskGUID</td>\n<td></td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>UserGUID</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>UserName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2> Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to all checklists.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has read-only access to checklist tasks from checklists which they are the owner of.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to checklist tasks from checklists which they are the owner of.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to checklist tasks from checklists which they are the owner of.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"86af3bf0-3bd4-4a1d-b979-86015bda8a20","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"661d0cfa-75e9-46d5-863e-75208de7e6cc","type":"text/javascript","exec":[""]}}],"_postman_id":"140baaeb-6eb9-4e6f-8f89-ec805aae660a"}],"id":"9badc6a2-d73c-4a92-a283-cd59bc23d95d","_postman_id":"9badc6a2-d73c-4a92-a283-cd59bc23d95d","description":""},{"name":"Payroll","item":[{"name":"Regular Pay (Read-Only)","item":[{"name":"List of Employees' Regular Pay","id":"1c2ced5c-cee1-4e7e-b43e-16c47102efec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"clientSecret":"<client-secret>","clientId":"<client-id>","challengeAlgorithm":"<challenge-algorithm>","scope":"<scope>","grant_type":"<grant_type>","client_authentication":"<client_authentication>","accessTokenUrl":"<access-token-url>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/RegularPay?$format=json","description":"<p>This request will return a list of Employees' Regular Pay records from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["RegularPay"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"df2d2dc9-74fa-468b-a46f-5405d451e580","name":"List of Employees' Regular Pay","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/RegularPay?$format=json","host":["{{url}}"],"path":["RegularPay"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Aug 2022 17:45:14 GMT"},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8"},{"key":"Content-Length","value":"933"},{"key":"Connection","value":"keep-alive"},{"key":"Set-Cookie","value":"AWSALB=dn5JYbq0QWSvEEOcMnF6aG+gu73Yc+B53O2zXTD+zAzPISZvXvdpUtUY9ZLHwna/YGEyfN4QJ7jQFi8+eVrXFYacpVGb+Gkvw41LIb4bqpLlyvnvXIob9nBFwnJi; Expires=Tue, 30 Aug 2022 17:45:12 GMT; Path=/"},{"key":"Set-Cookie","value":"AWSALBCORS=dn5JYbq0QWSvEEOcMnF6aG+gu73Yc+B53O2zXTD+zAzPISZvXvdpUtUY9ZLHwna/YGEyfN4QJ7jQFi8+eVrXFYacpVGb+Gkvw41LIb4bqpLlyvnvXIob9nBFwnJi; Expires=Tue, 30 Aug 2022 17:45:12 GMT; Path=/; SameSite=None; Secure"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"DataServiceVersion","value":"3.0;"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#RegularPay\",\n    \"value\": [\n        {\n            \"PersonCode\": \"CEZ23\",\n            \"FullName\": \"Margaret Gray\",\n            \"Schedule\": \"Monthly\",\n            \"BasedOnCode\": \"Monthly\",\n            \"BasedOn\": \"Same Amount Every Period\",\n            \"EffectiveFrom\": \"2021-03-05T00:00:00\",\n            \"EffectiveTo\": \"2999-12-31T00:00:00\",\n            \"AmountRate\": \"5555.00000\",\n            \"Total\": \"66660.00000\",\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2022-04-07T09:36:50.837Z\",\n            \"TranslatedCompanyNameRelated\": \"Omnicrom UK\",\n            \"BaseHourlyRate\": null,\n            \"LeaveAdjustmentsCode\": \"AUTO\",\n            \"LeaveAdjustments\": \"Automatic\",\n            \"EmploymentIDRelated\": \"EMP0042\",\n            \"PayrollCode\": \"123\",\n            \"ChangeReasonGuid\": null,\n            \"ChangeReasonCodeDescription\": null,\n            \"Ordinal\": 1,\n            \"WTPWeeklyHours\": \"18.75\",\n            \"WTPDailyHours\": \"3.75\",\n            \"WTPActiveDaysPerWeek\": 5,\n            \"PayResolutionCode\": \"END\",\n            \"PayResolution\": \"Pay at End\",\n            \"BaseDayRate\": null,\n            \"ProRate\": 0,\n            \"FlexibleWTP\": 0,\n            \"Hours\": null,\n            \"Days\": null,\n            \"ScheduleMultiplier\": \"12.00000\",\n            \"DayRate\": null\n        }\n    ]\n}"}],"_postman_id":"1c2ced5c-cee1-4e7e-b43e-16c47102efec"}],"id":"f17c86b3-bbfc-4d01-8e36-3f31910e41bd","description":"<p>This API enables all information from the Regular Pay screen for active and inactive employees to be retrieved.</p>\n<p>The identifying keys for Regular Pay are:</p>\n<ul><li><div>EffectiveFrom</div></li><li><div>PayrollCode</div></li><li><div>PersonCode</div></li></ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PersonCode</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>FullName</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>Schedule</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>BasedOnCode</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>BasedOn</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EffectiveFrom</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EffectiveTo</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AmountRate</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Total</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TranslatedCompanyNameRelated</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>BaseHourlyRate</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LeaveAdjustmentsCode</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LeaveAdjustments</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EmploymentIDRelated</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PayrollCode</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>ChangeReasonGuid</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ChangeReasonCodeDescription</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Ordinal</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>WTPWeeklyHours</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>WTPDailyHours</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>WTPActiveDaysPerWeek</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PayResolutionCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PayResolution</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>BaseDayRate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ProRate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>FlexibleWTP</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Hours</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Days</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ScheduleMultiplier</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>OverrideBaseDayRate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>OverrideBaseHourlyRate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>MinimumWageStatus</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>UseApprenticeshipMinimumWage</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PayType</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>FTERatio</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>FTEAnnualAmount</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has read-only access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"8963651a-5272-40fd-ab7d-6d1dbd246d7a","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"7568b751-72c1-4f27-a123-f7a02c239b09","type":"text/javascript","exec":[""]}}],"_postman_id":"f17c86b3-bbfc-4d01-8e36-3f31910e41bd"},{"name":"Opening Balances (Read-Only)","item":[{"name":"List of Employees' Opening Balances","id":"5773592d-5075-4731-a676-b97624bf9d79","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"clientSecret":"<client-secret>","clientId":"<client-id>","challengeAlgorithm":"<challenge-algorithm>","scope":"<scope>","grant_type":"<grant_type>","client_authentication":"<client_authentication>","accessTokenUrl":"<access-token-url>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/OpeningBalances?$format=json","description":"<p>This request will return a list of Employees' Opening Balances from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["OpeningBalances"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"9b7a1764-39c3-4b0c-9f6c-8c11f8b9062c","name":"List of Employees' Opening Balances","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/OpeningBalances?$format=json","host":["{{url}}"],"path":["OpeningBalances"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Aug 2022 17:47:22 GMT"},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8"},{"key":"Content-Length","value":"765"},{"key":"Connection","value":"keep-alive"},{"key":"Set-Cookie","value":"AWSALB=onSCu6L00KXkkN63HPDwreBFcLo8hwa4FFnn6wgtuMuMPS/oG2bFxhMEwcoazdpzkGiuAIVRoNIHlQt9h+TgXCc1cQvXLdGzf35U0QRVM0mcdEhwigVC6l7TvGtA; Expires=Tue, 30 Aug 2022 17:47:22 GMT; Path=/"},{"key":"Set-Cookie","value":"AWSALBCORS=onSCu6L00KXkkN63HPDwreBFcLo8hwa4FFnn6wgtuMuMPS/oG2bFxhMEwcoazdpzkGiuAIVRoNIHlQt9h+TgXCc1cQvXLdGzf35U0QRVM0mcdEhwigVC6l7TvGtA; Expires=Tue, 30 Aug 2022 17:47:22 GMT; Path=/; SameSite=None; Secure"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"DataServiceVersion","value":"3.0;"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#OpeningBalances\",\n    \"value\": [\n        {\n            \"PersonCode\": \"CEZ74\",\n            \"FullName\": \"Rod Barnes\",\n            \"NotANewStarter\": 1,\n            \"P45GrossPay\": null,\n            \"P45TaxPaid\": null,\n            \"CurrentEmployerGrossPay\": \"33649.75\",\n            \"CurrentEmployerTaxPaid\": \"6259.26\",\n            \"TotalGrossPay\": \"33649.75\",\n            \"TotalTaxPaid\": \"6259.26\",\n            \"SMP\": null,\n            \"SPP\": null,\n            \"SAP\": null,\n            \"ShPP\": null,\n            \"SPBP\": null,\n            \"StudentLoan\": 0,\n            \"PostgradLoan\": null,\n            \"PensionNetPay\": \"687.51\",\n            \"PensionNotNetPay\": null,\n            \"RealTimeClass1ANI\": null,\n            \"CurrentEmployerNetPay\": \"10697.92\",\n            \"TranslatedCompanyNameRelated\": \"Omnicrom UK\",\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2022-01-17T21:14:06.163Z\",\n            \"EmploymentIDRelated\": \"158\",\n            \"PayrollCode\": \"158\"\n        }\n    ]\n}"}],"_postman_id":"5773592d-5075-4731-a676-b97624bf9d79"}],"id":"8f40ad37-80c8-45b2-9e36-7af3bfff39dd","description":"<p>This API enables all information about Payroll Opening Balances for active and inactive employees to be retrieved. </p>\n<p>The identifying keys for Opening Balances are:</p>\n<ul>\n<li>EmploymentIDRelated</li>\n<li>PersonCode</li>\n</ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PersonCode</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>FullName</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>NotANewStarter</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>P45GrossPay</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>P45TaxPaid</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>CurrentEmployerGrossPay</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>CurrentEmployerTaxPaid</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TotalGrossPay</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TotalTaxPaid</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>SMP</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>SPP</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>SAP</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ShPP</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>SPBP</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>StudentLoan</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PostgradLoan</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PensionNetPay</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PensionNotNetPay</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>RealTimeClass1ANI</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TranslatedCompanyNameRelated</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>CurrentEmployerNetPay</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EmploymentIDRelated</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PayrollCode</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2> Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has read-only access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"907413a8-08b7-4dd7-9fc4-1115ec2ee5f2","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"551cdeff-38e1-440e-8c47-35b3ebc00eba","type":"text/javascript","exec":[""]}}],"_postman_id":"8f40ad37-80c8-45b2-9e36-7af3bfff39dd"},{"name":"NIC Summaries (Read-Only)","item":[{"name":"List of Employees' NIC Summaries","id":"27fcedc0-76a5-4325-b468-e0385944dd1a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"clientSecret":"<client-secret>","clientId":"<client-id>","challengeAlgorithm":"<challenge-algorithm>","scope":"<scope>","grant_type":"<grant_type>","client_authentication":"<client_authentication>","accessTokenUrl":"<access-token-url>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/NICSummaries?$format=json","description":"<p>This request will return a list of Employees' NIC Summaries from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["NICSummaries"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"587a079b-02d6-4d01-b9c6-ac26f5c1004a","name":"List of Employees' NIC Summaries","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/NICSummaries?$format=json","host":["{{url}}"],"path":["NICSummaries"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 16 Nov 2021 15:06:27 GMT"},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8"},{"key":"Content-Length","value":"631"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"DataServiceVersion","value":"3.0;"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#NICSummaries\",\n    \"value\": [\n        {\n            \"NICSummariesGUID\": \"888ed3bb-6529-4078-b07c-b69c7fa10c21\",\n            \"OpeningBalancesGUID\": \"bd915e66-8a71-669f-a923-555e0421cdca\",\n            \"PTToUpperEarningsLimit\": \"300.00\",\n            \"LELToPrimaryThreshold\": \"876.00\",\n            \"ToLowerEarningsLimit\": 1560,\n            \"GrossEarnings\": \"5000.00\",\n            \"TotalEmployeeNICs\": \"2000.00\",\n            \"TotalEmployerNICs\": \"2000.00\",\n            \"NITableCode\": \"A\",\n            \"NITable\": \"All Employees not assigned to a different code\",\n            \"InsertUser\": \"tammy.bell@omnicrom.com\",\n            \"LastModifiedUser\": \"tammy.bell@omnicrom.com\",\n            \"LastModifiedDate\": \"2021-11-16T15:06:22.71Z\"\n        }\n    ]\n}"}],"_postman_id":"27fcedc0-76a5-4325-b468-e0385944dd1a"}],"id":"88f19aa9-95ed-456b-98d4-f09302b6f4ff","description":"<p>This API enables all information about Payroll NIC Summaries for active and inactive employees to be retrieved. </p>\n<p>The identifying key for NICSummaries is:</p>\n<ul>\n<li>NICSummariesGUID</li>\n</ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>NICSummariesGUID</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>OpeningBalancesGUID</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>PTToUpperEarningsLimit</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LELToPrimaryThreshold</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ToLowerEarningsLimit</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>GrossEarnings</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TotalEmployeeNICs</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TotalEmployerNICs</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>NITableCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>NITable</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2> Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has read-only access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"dace0351-c64e-4d90-935f-e4da2a79f7e5","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"e3287efc-5747-4166-8524-9b5ab65382fa","type":"text/javascript","exec":[""]}}],"_postman_id":"88f19aa9-95ed-456b-98d4-f09302b6f4ff"},{"name":"Additions & Deductions (Read-Only)","item":[{"name":"List of Employees' Additions & Deductions","id":"4df153d5-4b7c-4d8d-b7a6-92821835d306","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"clientSecret":"<client-secret>","clientId":"<client-id>","challengeAlgorithm":"<challenge-algorithm>","scope":"<scope>","grant_type":"<grant_type>","client_authentication":"<client_authentication>","accessTokenUrl":"<access-token-url>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/AdditionsAndDeductions?$format=json","description":"<p>This request will return a list of Employees' Additions &amp; Deductions records from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["AdditionsAndDeductions"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"144c4424-5515-46f2-8ca2-d2a032329374","name":"List of Employees' Additions & Deductions","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/AdditionsAndDeductions?$format=json","host":["{{url}}"],"path":["AdditionsAndDeductions"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Aug 2022 17:51:25 GMT"},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8"},{"key":"Content-Length","value":"1303"},{"key":"Connection","value":"keep-alive"},{"key":"Set-Cookie","value":"AWSALB=e6ffH3iHwuYdj1MEj6855GSDGrki1Nk9JFVww2HUp/wXTGSS1H8qWYOfovLN1l6v8UyaT0kR99GTRr87fZhLzD80MdRZyZUys1//yUh+5clXQpOkDZrLtACb4wHd; Expires=Tue, 30 Aug 2022 17:51:24 GMT; Path=/"},{"key":"Set-Cookie","value":"AWSALBCORS=e6ffH3iHwuYdj1MEj6855GSDGrki1Nk9JFVww2HUp/wXTGSS1H8qWYOfovLN1l6v8UyaT0kR99GTRr87fZhLzD80MdRZyZUys1//yUh+5clXQpOkDZrLtACb4wHd; Expires=Tue, 30 Aug 2022 17:51:24 GMT; Path=/; SameSite=None; Secure"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"DataServiceVersion","value":"3.0;"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#AdditionsAndDeductions\",\n    \"value\": [\n        {\n            \"PersonCode\": \"CEZ37\",\n            \"AdditionsAndDeductionsGUID\": \"f53e55e4-8c87-46ac-8f1b-067b60ab54d3\",\n            \"Description\": \"Bonus\",\n            \"EffectiveFrom\": \"2021-11-16T00:00:00\",\n            \"EffectiveTo\": \"2999-12-31T00:00:00\",\n            \"OneOffPayment\": 0,\n            \"OneOffDate\": null,\n            \"MultipleOfHourly\": null,\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2022-05-17T19:18:28.263Z\",\n            \"PayCode\": \"BONUS\",\n            \"PayCodeTitle\": \"Bonus\",\n            \"PayCodeTypeCode\": \"ADD\",\n            \"PayCodeType\": \"Addition\",\n            \"PayCodeCalculationCode\": \"FIXED\",\n            \"PayCodeCalculation\": \"Fixed Amount\",\n            \"CompanyCodeRelated\": \"TC002\",\n            \"PercentageOfNet\": null,\n            \"PercentageOfBasic\": null,\n            \"FixedAmount\": \"2000.00000\",\n            \"FixedAmountMultiplier\": null,\n            \"FixedAmountRate\": null,\n            \"FixedAmountTotal\": null,\n            \"HourlyRateMultiplier\": null,\n            \"PayCodeFixedAmountMultiplierCode\": \"NONE\",\n            \"PayCodeFixedAmountMultiplier\": \"None\",\n            \"TranslatedCompanyNameRelated\": \"Omnicrom UK\",\n            \"EmploymentIDRelated\": \"168\",\n            \"PayrollCode\": \"168\",\n            \"ProRate\": null,\n            \"RegularPaySchedule\": \"Monthly\",\n            \"ScheduleMultiplier\": 12,\n            \"RegularPayBasis\": \"Monthly\",\n            \"WTPActiveDaysPerWeek\": 0,\n            \"BaseDayRate\": null,\n            \"PayResolutionCode\": \"WORKINGDAYS\",\n            \"PayResolution\": \"Working Day Ratio\",\n            \"FlexibleWTP\": null\n        }\n    ]\n}"}],"_postman_id":"4df153d5-4b7c-4d8d-b7a6-92821835d306"}],"id":"ae29ebca-9bb5-435a-bab9-9b15f7717a24","description":"<p>This API enables all information from the Additions &amp; Deductions screen for active and inactive employees to be retrieved.</p>\n<p>The identifying keys for Regular Pay are:</p>\n<ul><li><div>AdditionsAndDeductionsGUID</div></li></ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PersonCode</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>AdditionsAndDeductionsGUID</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EffectiveFrom</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EffectiveTo</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>OneOffPayment</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>OneOffDate</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>MultipleOfHourly</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PayCode</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PayCodeTitle</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PayCodeTypeCode</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PayCodeType</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PayCodeCalculationCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PayCodeCalculation</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>CompanyCodeRelated</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PercentageOfNet</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PercentageOfBasic</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>FixedAmount</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>FixedAmountMultiplier</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>FixedAmountRate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>FixedAmountTotal</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>HourlyRateMultiplier</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PayCodeFixedAmountMultiplierCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PayCodeFixedAmountMultiplier</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TranslatedCompanyNameRelated</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EmploymentIDRelated</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PayrollCode</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ProRate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>RegularPaySchedule</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ScheduleMultiplier</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>RegularPayBasis</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>WTPActiveDaysPerWeek</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>BaseDayRate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PayResolutionCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PayResolution</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>FlexibleWTP</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ReducingBalancesInitialBalance</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ReducingBalancesPreviouslyPaid</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ReducingBalancesPeriodAmount</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ReducingBalancesAmountRepaid</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ReducingBalancesBalance</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ReducingBalancesPaymentsPaused</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>StatutoryPayment</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ChangeReason</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has read-only access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"415055df-4073-43f7-95d2-2d967ef53e5f","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"d8e5812f-be72-4ed1-83d4-eabce2932815","type":"text/javascript","exec":[""]}}],"_postman_id":"ae29ebca-9bb5-435a-bab9-9b15f7717a24"},{"name":"Tax & NI (Read-Only)","item":[{"name":"List of Employees' Tax & NI","id":"11b79965-a8ae-493e-bf8a-429e5728cec7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"clientSecret":"<client-secret>","clientId":"<client-id>","challengeAlgorithm":"<challenge-algorithm>","scope":"<scope>","grant_type":"<grant_type>","client_authentication":"<client_authentication>","accessTokenUrl":"<access-token-url>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/TaxAndNI?$format=json","description":"<p>This request will return a list of Employees' Tax &amp; NI records from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["TaxAndNI"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"73f256d7-2221-4fea-809f-7ac85fd93c01","name":"List of Employees' Tax & NI","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/TaxAndNI?$format=json","host":["{{url}}"],"path":["TaxAndNI"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 16 Nov 2021 14:50:02 GMT"},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8"},{"key":"Content-Length","value":"623"},{"key":"Connection","value":"keep-alive"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"DataServiceVersion","value":"3.0;"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#TaxAndNI\",\n    \"value\": [\n        {\n            \"PersonCode\": \"CEZ55\",\n            \"EffectiveFrom\": \"2021-01-01T00:00:00\",\n            \"EffectiveTo\": \"2021-07-31T00:00:00\",\n            \"SecondaryClass1NICsNotPayable\": 0,\n            \"Week1Month1\": 0,\n            \"TaxCode\": \"1257L\",\n            \"PostgradLoan\": 0,\n            \"LastModifiedUser\": \"tammy.bell@omnicrom.com\",\n            \"LastModifiedDate\": \"2021-08-18T14:47:25.953Z\",\n            \"StudentLoanCode\": \"None\",\n            \"StudentLoan\": \"None\",\n            \"NITableCode\": \"C\",\n            \"NITable\": \"Employees over the State Pension age\",\n            \"EmploymentIDRelated\": \"EMP0016\",\n            \"PayrollCode\": \"55\",\n            \"TranslatedCompanyNameRelated\": \"Omnicrom UK\",\n            \"InsertUser\": \"tammy.bell@omnicrom.com\"\n            \"AddedByYearEnd\": 0\n        }\n    ]\n}"}],"_postman_id":"11b79965-a8ae-493e-bf8a-429e5728cec7"}],"id":"db53ae15-f3d2-4ede-a8b3-04537334ae4b","description":"<p>This API enables all information from the Tax &amp; NI screen for active and inactive employees to be retrieved.</p>\n<p>The identifying keys for Tax &amp; NI are:</p>\n<ul><li><p>EffectiveFrom</p></li><li><p>EmploymentIDRelated</p></li><li><p>PersonCode</p></li></ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PersonCode</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>EffectiveFrom</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EffectiveTo</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>SecondaryClass1NICsNotPayable</td>\n<td>Y</td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>Week1Month1</td>\n<td>Y</td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>TaxCode</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PostgradLoan</td>\n<td>Y</td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>StudentLoanCode</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>StudentLoan</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>NITableCode</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>NITable</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>NITableDeclaration</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EmploymentIDRelated</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PayrollCode</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TranslatedCompanyNameRelated</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AddedByYearEnd</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has read-only access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"134ece31-d07f-441b-b85f-b1bedc72b9d1","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"caa17bcc-8f93-48f3-90ad-28539e26af3b","type":"text/javascript","exec":[""]}}],"_postman_id":"db53ae15-f3d2-4ede-a8b3-04537334ae4b"},{"name":"Payroll Options (Read-Only)","item":[{"name":"List of Employees' Payroll Options","id":"d5eafaab-0645-4365-b47d-01e752bb3587","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"clientId":"<client-id>","clientSecret":"<client-secret>","challengeAlgorithm":"<challenge-algorithm>","scope":"<scope>","grant_type":"<grant_type>","client_authentication":"<client_authentication>","accessTokenUrl":"<access-token-url>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/PayrollOptions?$format=json","description":"<p>This request will return a list of Employees' Payroll Options records from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["PayrollOptions"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"74717c49-8cbb-497f-8a2d-1967e75c1b3c","name":"List of Employees' Payroll Options","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/PayrollOptions?$format=json","host":["{{url}}"],"path":["PayrollOptions"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Aug 2022 17:49:08 GMT"},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8"},{"key":"Content-Length","value":"1306"},{"key":"Connection","value":"keep-alive"},{"key":"Set-Cookie","value":"AWSALB=g2+wZ+rBEB1z3Av/Wp76lbV737KcZoUAdRliETioVDEvXhSn0k/KdDEgT80Gl+IPSy1GvcZTxEQ/Ogmksfgzp3GeEjf/O2iAMNaf2lvy2BYWFtYGR2dTRBRmvL4R; Expires=Tue, 30 Aug 2022 17:49:04 GMT; Path=/"},{"key":"Set-Cookie","value":"AWSALBCORS=g2+wZ+rBEB1z3Av/Wp76lbV737KcZoUAdRliETioVDEvXhSn0k/KdDEgT80Gl+IPSy1GvcZTxEQ/Ogmksfgzp3GeEjf/O2iAMNaf2lvy2BYWFtYGR2dTRBRmvL4R; Expires=Tue, 30 Aug 2022 17:49:04 GMT; Path=/; SameSite=None; Secure"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"DataServiceVersion","value":"3.0;"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#PayrollOptions\",\n    \"value\": [\n        {\n            \"PersonCode\": \"CEZ76\",\n            \"EmploymentIDRelated\": \"154\",\n            \"StarterDeclarationCode\": \"A\",\n            \"StarterDeclarationDescription\": \"This is my first job since last 6 April and I have not been receiving taxable Jobseeker's Allowance, Employment and Support Allowance, taxable Incapacity Benefit, State or Occupational Pension\",\n            \"StarterDeclarationShortDescription\": \"First job since 6th of April\",\n            \"ExcludeFromPayruns\": 0,\n            \"SecondmentEEACitizen\": 0,\n            \"SecondmentEPM6Scheme\": 0,\n            \"SecondmentStatusCode\": null,\n            \"SecondmentStatus\": null,\n            \"Apprentice\": 0,\n            \"DirectorshipStartDate\": null,\n            \"DirectorshipEndDate\": null,\n            \"DirectorshipAlternativeNICCalculationMethod\": 0,\n            \"AddAPaymentAfterLeaving\": 0,\n            \"SendPayslipByEmail\": 0,\n            \"EmailPasswordProtected\": 0,\n            \"EmailSpecifyAPassword\": 0,\n            \"TranslatedCompanyNameRelated\": \"Omnicrom UK\",\n            \"PaymentMethodCode\": \"Credit\",\n            \"PaymentMethod\": \"Credit\",\n            \"OffPayrollWorkerIR35\": 0,\n            \"IrregularPaymentPattern\": 0,\n            \"NonIndividual\": 0,\n            \"WithholdTaxRefund\": 1,\n            \"VehicleTypeCode\": null,\n            \"VehicleType\": null,\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2022-01-17T21:23:25.35Z\",\n            \"PayrollCode\": \"154\",\n            \"LegalGenderCode\": null,\n            \"LegalGender\": null,\n            \"PayResolutionCode\": null,\n            \"PayResolution\": null,\n            \"ExcludeFromSickLeave\": 0\n        }\n    ]\n}"}],"_postman_id":"d5eafaab-0645-4365-b47d-01e752bb3587"}],"id":"0ad3f2b7-6ee4-4500-b5ed-21e93d908aa2","description":"<p>This API enables all information from the Payroll Options screen for active and inactive employees to be retrieved.</p>\n<p>The identifying keys for Payroll Options are:</p>\n<ul><li><p>EmploymentIDRelated</p></li><li><p>PersonCode</p></li></ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PersonCode</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>EmploymentIDRelated</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>StarterDeclarationCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>StarterDeclarationDescription</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>StarterDeclarationShortDescription</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ExcludeFromPayruns</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>SecondmentEEACitizen</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>SecondmentEPM6Scheme</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>SecondmentStatusCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>SecondmentStatus</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Apprentice</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>DirectorshipStartDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>DirectorshipEndDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>DirectorshipAlternativeNICCalculationMethod</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>AddAPaymentAfterLeaving</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>SendPayslipByEmail</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>EmailPasswordProtected</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>EmailSpecifyAPassword</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>TranslatedCompanyNameRelated</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PaymentMethodCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PaymentMethod</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>OffPayrollWorkerIR35</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>IrregularPaymentPattern</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>NonIndividual</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>WithholdTaxRefund</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>VehicleTypeCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>VehicleType</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PayrollCode</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LegalGenderCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LegalGender</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PayResolutionCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PayResolution</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ExcludefromSickLeave</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has read-only access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"f03e439b-ae63-48ac-9d8d-7f5d38c56993","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"a8cbde36-6afe-440b-a232-04e57055d41d","type":"text/javascript","exec":[""]}}],"_postman_id":"0ad3f2b7-6ee4-4500-b5ed-21e93d908aa2"},{"name":"Payroll Mileage (Read-Only)","item":[{"name":"List of Employees' Mileage Records","id":"ed373a96-4eba-45d0-b696-904a3eced003","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"clientSecret":"<client-secret>","clientId":"<client-id>","challengeAlgorithm":"<challenge-algorithm>","scope":"<scope>","grant_type":"<grant_type>","client_authentication":"<client_authentication>","accessTokenUrl":"<access-token-url>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/PayrollMileage?$format=json","description":"<p>This request will return a list of Employees' Payroll Mileage records from the system.</p>\n<p><strong>Notes:</strong></p>\n<ul><li><p>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</p></li><li><p>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</p></li></ul>\n\n<p>Available Parameters:</p>\n<ul><li><p>$filter</p></li><li><p>$top</p></li><li><p>$orderby</p></li><li><p>$select</p></li><li><p>$skip</p></li><li><p>$inlinecount</p></li></ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["PayrollMileage"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"6898737a-1a93-4f13-b212-5249b1c67689","name":"List of Employees' Mileage Records","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/PayrollMileage?$format=json","host":["{{url}}"],"path":["PayrollMileage"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Aug 2022 17:36:21 GMT"},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8"},{"key":"Content-Length","value":"705"},{"key":"Connection","value":"keep-alive"},{"key":"Set-Cookie","value":"AWSALB=+XVclrO/Q9TqwJLF7tcyKXjvDgB3oHa3XODE6WAUqhL/MWMiVZtebCNyFc/n7t7QPBGknHfXAqPUQk0QZ/N7smZvEpl8V/LAqVMSQSRD5oELg0WlPJ/3KmnbcSxW; Expires=Tue, 30 Aug 2022 17:36:21 GMT; Path=/"},{"key":"Set-Cookie","value":"AWSALBCORS=+XVclrO/Q9TqwJLF7tcyKXjvDgB3oHa3XODE6WAUqhL/MWMiVZtebCNyFc/n7t7QPBGknHfXAqPUQk0QZ/N7smZvEpl8V/LAqVMSQSRD5oELg0WlPJ/3KmnbcSxW; Expires=Tue, 30 Aug 2022 17:36:21 GMT; Path=/; SameSite=None; Secure"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"DataServiceVersion","value":"3.0;"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#PayrollMileage\",\n    \"value\": [\n        {\n            \"PayrollMileageGuid\": \"4cf666c5-9b80-4637-b6d8-9443d6d8a027\",\n            \"PersonCode\": \"CEZ77\",\n            \"FullName\": \"Brenda  Becker\",\n            \"EmploymentIDRelated\": \"315\",\n            \"TaxYear\": null,\n            \"PayrunPeriod\": null,\n            \"NumberOfMilesPayrun\": null,\n            \"NumberOfMilesYtd\": null,\n            \"AmountPaidPayrun\": null,\n            \"AmountPaidYtd\": null,\n            \"PayrollOptionsVehicleType\": \"Car\",\n            \"Mileage\": 255,\n            \"Date\": \"2022-05-16T00:00:00\",\n            \"NumberOfPassengers\": 0,\n            \"PassengerAmount\": \"0.00\",\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2022-07-05T18:37:48.073Z\",\n            \"TranslatedCompanyNameRelated \": \"Omnicrom UK\",\n            \"PayrollCode\": \"315\"\n        }\n    ]\n}"}],"_postman_id":"ed373a96-4eba-45d0-b696-904a3eced003"}],"id":"7e3b3e9f-9c3c-4f98-b478-c01bd9957661","description":"<p>This API enables all information from the Payroll Mileage screen for active and inactive employees to be retrieved.</p>\n<p>The identifying keys for Payroll Mileage are:</p>\n<ul><li><p>Date</p></li><li><p>EmploymentIDRelated</p></li><li><p>PersonCode</p></li></ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PayrollMileageGuid</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonCode</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>FullName</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>EmploymentIDRelated</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>TaxYear</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>PayrunPeriod</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>NumberOfMilesPayrun</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>NumberOfMilesYtd</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>AmountPaidPayrun</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>AmountPaidYtd</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>PayrollOptionsVehicleType</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Mileage</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Date</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>NumberOfPassengers</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PassengerAmount</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>TranslatedCompanyNameRelated</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>PayrollCode</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has read-only access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"7e3b3e9f-9c3c-4f98-b478-c01bd9957661"},{"name":"Benefits In Kind (Read-Only)","item":[{"name":"List of Employees' Benefits In Kind Records","id":"5b8fd40f-927c-42e4-a181-7e4fd516ebe9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"clientSecret":"<client-secret>","clientId":"<client-id>","challengeAlgorithm":"<challenge-algorithm>","scope":"<scope>","grant_type":"<grant_type>","client_authentication":"<client_authentication>","accessTokenUrl":"<access-token-url>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/BenefitsInKind?$format=json","description":"<p>This request will return a list of Employees' Benefits in Kind records from the system.</p>\n<p><strong>Notes:</strong></p>\n<ul><li><p>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</p></li><li><p>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</p></li></ul>\n\n<p>Available Parameters:</p>\n<ul><li><p>$filter</p></li><li><p>$top</p></li><li><p>$orderby</p></li><li><p>$select</p></li><li><p>$skip</p></li><li><p>$inlinecount</p></li></ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["BenefitsInKind"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"1fdc61b0-3d70-473c-9274-8d26b9010b10","name":"List of Employees' Benefits In Kind Records","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/BenefitsInKind?$format=json","host":["{{url}}"],"path":["BenefitsInKind"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Aug 2022 17:39:10 GMT"},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8"},{"key":"Content-Length","value":"1772"},{"key":"Connection","value":"keep-alive"},{"key":"Set-Cookie","value":"AWSALB=NmKF0kVAkv6Z9fnrikARlxQigk0ijOK4WRlBECsU4qiX8XTaBmYCNG8W5JRaOz7JfI4epm0GN6Q3BQBIPa6OuO7YMA9r/elYCNt3ohV81yz32Nn1/HGEQOPCfGMN; Expires=Tue, 30 Aug 2022 17:39:10 GMT; Path=/"},{"key":"Set-Cookie","value":"AWSALBCORS=NmKF0kVAkv6Z9fnrikARlxQigk0ijOK4WRlBECsU4qiX8XTaBmYCNG8W5JRaOz7JfI4epm0GN6Q3BQBIPa6OuO7YMA9r/elYCNt3ohV81yz32Nn1/HGEQOPCfGMN; Expires=Tue, 30 Aug 2022 17:39:10 GMT; Path=/; SameSite=None; Secure"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"DataServiceVersion","value":"3.0;"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#BenefitsInKind\",\n    \"value\": [\n        {\n            \"BenefitInKindGuid\": \"c55acbcf-5046-4d2d-a86c-3a4b8b7bab71\",\n            \"BenefitType\": \"Assets Transferred\",\n            \"PersonCode\": \"CEZ65\",\n            \"FullName\": \"Martin Bloomer\",\n            \"EmploymentIDRelated\": \"454\",\n            \"EmployeeId\": \"4a302c7e-10f6-4762-b13f-655a398e20f3\",\n            \"DeclarationType\": \"P11D\",\n            \"TaxYear\": \"2021/2022\",\n            \"Value\": \"555.00\",\n            \"Description\": \"Assets\",\n            \"EmployeeContribution\": \"0.00\",\n            \"CashEquivalent\": \"555.00\",\n            \"AssetType\": \"Cars\",\n            \"UseOfAssetType\": null,\n            \"Class1AType\": null,\n            \"NonClass1AType\": null,\n            \"PaymentType\": null,\n            \"TradingOrganisation\": null,\n            \"VanCashEquivalentFuel\": null,\n            \"EffectiveFrom\": \"2021-04-06T00:00:00\",\n            \"EffectiveTo\": \"2022-04-05T00:00:00\",\n            \"CataloguedCar\": null,\n            \"MakeAndModel\": null,\n            \"Registration\": null,\n            \"FirstRegistered\": null,\n            \"HasApprovedEmissionsValue\": null,\n            \"Co2Emissions\": null,\n            \"EngineSize\": null,\n            \"ZeroEmissionsMileage\": null,\n            \"FuelType\": null,\n            \"CarAvailableFrom\": null,\n            \"CarAvailableTo\": null,\n            \"DaysCarIsUnavailable\": null,\n            \"ListPrice\": null,\n            \"NonStandardAccessories\": null,\n            \"EmployeeCapitalContributions\": null,\n            \"EmployeePrivateContributions\": null,\n            \"FreeFuel\": null,\n            \"FuelAvailableFrom\": null,\n            \"FuelAvailableTo\": null,\n            \"FreeFuelReinstated\": null,\n            \"RegistrationPriorTo1998\": null,\n            \"CarRate\": null,\n            \"ChargeableValue\": null,\n            \"FullYearCharge\": null,\n            \"CashEquivalentFuel\": null,\n            \"NumberOfJointBorrowers\": null,\n            \"LoanEffectiveFrom\": null,\n            \"LoanEffectiveTo\": null,\n            \"StartingBalance\": null,\n            \"ClosingBalance\": null,\n            \"MaxBalanceInYear\": null,\n            \"InterestPaid\": null,\n            \"FullTaxMonths\": null,\n            \"MonthlyValue\": null,\n            \"OfficialInterest\": null,\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2022-08-04T09:56:41.737Z\",\n            \"PayrollCode\": \"454\",\n            \"TranslatedCompanyNameRelated \": \"Omnicrom UK\"\n        }\n    ]\n}"}],"_postman_id":"5b8fd40f-927c-42e4-a181-7e4fd516ebe9"}],"id":"e104411b-9eea-48b8-bbbd-916fc20c464f","description":"<p>This API enables all information from the Benefits In Kind screen for active and inactive employees to be retrieved.</p>\n<p>The identifying keys for Benefits In Kind are:</p>\n<ul><li><div>BenefitInKindGuid</div></li><li><div>EmploymentIDRelated</div></li></ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>BenefitInKindGuid</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>BenefitType</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>PersonCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>FullName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EmploymentIDRelated</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>EmployeeId</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>DeclarationType</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TaxYear</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Value</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Description</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EmployeeContribution</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>CashEquivalent</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AssetType</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>UseOfAssetType</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Class1AType</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>NonClass1AType</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PaymentType</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TradingOrganisation</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>VanCashEquivalentFuel</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EffectiveFrom</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EffectiveTo</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>CataloguedCar</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>MakeAndModel</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Registration</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>FirstRegistered</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>HasApprovedEmissionsValue</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>Co2Emissions</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EngineSize</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ZeroEmissionsMileage</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>FuelType</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>CarAvailableFrom</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>CarAvailableTo</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>DaysCarIsUnavailable</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ListPrice</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>NonStandardAccessories</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EmployeeCapitalContributions</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EmployeePrivateContributions</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>FreeFuel</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>FuelAvailableFrom</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>FuelAvailableTo</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>FreeFuelReinstated</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>RegistrationPriorTo1998</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>CarRate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ChargeableValue</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>FullYearCharge</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>CashEquivalentFuel</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>NumberOfJointBorrowers</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LoanEffectiveFrom</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LoanEffectiveTo</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>StartingBalance</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ClosingBalance</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>MaxBalanceInYear</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>InterestPaid</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>FullTaxMonths</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>MonthlyValue</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>OfficialInterest</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PayrollCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TranslatedCompanyNameRelated</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>BenefitToDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has read-only access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"e104411b-9eea-48b8-bbbd-916fc20c464f"},{"name":"Pensions (Read-Only)","item":[{"name":"List of Employees' Pension Records","id":"2db3b430-0790-4670-ae2e-b07d4cc8f899","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"clientSecret":"<client-secret>","clientId":"<client-id>","challengeAlgorithm":"<challenge-algorithm>","scope":"<scope>","grant_type":"<grant_type>","client_authentication":"<client_authentication>","accessTokenUrl":"<access-token-url>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/PersonPensions?$format=json","description":"<p>This request will return a list of Employees' Pension records from the system.</p>\n<p><strong>Notes:</strong></p>\n<ul><li><div>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</div></li><li><div>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</div></li></ul>\n\n<p>Available Parameters:</p>\n<ul><li><div>$filter</div></li><li><div>$top</div></li><li><div>$orderby</div></li><li><div>$select</div></li><li><div>$skip</div></li><li><div>$inlinecount</div></li></ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["PersonPensions"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"},{"disabled":true,"key":"$top","value":"1"}],"variable":[]}},"response":[{"id":"4cbb3857-acc1-4b36-b738-dbcb3a0391ae","name":"List of Employees' Pension Records","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/Pension?$format=json","host":["{{url}}"],"path":["Pension"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 16 Mar 2023 13:47:28 GMT"},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8"},{"key":"Content-Length","value":"860"},{"key":"Connection","value":"keep-alive"},{"key":"Set-Cookie","value":"AWSALB=aN00SS+c6nmqBvkQTsvhi7393bMzfz2LGAF//4DEnBLfQkFmjVN7wHBFihHCj3Hhv0flEqSWVo9NFEvFzqoaq2fkh7ORVHTvKsYVway9HoB47rik6WQ6wj+auZ8O; Expires=Thu, 23 Mar 2023 13:47:23 GMT; Path=/"},{"key":"Set-Cookie","value":"AWSALBCORS=aN00SS+c6nmqBvkQTsvhi7393bMzfz2LGAF//4DEnBLfQkFmjVN7wHBFihHCj3Hhv0flEqSWVo9NFEvFzqoaq2fkh7ORVHTvKsYVway9HoB47rik6WQ6wj+auZ8O; Expires=Thu, 23 Mar 2023 13:47:23 GMT; Path=/; SameSite=None; Secure"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"DataServiceVersion","value":"3.0;"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#Pension\",\n    \"value\": [\n        {\n            \"PensionGuid\": \"a4689d44-74cb-4c66-a8fa-bb17b73f2c06\",\n            \"PersonCode\": \"CEZ01\",\n            \"EmploymentIDRelated\": \"1234\",\n            \"TranslatedCompanyNameRelated \": \"Omnicrom UK\",\n            \"PayrollCode\": \"1234\",\n            \"ContributionLevelType\": null,\n            \"PensionSchemeName\": null,\n            \"WorkerGroupName\": null,\n            \"StartDate\": \"2022-09-01T00:00:00\",\n            \"MemberReferenceNumber\": null,\n            \"OverrideWorkerGroupContributions\": 0,\n            \"EmployeeContribution\": null,\n            \"EmployeeContributionType\": null,\n            \"EmployerContribution\": null,\n            \"EmployerContributionType\": null,\n            \"IncreaseEmployerContributions\": \"100.000000000\",\n            \"IsAeQualifyingScheme\": 1,\n            \"AdditionalVoluntaryContribution(AVC)\": \"0.000000000\",\n            \"AvcType\": \"Fixed Amount\",\n            \"AutoEnrolled\": 1,\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2023-03-16T11:49:43.877Z\"\n        }\n    ]\n}"}],"_postman_id":"2db3b430-0790-4670-ae2e-b07d4cc8f899"}],"id":"5b11768d-06c0-42ed-8763-ecd1e849df0f","description":"<p>This API enables all information from the Payroll Pension screen for active and inactive employees to be retrieved.</p>\n<p>The identifying key for Pension is:</p>\n<ul><li><p>EmploymentIDRelated</p></li></ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PensionGuid</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PersonCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EmploymentIDRelated</td>\n<td></td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>TranslatedCompanyNameRelated</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PayrollCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ContributionLevelType</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PensionSchemeName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>WorkerGroupName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>StartDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>MemberReferenceNumber</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>OverrideWorkerGroupContributions</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>EmployeeContribution</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EmployeeContributionType</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EmployerContribution</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EmployerContributionType</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>IncreaseEmployerContributions</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>IsAeQualifyingScheme</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>AdditionalVoluntaryContribution(AVC)</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AvcType</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AutoEnrolled</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has read-only access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"5b11768d-06c0-42ed-8763-ecd1e849df0f"},{"name":"Pension Schemes (Read-Only)","item":[{"name":"List of Pension Scheme Records","id":"4193b91e-be57-4fbe-819f-008bc05fd348","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"clientSecret":"<client-secret>","clientId":"<client-id>","challengeAlgorithm":"<challenge-algorithm>","scope":"<scope>","grant_type":"<grant_type>","client_authentication":"<client_authentication>","accessTokenUrl":"<access-token-url>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/PensionScheme?$format=json","description":"<p>This request will return a list of Pension Scheme records from the system.</p>\n<p><strong>Notes:</strong></p>\n<ul><li><div>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</div></li><li><div>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</div></li></ul>\n\n<p>Available Parameters:</p>\n<ul><li><div>$filter</div></li><li><div>$top</div></li><li><div>$orderby</div></li><li><div>$select</div></li><li><div>$skip</div></li><li><div>$inlinecount</div></li></ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["PensionScheme"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"},{"disabled":true,"key":"$top","value":"1"}],"variable":[]}},"response":[{"id":"76783253-42ce-4f1b-80c1-dff427e439f4","name":"List of Pension Scheme Records","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/PensionScheme?$format=json","host":["{{url}}"],"path":["PensionScheme"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 16 Mar 2023 13:55:34 GMT"},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8"},{"key":"Content-Length","value":"1370"},{"key":"Connection","value":"keep-alive"},{"key":"Set-Cookie","value":"AWSALB=iDbJDq18Lj8Vb16XI0t1vGmssYIiKYj50hUeOk81zA8dMpAgGLfnjiUBzmCpsbJt9Ctp0ml3zglWolhEihEyyfyNHtygw42R+qV4gj1RVYVSZkDvFMVbl3zZnCrK; Expires=Thu, 23 Mar 2023 13:55:33 GMT; Path=/"},{"key":"Set-Cookie","value":"AWSALBCORS=iDbJDq18Lj8Vb16XI0t1vGmssYIiKYj50hUeOk81zA8dMpAgGLfnjiUBzmCpsbJt9Ctp0ml3zglWolhEihEyyfyNHtygw42R+qV4gj1RVYVSZkDvFMVbl3zZnCrK; Expires=Thu, 23 Mar 2023 13:55:33 GMT; Path=/; SameSite=None; Secure"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"DataServiceVersion","value":"3.0;"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#PensionScheme\",\n    \"value\": [\n        {\n            \"PensionSchemeGuid\": \"0444a249-df84-4ac7-81e5-8600f5794f22\",\n            \"CompanyName\": \"Pensions\",\n            \"Name\": \"Aegon\",\n            \"PensionRule\": \"Salary Sacrifice\",\n            \"QualifyingScheme\": 1,\n            \"DisableAutoEnrolmentLetters\": 0,\n            \"SubtractBasicRateTax\": 0,\n            \"PaymentMethod\": \"Cash\",\n            \"BankName\": null,\n            \"BankBranch\": null,\n            \"BankReference\": null,\n            \"BankAccountName\": null,\n            \"BankAccountNumber\": null,\n            \"BankSortCode\": null,\n            \"UseCustomPayCodes\": 0,\n            \"AccountNumber\": null,\n            \"Portal\": null,\n            \"Website\": null,\n            \"ProviderName\": \"AE1\",\n            \"ProviderAddressLine1\": null,\n            \"ProviderAddressLIne2\": null,\n            \"ProviderAddressLine3\": null,\n            \"ProviderAddressCity\": null,\n            \"ProviderAddressPostcode\": null,\n            \"ProviderAddressCountry\": \"United Kingdom\",\n            \"TelephoneNumber\": null,\n            \"PapdisVersion\": \"1.0\",\n            \"PapdisProviderId\": null,\n            \"PapdisEmployerId\": null,\n            \"CsvFormat\": \"PAPDIS\",\n            \"ExcludeNilPaidFromContributions\": 0,\n            \"PayPeriodAdjustment\": 0,\n            \"OptOutWindow\": 1,\n            \"OptOutWindowPeriod\": \"Months\",\n            \"AdministratorName\": null,\n            \"AdministratorEmail\": null,\n            \"AdministratorAddressLine1\": null,\n            \"AdministratorAddressLine2\": null,\n            \"AdministratorAddressLine3\": null,\n            \"AdministratorAddressCity\": null,\n            \"AdministratorAddressPostcode\": null,\n            \"AdministratorAddressCountry\": \"United Kingdom\",\n            \"AdministratorTelephoneNumber\": null,\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2023-03-16T11:16:28.103Z\"\n        }\n    ]\n}"}],"_postman_id":"4193b91e-be57-4fbe-819f-008bc05fd348"}],"id":"c388ddbc-b870-4e0d-819b-f1f3dcec313f","description":"<p>This API enables all information from the Pension Schemes screen to be retrieved.</p>\n<p>The identifying key for Pension Schemes is:</p>\n<ul><li><p>PensionSchemeGuid</p></li></ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PensionSchemeGuid</td>\n<td></td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>CompanyName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Name</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PensionRule</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>QualifyingScheme</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>DisableAutoEnrolmentLetters</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>SubtractBasicRateTax</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>PaymentMethod</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>BankName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>BankBranch</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>BankReference</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>BankAccountName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>BankAccountNumber</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>BankSortCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>UseCustomPayCodes</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>AccountNumber</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Portal</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Website</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ProviderName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ProviderAddressLine1</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ProviderAddressLIne2</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ProviderAddressLine3</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ProviderAddressCity</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ProviderAddressPostcode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ProviderAddressCountry</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TelephoneNumber</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PapdisVersion</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PapdisProviderId</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PapdisEmployerId</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ExcludeNilPaidFromContributions</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>PayPeriodAdjustment</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>OptOutWindow</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>OptOutWindowPeriod</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AdministratorName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AdministratorEmail</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AdministratorAddressLine1</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AdministratorAddressLine2</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AdministratorAddressLine3</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AdministratorAddressCity</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AdministratorAddressPostcode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AdministratorAddressCountry</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AdministratorTelephoneNumber</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has read-only access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"c388ddbc-b870-4e0d-819b-f1f3dcec313f"}],"id":"0b728ad7-9228-4672-abe3-bf45a94a9f78","_postman_id":"0b728ad7-9228-4672-abe3-bf45a94a9f78","description":""},{"name":"SAML 2.0 Identifiers","item":[{"name":"List of SAML 2.0 Identifiers","id":"066d7ac5-3256-cfe0-ba5e-b21d9c2c50b0","request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/SAMLIdentifiers?$format=json","description":"<p>This request will return a list of SAML 2.0 Identifiers from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["SAMLIdentifiers"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"409332ac-84b8-3e57-d703-a1f7932b1ec3","name":"List of SAML 2.0 Identifiers","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/SAMLIdentifiers?$format=json","host":["{{url}}"],"path":["SAMLIdentifiers"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"no-cache","description":""},{"name":"connection","key":"connection","value":"keep-alive","description":""},{"name":"content-length","key":"content-length","value":"345","description":""},{"name":"content-type","key":"content-type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","description":""},{"name":"dataserviceversion","key":"dataserviceversion","value":"3.0;","description":""},{"name":"date","key":"date","value":"Tue, 25 Jul 2017 16:30:04 GMT","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"366","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#SAMLIdentifiers\",\n    \"value\": [\n        {\n            \"UserIdentifier\": \"cheryl.abrahams@omnicrom.com\",\n            \"UserName\": \"cheryl.abrahams@omnicrom.com\",\n            \"IdentityProvider\": \"AzureSAML\"\n        }\n    ]\n}"}],"_postman_id":"066d7ac5-3256-cfe0-ba5e-b21d9c2c50b0"},{"name":"Add a SAML 2.0 Identifier for a user","id":"a7a736cd-751c-d7aa-e7e5-5b2e8414aea5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json; charset=UTF-8"}],"body":{"mode":"raw","raw":"{\n  \"UserIdentifier\":\"mark.bennett@omnicrom.com\",\n  \"UserName\":\"mark.bennett@omnicrom.com\",\n  \"IdentityProvider\":\"AzureSAML\"\n}"},"url":"{{url}}/SAMLIdentifiers?$format=json","description":"<p>This request will insert a SAML 2.0 Identifier and assign it to a user record.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>\n","urlObject":{"path":["SAMLIdentifiers"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"38bc71e9-575a-3c13-77b6-9586535a053f","name":"Add a SAML 2.0 Identifier for a user","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {Your-API-Token}","warning":""},{"key":"Content-Type","value":"application/json; charset=UTF-8","warning":""}],"body":{"mode":"raw","raw":"{ \n\t\"UserIdentifier\" : \"mark.bennett@omnicrom.com\",\n\t\"UserName\" : \"mark.bennett@omnicrom.com\",\n\t\"IdentityProvider\" : \"AzureSAML\"\n}"},"url":{"raw":"{{url}}/SAMLIdentifiers?$format=json","host":["{{url}}"],"path":["SAMLIdentifiers"],"query":[{"key":"$format","value":"json"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"no-cache","description":""},{"name":"connection","key":"connection","value":"keep-alive","description":""},{"name":"content-length","key":"content-length","value":"242","description":""},{"name":"content-type","key":"content-type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","description":""},{"name":"dataserviceversion","key":"dataserviceversion","value":"3.0;","description":""},{"name":"date","key":"date","value":"Tue, 25 Jul 2017 16:38:19 GMT","description":""},{"name":"location","key":"location","value":"https://showcase.cezanneondemand.com/cezanneondemand/v2/DataService.svc/SAMLIdentifiers(IdentityProvider='AzureSAML',UserIdentifier='mark.bennett%40omnicrom.com',UserName='mark.bennett%40omnicrom.com')","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"461","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#SAMLIdentifiers/@Element\",\n    \"UserIdentifier\": \"mark.bennett@omnicrom.com\",\n    \"UserName\": \"mark.bennett@omnicrom.com\",\n    \"IdentityProvider\": \"AzureSAML\"\n}"}],"_postman_id":"a7a736cd-751c-d7aa-e7e5-5b2e8414aea5"},{"name":"Delete a user's SAML 2.0 Identifier","id":"0ea4b32f-c87c-47c4-b4be-9c63c55955de","request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"body":{"mode":"raw","raw":""},"url":"{{url}}/SAMLIdentifiers(UserIdentifier='[UserIdentifier]', UserName='[UserName]', IdentityProvider='[IdentityProvider]')","urlObject":{"path":["SAMLIdentifiers(UserIdentifier='[UserIdentifier]', UserName='[UserName]', IdentityProvider='[IdentityProvider]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0ea4b32f-c87c-47c4-b4be-9c63c55955de"}],"id":"92e276c2-3b4c-e4c3-2367-1475183bac7d","description":"<p>This API enables SAML 2.0 Identifiers for all users to be retrieved and modified.</p>\n<p>The identifying keys for SAML 2.0 Identifiers are:</p>\n<ul>\n<li>UserIdentifier</li>\n<li>UserName</li>\n<li>IdentityProvider</li>\n</ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>UserIdentifier</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>UserName</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>IdentityProvider</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n</tbody>\n</table>\n</div><h2> Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"c5cf04d9-9304-4d0e-b310-a3ea519e0c0c","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"9d0da9c7-e838-4bdb-a197-740f629684d3","type":"text/javascript","exec":[""]}}],"_postman_id":"92e276c2-3b4c-e4c3-2367-1475183bac7d"},{"name":"Working Time Pattern (WTP)","item":[{"name":"Employee WTP","item":[{"name":"List of Employee Working Time Patterns","id":"93d225f7-072a-4fa3-c007-3d51021ed7c8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/EmployeeWorkingTimePattern?$format=json","description":"<p>This request will return a list of Employee Working Time Patterns from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["EmployeeWorkingTimePattern"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"8612e53e-fc90-f587-456f-3238f3377b98","name":"List of Employee Working Time Patterns","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/EmployeeWorkingTimePattern?$format=json","host":["{{url}}"],"path":["EmployeeWorkingTimePattern"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"no-cache","description":""},{"name":"connection","key":"connection","value":"keep-alive","description":""},{"name":"content-length","key":"content-length","value":"633","description":""},{"name":"content-type","key":"content-type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","description":""},{"name":"dataserviceversion","key":"dataserviceversion","value":"3.0;","description":""},{"name":"date","key":"date","value":"Mon, 31 Jul 2017 14:19:55 GMT","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"1786","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#EmployeeWorkingTimePattern\",\n    \"value\": [\n        {\n            \"EmpWrkTimePatternCode\": \"9642c612-d1df-4d13-87d5-f5ee8b276948\",\n            \"PersonCode\": \"MD001\",\n            \"WorkingTimePatternTemplate\": \"Full Time\",\n            \"Name\": \"Full Time\",\n            \"Comments\": null,\n            \"IsFTE\": 1,\n            \"IsFlexible\": 0,\n            \"FTERatio\": \"1.000\",\n            \"FTEAutomaticallyCalculated\": 1,\n            \"EffectiveFrom\": \"1980-01-01T00:00:00\",\n            \"EffectiveTo\": \"2999-12-31T00:00:00\",\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2013-04-04T08:35:48.283Z\",\n            \"HideFromSummary\": null,\n            \"FTERatioAbsence\": null,\n            \"FTEAbsenceAutomaticallyCalculated\" null,\n            \"FTERatioCalcIsCustom\": 0\n        }\n    ]\n}"}],"_postman_id":"93d225f7-072a-4fa3-c007-3d51021ed7c8"},{"name":"Add an Employee's Working Time Pattern","id":"9bb94a78-9880-f710-f88b-a304deec41aa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"PersonCode\":\"26\",\n  \"WorkingTimePatternTemplate\":\"Full Time\",\n  \"Name\":\"Full Time\",\n  \"EffectiveFrom\":\"2017-01-01T00:00:00\",\n  \"EffectiveTo\":\"2999-12-31T00:00:00\"\n}"},"url":"{{url}}/EmployeeWorkingTimePattern?$format=json","description":"<p>This request will insert a new Working &amp; Scheduled Time record for an employee in the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>If the EffectiveTo is left blank, the system will try to insert the record with EffectiveTo set to Open Ended.</li>\n<li>If the Working Time Pattern will overlap an Absence Plan Enrolment, you cannot insert the Working Time Pattern record using this API.\n</li>\n</ul>","urlObject":{"path":["EmployeeWorkingTimePattern"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"742083d3-8a29-a931-b969-62761e8a588b","name":"Add an Employee's Working Time Pattern","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"PersonCode\":\"26\",\n\t\"WorkingTimePatternTemplate\":\"Full Time\",\n\t\"Name\":\"Full Time\",\n\t\"EffectiveFrom\":\"2017-01-01T00:00:00\",\n\t\"EffectiveTo\":\"2999-12-31T00:00:00\"\n}"},"url":{"raw":"{{url}}/EmployeeWorkingTimePattern?$format=json","host":["{{url}}"],"path":["EmployeeWorkingTimePattern"],"query":[{"key":"$format","value":"json"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"551","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","name":"Content-Type","description":""},{"key":"DataServiceVersion","value":"3.0;","name":"DataServiceVersion","description":""},{"key":"Date","value":"Tue, 09 Jan 2018 12:10:26 GMT","name":"Date","description":""},{"key":"Location","value":"https://showcase.cezanneondemand.com/cezanneondemand/v2/DataService.svc/EmployeeWorkingTimePattern(EffectiveFrom=datetime'2017-01-01T00%3A00%3A00',PersonCode='26')","name":"Location","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"10FF1C8527C119F7CB4E7C4120B8992C37BA1C8AE5234A9C7292845F5BF38D235F1BB6B2EF2F3728FEB7A384928DF969505638D3077B989C224A35AD3FE86D663EBCCEECF12BB193FF45C084F261369A94F105CDE91537455E5B49C713A694D62D34D7A7888AD9B597BDD3246C7569B4C58B10C159A04F82DF9242075831F7E38CE8DEDD0EEAACDD6CF905FEA56D401CC4DB3789AF82193C78C9A4D6A124EB0BDE5B27B6C1663E44BDFDC68E369CC4FD3AE57BC82F41E15393895D53FCBF45BEF8EE38E5FAC9F414B14AF836AC55E69E37B3A04760F8929B12DD607AB5345FE24508BB570572B35BF0EE26ECE04E899FDAEA1A227AC0432679902DA7737F2B5B8C91E71F7F5A858689E6919028A38ADB","key":"CF_SID"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"-1","key":"CF_SLV"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"/1cGaxGPTBHcD8RBFPNm12FtDYLb3lMpw7XIBqrYFhv/PCOTAE7wxR40Odzc4CqCBqtAOZUr4ANdr0FCU5+yshc/OebxJq3yb+4ZnDyqpu6AwS+bVPF+pa/xxdPnk2Wb9Paf0Dv+yZV/0G7/d6kslgWPqvC6vBmhi0lGAwQ6OUY=","key":"__RequestVerificationToken_L0NlemFubmVPbkRlbWFuZA__"}],"responseTime":"712","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#EmployeeWorkingTimePattern/@Element\",\n    \"EmpWrkTimePatternCode\": null,\n    \"PersonCode\": \"26\",\n    \"WorkingTimePatternTemplate\": \"Full Time\",\n    \"Name\": \"Full Time\",\n    \"Comments\": null,\n    \"IsFTE\": 1,\n    \"IsFlexible\": 0,\n    \"FTERatio\": \"1\",\n    \"FTEAutomaticallyCalculated\": 1,\n    \"EffectiveFrom\": \"2017-01-01T00:00:00\",\n    \"EffectiveTo\": \"2999-12-31T00:00:00\",\n    \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n    \"LastModifiedDate\": \"2017-12-16T09:00:02.5055751Z\",\n    \"HideFromSummary\": null\n}"}],"_postman_id":"9bb94a78-9880-f710-f88b-a304deec41aa"},{"name":"Update an Employee's Working Time Pattern","id":"ddb28987-181c-46ab-918f-f6ec86a622f4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"Comments\": \"Example Comment\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/EmployeeWorkingTimePattern(PersonCode='[PersonCode]', EffectiveFrom=datetime'[EffectiveFrom]')","description":"<p>This request will update an employee's Working &amp; Scheduled Time record in the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Request body includes only one field as an example. You can add any extra fields from the table that you require. However, some fields are read-only. \n</li>\n<li>The PersonCode and EffectiveFrom cannot be updated as they are the key fields for this table.</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["EmployeeWorkingTimePattern(PersonCode='[PersonCode]', EffectiveFrom=datetime'[EffectiveFrom]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ddb28987-181c-46ab-918f-f6ec86a622f4"},{"name":"Delete an Employee's Working Time Pattern","id":"e994f60d-53fd-0cae-a6dc-d6e34cf790de","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"body":{"mode":"formdata","formdata":[]},"url":"{{url}}/EmployeeWorkingTimePattern(PersonCode='[PersonCode]', EffectiveFrom=datetime'[EffectiveFrom]')","description":"<p>This request will delete an employee's Working &amp; Scheduled Time record from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["EmployeeWorkingTimePattern(PersonCode='[PersonCode]', EffectiveFrom=datetime'[EffectiveFrom]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e994f60d-53fd-0cae-a6dc-d6e34cf790de"}],"id":"7df6aa3b-5b4b-fdc2-199f-21059da2d5bf","description":"<p>This API enables all information from the Details tab on the Working &amp; Scheduled Time screen for active and inactive employees to be retrieved and modified.</p>\n<p>The identifying keys for Employee Working Time Pattern are:</p>\n<ul><li><p>PersonCode</p></li><li><p>EffectiveFrom</p></li></ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>EmpWrkTimePatternCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PersonCode</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>WorkingTimePatternTemplate</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>Name</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>Comments</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>IsFTE</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>IsFlexible</td>\n<td></td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>FTERatio</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>FTEAutomaticallyCalculated</td>\n<td></td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>EffectiveFrom</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>EffectiveTo</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>HideFromSummary</td>\n<td></td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>FTERatioAbsence</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>FTEAbsenceAutomaticallyCalculated</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>FTERatioCalcIsCustom</td>\n<td></td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to their and all subordinate records.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to their own record.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"46144f02-9291-44f5-ac58-22992798af61","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"d60053c5-8f53-428d-9fc7-1671f393f418","type":"text/javascript","exec":[""]}}],"_postman_id":"7df6aa3b-5b4b-fdc2-199f-21059da2d5bf"},{"name":"Employee WTP - FTE (Read-Only)","item":[{"name":"List of Employee Working Time Pattern FTE Details","id":"5b55969b-c364-7e1a-c19b-8f98426bc864","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/EmployeeWorkingTimePatternFTE?$format=json","description":"<p>This request will return a list of Employee Working Time Pattern FTE Details from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["EmployeeWorkingTimePatternFTE"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"99fa28ab-fef6-7608-84cf-68958eef05e2","name":"List of Employee Working Time Pattern FTE Details","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/EmployeeWorkingTimePatternFTE?$format=json","host":["{{url}}"],"path":["EmployeeWorkingTimePatternFTE"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"no-cache","description":""},{"name":"connection","key":"connection","value":"keep-alive","description":""},{"name":"content-length","key":"content-length","value":"489","description":""},{"name":"content-type","key":"content-type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","description":""},{"name":"dataserviceversion","key":"dataserviceversion","value":"3.0;","description":""},{"name":"date","key":"date","value":"Mon, 31 Jul 2017 14:23:19 GMT","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"539","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#EmployeeWorkingTimePatternFTE\",\n    \"value\": [\n        {\n            \"EmpWrkTimePatternCode\": \"46d20397-5c93-488e-98be-03aa802db248\",\n            \"TimeUnits\": \"Days\",\n            \"UseForFTERatio\": 0,\n            \"NumberOfHoursWorked\": \"7.50\",\n            \"NumberOfFTEHoursWorked\": \"7.50\",\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2013-04-03T16:21:46.887Z\",\n            \"PersonCode\": \"ABC0050\"\n        }\n    ]\n}"}],"_postman_id":"5b55969b-c364-7e1a-c19b-8f98426bc864"}],"id":"7ea0bbec-a09d-12e2-20e7-467977c0edff","description":"<p>This API enables all information from the Scheduled Hours tab on the Working &amp; Scheduled Time screen for active and inactive employees to be retrieved. </p>\n<p>The identifying keys for Employee Working Time Pattern - FTE are:</p>\n<ul>\n<li>EmpWrkTimePatternCode</li>\n<li>Weekday</li>\n<li>PersonCode</li>\n</ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>EmpWrkTimePatternCode</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>TimeUnits</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>UseForFTERatio</td>\n<td></td>\n<td>1 = Ticked, 0 = Not Ticked. Read-only.</td>\n</tr>\n<tr>\n<td>NumberOfHoursWorked</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>NumberOfFTEHoursWorked</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PersonCode</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2> Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has read-only access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"f524a95c-c3b9-4dc7-a9d3-be0345422fbe","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"e66d32a9-c31c-4c45-a714-ffd20c70aa38","type":"text/javascript","exec":[""]}}],"_postman_id":"7ea0bbec-a09d-12e2-20e7-467977c0edff"},{"name":"Employee WTP - Details (Read-Only)","item":[{"name":"List of Employee Working Time Pattern Details","id":"30fc2b32-91df-610a-9c11-30cad9202b17","request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/EmployeeWorkingTimePatternDetails?$format=json","description":"<p>This request will return a list of Employee Working Time Details from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["EmployeeWorkingTimePatternDetails"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"d447bc04-397e-d673-7f81-eaef4722cb84","name":"List of Employee Working Time Pattern Details","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/EmployeeWorkingTimePatternDetails?$format=json","host":["{{url}}"],"path":["EmployeeWorkingTimePatternDetails"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"cache-control","key":"cache-control","value":"no-cache","description":""},{"name":"connection","key":"connection","value":"keep-alive","description":""},{"name":"content-length","key":"content-length","value":"651","description":""},{"name":"content-type","key":"content-type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","description":""},{"name":"dataserviceversion","key":"dataserviceversion","value":"3.0;","description":""},{"name":"date","key":"date","value":"Mon, 31 Jul 2017 14:21:40 GMT","description":""},{"name":"x-content-type-options","key":"x-content-type-options","value":"nosniff","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"717","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#EmployeeWorkingTimePatternDetails\",\n    \"value\": [\n        {\n            \"EmpWrkTimePatternCode\": \"46d20397-5c93-488e-98be-03aa802db248\",\n            \"Weekday\": \"Friday\",\n            \"WeekdaySortOrder\": \"5\",\n            \"StartTimeAM\": \"1900-01-01T09:00:00\",\n            \"EndTimeAM\": \"1900-01-01T12:45:00\",\n            \"StartTimePM\": \"1900-01-01T13:45:00\",\n            \"EndTimePM\": \"1900-01-01T17:30:00\",\n            \"TotalHoursAM\": \"3.75\",\n            \"TotalHoursPM\": \"3.75\",\n            \"Active\": 1,\n            \"TotalHours\": \"7.50\",\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2013-04-03T16:21:46.887Z\",\n            \"PersonCode\": \"ABC0050\"\n        }\n    ]\n}"}],"_postman_id":"30fc2b32-91df-610a-9c11-30cad9202b17"}],"id":"3f19da5f-5035-6350-6237-c20af3463948","description":"<p>This API enables all information from the Working Week Pattern tab on the Working &amp; Scheduled Time screen for active and inactive employees to be retrieved. </p>\n<p>The identifying keys for Employee Working Time Pattern - Details are:</p>\n<ul>\n<li>EmpWrkTimePatternCode</li>\n<li>Weekday</li>\n<li>PersonCode</li>\n</ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>EmpWrkTimePatternCode</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>Weekday</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>WeekdaySortOrder</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>StartTimeAM</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EndTimeAM</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>StartTimePM</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EndTimePM</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TotalHoursAM</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TotalHoursPM</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Active</td>\n<td></td>\n<td>1 = Ticked, 0 = Not Ticked. Read-only.</td>\n</tr>\n<tr>\n<td>TotalHours</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PersonCode</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2> Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has read-only access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"33cfb669-cd7b-4e3b-81ab-76b04d1db947","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"3e94a51c-abfd-4ae1-88cb-a36903795e5f","type":"text/javascript","exec":[""]}}],"_postman_id":"3f19da5f-5035-6350-6237-c20af3463948"}],"id":"270e02d0-baf4-91bf-ad7f-6e84994010ca","event":[{"listen":"prerequest","script":{"id":"43939efd-adc7-4be3-911e-6d2245916b86","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"120170c7-2def-4f3a-a3a7-5ad0eca2d0b2","type":"text/javascript","exec":[""]}}],"_postman_id":"270e02d0-baf4-91bf-ad7f-6e84994010ca","description":""},{"name":"Training","item":[{"name":"Person Development Activities","item":[{"name":"List of Person Development Activities","id":"2d48e145-7e2d-45ff-a432-495bfd8b2b9f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer Your-API-Token","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."}],"url":"{{url}}/PersonDevelopmentActivities?$format=json","description":"<p>This request will return a list of Employee Development Activities from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["PersonDevelopmentActivities"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"},{"disabled":true,"key":"$top","value":"1"}],"variable":[]}},"response":[{"id":"be68669a-b3d2-4bcf-900f-7cd88d7490ae","name":"List of Person Development Activities","originalRequest":{"method":"GET","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer Your-API-Token","type":"text"}],"url":{"raw":"{{url}}/PersonDevelopmentActivities?$format=json","host":["{{url}}"],"path":["PersonDevelopmentActivities"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"DataServiceVersion","value":"3.0;"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Date","value":"Fri, 08 Feb 2019 11:09:46 GMT"},{"key":"Content-Length","value":"1018"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#PersonDevelopmentActivities\",\n    \"value\": [\n        {\n            \"PersonActivityGuid\": \"1147b7e8-ba69-45d5-baf7-00d7570059de\",\n            \"PersonCode\": \"CEZ15\",\n            \"FullName\": \"Jason Hentze\",\n            \"EffectiveFrom\": \"2012-09-26T00:00:00\",\n            \"EffectiveTo\": \"2012-09-30T00:00:00\",\n            \"Priority\": 0,\n            \"TotalCost\": \"4000.00\",\n            \"Currency\": \"GBP\",\n            \"Comment\": null,\n            \"Duration\": \"60.00\",\n            \"WorkingTimeTaken\": \"8.00\",\n            \"FinancedByOrganisation\": \"2000.00\",\n            \"FinancedByCompany\": \"2000.00\",\n            \"ActivityCode\": \"Computing Concepts\",\n            \"NonCataloguedActivity\": null,\n            \"ActivityName\": \"Computing Concepts\",\n            \"ActivityType\": \"Course\",\n            \"ActivityCategory\": \"Technical\",\n            \"Status\": \"Completed\",\n            \"TimeUnits\": \"Hours\",\n            \"AttendedDuring\": \"Working Hours\",\n            \"Plan\": \"Development Plan 2012\",\n            \"AssociatedNeed\": null,\n            \"SessionName\": null,\n            \"SessionDuration\": null,\n            \"Source\": \"Employee Career Aspirations\",\n            \"Outcome\": \"Competency Balance\",\n            \"PlanTaken\": null,\n            \"RenewalDate\": \"2019-03-07T00:00:00\",\n            \"Rating\": \"3\",\n            \"DevelopmentActivityComment\": null,\n            \"Provider\": \"Training Provider 1\"\n        }\n    ]\n}"}],"_postman_id":"2d48e145-7e2d-45ff-a432-495bfd8b2b9f"},{"name":"Add a new Development Activity to a Person","id":"a7174a47-5a8c-4234-88a7-dc9ff1e993c0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer Your-API-Token"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"PersonCode\": \"CEZ01\",\n\t\"EffectiveFrom\": \"2019-02-07T00:00:00Z\",\n\t\"EffectiveTo\": \"2019-02-07T00:00:00Z\",\n\t\"NonCataloguedActivity\": \"French Course\"\n}"},"url":"{{url}}/PersonDevelopmentActivities?$format=json","description":"<p>This request will insert a Development Activity for an employee.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n<li>if you don't fill in the optional fields when inserting records they won't be populated automatically.</li>\n</ul>","urlObject":{"path":["PersonDevelopmentActivities"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[],"_postman_id":"a7174a47-5a8c-4234-88a7-dc9ff1e993c0"},{"name":"Update a Person's Development Activity","id":"62db51a7-d595-4962-a6e1-d64820f0b920","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","type":"text","value":"Your-API-Token","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"Comment\": \"Example Comment\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/PersonDevelopmentActivities(PersonActivityGuid=guid'[PersonActivityGuid]')","description":"<p>This request will update an employee's Development Activity.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Request body includes only one field as an example. You can add any extra fields from the table that you require. However, some fields are read-only. \n</li>\n<li>The PersonActivityGuid cannot be updated as it is the key field for this table.</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["PersonDevelopmentActivities(PersonActivityGuid=guid'[PersonActivityGuid]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"62db51a7-d595-4962-a6e1-d64820f0b920"},{"name":"Delete a Person's Development Activity","id":"20ba1f92-e770-45e9-bcf2-c0c3589ace6d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Your-API-Token","warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman."}],"url":"{{url}}/PersonDevelopmentActivities(PersonActivityGuid=guid'[PersonActivityGuid]')","description":"<p>This request will delete an employee's Development Activity.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["PersonDevelopmentActivities(PersonActivityGuid=guid'[PersonActivityGuid]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"20ba1f92-e770-45e9-bcf2-c0c3589ace6d"}],"id":"54658f00-467d-4ef3-ac45-e1ea4c9487bb","description":"<p>The Person Development Activities API enables all information from the Development Activities screen for active and inactive employees to be retrieved and modified.</p>\n<p>The identifying keys for Person Development Activities are:</p>\n<ul><li><div>PersonActivityGuid</div></li></ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PersonActivityGuid</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>PersonGUID</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>PersonCode</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>FullName</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>EffectiveFrom</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>EffectiveTo</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>Priority</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>TotalCost</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>Currency</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Comment</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Duration</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>WorkingTimeTaken</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>FinancedByOrganisation</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>FinancedByCompany</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>ActivityCode</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>NonCataloguedActivity</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>ActivityName</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>ActivityType</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>ActivityCategory</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Status</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>TimeUnits</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>AttendedDuring</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Plan</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>AssociatedNeed</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>SessionName</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>SessionDuration</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Source</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Outcome</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>PlanTaken</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>RenewalDate</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Rating</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>DevelopmentActivityComment</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Provider</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>ApprovalStatus</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>ApprovalStatusCode</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>ApproverGuid</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>ApproverName</td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to their and all subordinate records.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to their own record.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"fbb4d323-0e44-40a4-ae80-496a94999076","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"848cdd42-5fcb-416b-a262-33e78d333475","type":"text/javascript","exec":[""]}}],"_postman_id":"54658f00-467d-4ef3-ac45-e1ea4c9487bb"}],"id":"52de3099-9664-4c32-87fd-b5d7b2603b6e","_postman_id":"52de3099-9664-4c32-87fd-b5d7b2603b6e","description":""},{"name":"Employee Groups","item":[{"name":"Employee Group Members (Read-only)","item":[{"name":"List of Employee Group Members","id":"5b7ac809-7945-489b-a560-86a10a4c0bef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer Your-API-Token"}],"url":"{{url}}/EmployeeGroupMembers?$format=json","description":"<p>This request will return a list of Employee Group Members from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["EmployeeGroupMembers"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"7da2f3d6-7243-4997-9083-de027a4bccb2","name":"List of Employee Group Members","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/EmployeeGroupMembers?$format=json","host":["{{url}}"],"path":["EmployeeGroupMembers"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#EmployeeGroupMembers\",\n    \"value\": [\n        {\n            \"EmployeeGroupGuid\": \"4r9rr1dd-674e-4144-a88c-rr444cdcd4b5\",\n            \"PersonGuid\": \"6ru4bn9r-39te-276g-964b-ccbb3992ad19\",\n            \"FullName\": \"Cheryl Abrahams\",\n            \"PersonCode\": \"CEZ01\",\n            \"InsertUser\": \"tammy.bell@omnicrom.com\",\n            \"LastModifiedUser\": \"tammy.bell@omnicrom.com\",\n            \"LastModifiedDate\": \"2019-08-13T09:48:41.86Z\",\n            \"EmployeeGroup\": \"Office Keys\"\n        }\n    ]\n}"}],"_postman_id":"5b7ac809-7945-489b-a560-86a10a4c0bef"}],"id":"cf84dd00-c921-4659-b032-198780ff2af4","description":"<p>This API enables information about the members of Employee Groups to be retrieved.</p>\n<p>The identifying keys for Employee Group Members are:</p>\n<ul>\n<li>EmployeeGroupGuid</li>\n<li>PersonGuid</li>\n</ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>EmployeeGroupGuid</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PersonGuid</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>FullName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PersonCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EmployeeGroup</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2> Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to this API.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has read-only access to this API.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"43b26d49-5908-49da-a74e-8ceeb339b39a","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"37a60a8d-ed6e-4f28-89d3-4ad3a75431a4","type":"text/javascript","exec":[""]}}],"_postman_id":"cf84dd00-c921-4659-b032-198780ff2af4"}],"id":"2097d282-7de4-4326-beaa-7491c2ac5e52","_postman_id":"2097d282-7de4-4326-beaa-7491c2ac5e52","description":""},{"name":"Workspaces","item":[{"name":"Workspaces (Read-only)","item":[{"name":"List of Workspaces","id":"24c180c5-3c11-45c2-8485-941bbfcb038b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer Your-API-Token","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{url}}/Workspaces?$format=json","description":"<p>This request will return a list of Workspaces from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["Workspaces"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"9fe28aeb-40e8-4959-a3c6-78b253b59304","name":"List of Workspaces","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":{"raw":"{{url}}/Workspaces?$format=json","host":["{{url}}"],"path":["Workspaces"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"DataServiceVersion","value":"3.0;"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Date","value":"Fri, 28 Aug 2020 08:25:38 GMT"},{"key":"Content-Length","value":"526"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"{{url}}\"/$metadata#Workspaces\",\n    \"value\": [\n        {\n            \"WorkspaceGuid\": \"p8e517f3-3l84-5c07-858a-5f7336b32df6\",\n            \"TypeName\": \"Corporate\",\n            \"TranslatedTypeName\": \"Corporate\",\n            \"WorkspaceName\": \"HR Portal\",\n            \"TranslatedWorkspaceName\": \"HR Portal\",\n            \"WorkspaceDescription\": \"A workspace for sharing information with the whole organisation.\",\n            \"UserCount\": \"Everyone\",\n            \"InsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"LastModifiedDate\": \"2020-05-14T10:29:21.617Z\"\n        }\n    ]\n}"}],"_postman_id":"24c180c5-3c11-45c2-8485-941bbfcb038b"}],"id":"94ca42d8-dfc0-4152-8dd3-8d2fc704f150","description":"<p>This API enables details about Workspaces to be retrieved.</p>\n<p>The identifying key for Workspaces is:</p>\n<ul><li><p>WorkspaceGuid</p></li></ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>WorkspaceGuid</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TypeName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TranslatedTypeName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>WorkspaceName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TranslatedWorkspaceName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>WorkspaceDescription</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>UserCount</td>\n<td></td>\n<td>Read-only. Displays 'Everyone' for Corporate Workspaces and a number for Private and Public Workspaces.</td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to this API.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"a6afbc6d-73f2-4bb4-9593-69c606e64d8b","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"a72f4f12-5d10-411c-8c62-48615ebcf3a6","type":"text/javascript","exec":[""]}}],"_postman_id":"94ca42d8-dfc0-4152-8dd3-8d2fc704f150"}],"id":"fd85b872-c723-45f7-a9d9-798c7ff77c3e","_postman_id":"fd85b872-c723-45f7-a9d9-798c7ff77c3e","description":""},{"name":"Kudos","item":[{"name":"Kudos (Read-only)","item":[{"name":"List of Kudos","id":"572a00ac-45a0-4611-a217-91928870acaf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>","clientSecret":"<client-secret>","clientId":"<client-id>","tokenName":"<token-name>","challengeAlgorithm":"<challenge-algorithm>","scope":"<scope>","grant_type":"<grant_type>","client_authentication":"<client_authentication>","accessTokenUrl":"<access-token-url>"},"isInherited":false},"method":"GET","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer Your-API-Token","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{url}}/Kudos?$format=json","description":"<p>This request will return a list of Kudos from the system.</p>\n<p><strong>Notes:</strong></p>\n<ul><li><p>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</p></li><li><p>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</p></li></ul>\n\n<p>Available Parameters:</p>\n<ul><li><p>$filter</p></li><li><p>$top</p></li><li><p>$orderby</p></li><li><p>$select</p></li><li><p>$skip</p></li><li><p>$inlinecount</p></li></ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["Kudos"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"2f01c013-0680-4cd2-9dbb-cf8c2b79224f","name":"List of Kudos","originalRequest":{"method":"GET","header":[{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer Your-API-Token","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":{"raw":"{{url}}/Kudos?$format=json","host":["{{url}}"],"path":["Kudos"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 13 Jul 2023 09:10:14 GMT"},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8"},{"key":"Content-Length","value":"452"},{"key":"Connection","value":"keep-alive"},{"key":"Set-Cookie","value":"AWSALB=s0yM6rKv8+MsnWupx5zhvwPPIKFp7rMcx8CFvSFoTaedfRQQClqMYqftYj9F8kmOdHlWHH+cXAeordOGh2uf+K9c93RN0wxmAnV66fCpjx7djeadDyUdS8EwbUjV; Expires=Thu, 20 Jul 2023 09:10:13 GMT; Path=/"},{"key":"Set-Cookie","value":"AWSALBCORS=s0yM6rKv8+MsnWupx5zhvwPPIKFp7rMcx8CFvSFoTaedfRQQClqMYqftYj9F8kmOdHlWHH+cXAeordOGh2uf+K9c93RN0wxmAnV66fCpjx7djeadDyUdS8EwbUjV; Expires=Thu, 20 Jul 2023 09:10:13 GMT; Path=/; SameSite=None; Secure"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"DataServiceVersion","value":"3.0;"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#Kudos\",\n    \"value\": [\n        {\n            \"KudosGUID\": \"563580fe-0d98-422f-8e50-ba678d7cc7de\",\n            \"KudosGiver\": \"Shawn Acker\",\n            \"KudosRecipient\": \"Cheryl Abrahams\",\n            \"KudosText\": \"Great Job!\",\n            \"Category\": \"High Achiever\",\n            \"KudosDate\": \"2023-07-13T00:00:00\",\n            \"InsertUser\": \"shawn.acker@omnicrom.com\",\n            \"LastModifiedUser\": \"shawn.acker@omnicrom.com\",\n            \"LastModifiedDate\": \"2023-07-13T09:09:05.06Z\"\n        }\n    ]\n}"}],"_postman_id":"572a00ac-45a0-4611-a217-91928870acaf"}],"id":"4fc68c30-c0be-43bc-b38c-2ef1a683b543","description":"<p>This API enables details about Kudos to be retrieved.</p>\n<p>The identifying key for Kudos is:</p>\n<ul><li><p>KudosGuid</p></li></ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>KudosGUID</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>KudosGiver</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>KudosRecipient</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>KudosText</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Category</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>KudosDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to this API.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"4fc68c30-c0be-43bc-b38c-2ef1a683b543"}],"id":"3d97c808-429d-4e8e-a517-b114fdd7b515","_postman_id":"3d97c808-429d-4e8e-a517-b114fdd7b515","description":""},{"name":"Clock In / Clock Out","item":[{"name":"Clock In / Out Details (Read-Only)","item":[{"name":"List of Employee Clock In / Out Records","id":"7a223bc2-666b-4606-a56f-4181311ff414","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/ClockInOutDetails?$format=json","description":"<p>This request will return a list of Employee Clock In / Out Records from the system.</p>\n<p><strong>Notes:</strong></p>\n<ul><li><p>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</p></li><li><p>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</p></li><li><p>When retrieving the details of a Clock In / Out record, every record has two Clock In / Out dates and times, the original (once recorded, never changes) and modified (changes if edited in the system by HR or employees) times.</p></li><li><p>In most scenarios, the modified values are likely to be the ones you need to use.</p><ul><li><p>ClockInDateTime = Original value</p></li><li><p>ModifiedClockInDateTime = Modified, Current value</p></li></ul></li></ul>\n\n<p>Available Parameters:</p>\n<ul><li><p>$filter</p></li><li><p>$top</p></li><li><p>$orderby</p></li><li><p>$select</p></li><li><p>$skip</p></li><li><p>$inlinecount</p></li></ul>\n\n<p>For more information about using the above parameters, see: <a href>OData URI Conventions</a></p>\n","urlObject":{"path":["ClockInOutDetails"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[],"_postman_id":"7a223bc2-666b-4606-a56f-4181311ff414"}],"id":"a90cc67e-0126-4278-884f-accc647d9125","description":"<p>This API enables information from the Person Clock In / Out screen for active and inactive employees to be retrieved.</p>\n<p>The identifying key for Clock In / Out is:</p>\n<ul><li><p>ClockInOutDetailGuid</p></li></ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ClockInOutDetailGuid</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PersonPlanGuid</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PlanTypeGuid</td>\n<td></td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>PersonGuid</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>PersonCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>FullName</td>\n<td></td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>ActivityName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ClockInDateTime</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ClockInLocation</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ClockInIPAddress</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ClockInDeviceName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ClockOutDateTime</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ClockOutLocation</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ClockOutIPAddress</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ClockOutDeviceName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ModifiedClockInDateTime</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ModifiedClockOutDateTime</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TotalTime</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ModifiedTotalTime</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ClockOutTimeZone</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ClockInTimeZone</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ModifiedClockInTimeZone</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ModifiedClockOutTimeZone</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>InsertUserName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ClockOutUserName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ModifiedClockOutLocation</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ModifiedClockOutIPAddress</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ModifiedClockInLocation</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ModifiedClockInIPAddress</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PlanTypeName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>IsRejected</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>RejectedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PlanTypeTimeZone</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TotalTimeWithBreaksRemoved</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ModifiedTotalTimeWithBreaksRemoved</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>OptOutOfMandatoryBreaks</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>HasMandatoryBreaks</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>IsLatest</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ClockInUTCDateTime</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ClockOutUTCDateTime</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ModifiedClockInUTCDateTime</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ModifiedClockOutUTCDateTime</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>CanTakeBreaks</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TotalBreakTime</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>BreakCount</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has read-only access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to their and all subordinate records.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to their own record.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"a8a61523-9978-477e-9f67-3305d313ae9b","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"12f8e727-d658-4d50-9cea-e0e518052ac9","type":"text/javascript","exec":[""]}}],"_postman_id":"a90cc67e-0126-4278-884f-accc647d9125"},{"name":"Clock In / Out Breaks (Read-Only)","item":[{"name":"List of Employee Clock In / Out Breaks Records","id":"919b1ab9-2f4b-4263-8de3-99e9ffeb4c3f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/ClockInOutBreaks?$format=json","description":"<p>This request will return a list of Employee Clock In / Out Breaks Records from the system.</p>\n<p><strong>Notes:</strong></p>\n<ul><li><p>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</p></li><li><p>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</p></li><li><p>When retrieving the details of a Clock In / Out Breaks record, every record has two Clock In / Out dates and times, the original (once recorded, never changes) and modified (changes if edited in the system by HR or employees) times.</p></li><li><p>In most scenarios, the modified values are likely to be the ones you need to use.</p><ul><li><p>ClockInDateTime = Original value</p></li><li><p>ModifiedClockInDateTime = Modified, Current value</p></li></ul></li></ul>\n\n<p>Available Parameters:</p>\n<ul><li><p>$filter</p></li><li><p>$top</p></li><li><p>$orderby</p></li><li><p>$select</p></li><li><p>$skip</p></li><li><p>$inlinecount</p></li></ul>\n\n<p>For more information about using the above parameters, see: <a href>OData URI Conventions</a></p>\n","urlObject":{"path":["ClockInOutBreaks"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[],"_postman_id":"919b1ab9-2f4b-4263-8de3-99e9ffeb4c3f"}],"id":"821dd4ec-c1ca-4e44-9b6c-b77e7a73d2aa","description":"<p>This API enables information from the Clock In / Out Breaks screen for active and inactive employees to be retrieved.</p>\n<p>The identifying keys for Clock In / Out Breaks are:</p>\n<ul>\n<li>ClockInOutBreakGuid</li>\n<li>PersonGuid</li>\n</ul>\n    \n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>PersonGuid</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PersonCode</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>FullName</td>\n<td></td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>ClockInOutBreakGuid</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>ClockInOutDetailGuid</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>BreakStartTimeZone</td>\n<td></td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>BreakEndTimeZone</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>BreakType</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ModifiedBreakStartTimeZone</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ModifiedBreakEndTimeZone</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ModifiedBreakStartLocation</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ModifiedBreakEndLocation</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>BreakStartLocation</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>BreakEndLocation</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>InsertUserName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>BreakStartDeviceName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ModifiedBreakStartIPAddress</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ModifiedBreakEndIPAddress</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>BreakStartIPAddress</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>BreakEndIPAddress</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>BreakEndDeviceName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>SelfServiceDeviceBreakStartName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>SelfServiceDeviceBreakEndName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>BreakEndUserName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ModifiedBreakType</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Duration</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ModifiedDuration</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PlanTypeTimeZone</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>BreakStartUTCDateTime</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>BreakEndUTCDateTime</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ModifiedBreakStartUTCDateTime</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ModifiedBreakEndUTCDateTime</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has read-only access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to their and all subordinate records.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to their own record.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"a8a61523-9978-477e-9f67-3305d313ae9b","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"12f8e727-d658-4d50-9cea-e0e518052ac9","type":"text/javascript","exec":[""]}}],"_postman_id":"821dd4ec-c1ca-4e44-9b6c-b77e7a73d2aa"}],"id":"539d4ddc-a645-46cf-8e24-899d353a3a58","_postman_id":"539d4ddc-a645-46cf-8e24-899d353a3a58","description":""},{"name":"Performance","item":[{"name":"Employee Appraisals (Read-Only)","item":[{"name":"List of Employee Appraisals","id":"8bada7c4-eacc-4b1b-b123-25c25e456389","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/EmployeeAppraisals?$format=json","description":"<p>This request will return a list of Employee Appraisals from the system.</p>\n<p><strong>Notes:</strong></p>\n<ul><li><div>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</div></li><li><div>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</div></li></ul>\n\n<p>Available Parameters:</p>\n<ul><li><div>$filter</div></li><li><div>$top</div></li><li><div>$orderby</div></li><li><div>$select</div></li><li><div>$skip</div></li><li><div>$inlinecount</div></li></ul>\n\n<p>For more information about using the above parameters, see: <a href=\"https://\">OData URI Conventions</a></p>\n","urlObject":{"path":["EmployeeAppraisals"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[],"_postman_id":"8bada7c4-eacc-4b1b-b123-25c25e456389"}],"id":"7a3dc5a3-e6c1-4570-b569-263bfca8cd52","description":"<p>This API enables information from Employee Appraisals for active and inactive employees to be retrieved.</p>\n<p>The identifying keys for Employee Appraisals are:</p>\n<ul><li><p>EmployeeAppraisalGuid</p></li><li><p>PersonGuid</p></li></ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>EmployeeAppraisalGuid</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>PersonGuid</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>PersonID</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PersonName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EffectiveFrom</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EffectiveTo</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AppraisalFormGuid</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AppraisalForm</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AppraisalFormDescription</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AppraisalFormActive</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AppraisalType</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ReviewType</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>MultiRaterParticipantGuid</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>MultiRaterParticipantID</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>MultiRaterParticipantName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ReviewerGuid</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ReviewerID</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ReviewerName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>IsPrimary</td>\n<td>Y</td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked</td>\n</tr>\n<tr>\n<td>Score</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>CalculatedScore</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ScorePercentage</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>RatingScaleValue</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>VisibleToEmployee</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>VisibleToSupervisor</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>DevelopmentPlan</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>RatingScaleType</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>CalculateOverallScore</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>RatingScale</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>OverallScoreFormat</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>UseCalculatedScore</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AllowOverallScoreEditing</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ConfigureSectionWeighting</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>DisplayInstructions</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AllowSummaryComments</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ConfigureSignatures</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"7a3dc5a3-e6c1-4570-b569-263bfca8cd52"},{"name":"Employee Appraisal Competency Ratings Sections (Read-Only)","item":[{"name":"List of Employee Appraisal Competency Ratings Sections","id":"f1355b79-0889-4cdb-b448-b348b5a0865b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/EmployeeAppraisalCompetencyRatingsSections?$format=json","description":"<p>This request will return a list of Employee Appraisal Competency Ratings Sections from the system.</p>\n<p><strong>Notes:</strong></p>\n<ul><li><div>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</div></li><li><div>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</div></li></ul>\n\n<p>Available Parameters:</p>\n<ul><li><div>$filter</div></li><li><div>$top</div></li><li><div>$orderby</div></li><li><div>$select</div></li><li><div>$skip</div></li><li><div>$inlinecount</div></li></ul>\n\n<p>For more information about using the above parameters, see: <a href=\"https://\">OData URI Conventions</a></p>\n","urlObject":{"path":["EmployeeAppraisalCompetencyRatingsSections"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[],"_postman_id":"f1355b79-0889-4cdb-b448-b348b5a0865b"}],"id":"2ba21e71-24c2-4872-a2fc-dfaaad6fa545","description":"<p>This API enables information from Employee Appraisal Competency Ratings Sections for active and inactive employees to be retrieved.</p>\n<p>The identifying keys for Employee Appraisal Competency Ratings Sections are:</p>\n<ul><li><p>EmployeeAppraisalGuid</p></li><li><p>EmployeeAppraisalSectionGuid</p></li><li><p>PersonGuid</p></li></ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>EmployeeAppraisalSectionGuid</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>EmployeeAppraisalGuid</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>PersonGuid</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>PersonID</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PersonName</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AppraisalFormGuid</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AppraisalForm</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AppraisalFormSectionGuid</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>SectionType</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>SectionName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>SectionIntroduction</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AllowLinkingToDevelopmentPlan</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked</td>\n</tr>\n<tr>\n<td>SortOrder</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>CompetencyType</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>CompetencyProfile</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>RatingScale</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>CalculateSectionScore</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked</td>\n</tr>\n<tr>\n<td>DisplayScore</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>UseCalculatedScore</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked</td>\n</tr>\n<tr>\n<td>AllowSectionScoreEditing</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked</td>\n</tr>\n<tr>\n<td>SectionWeight</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>DisplaySectionWeight</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked</td>\n</tr>\n<tr>\n<td>AllowSectionWeightEditing</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked</td>\n</tr>\n<tr>\n<td>DisplayBars</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ShowExpectedLevel</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked</td>\n</tr>\n<tr>\n<td>ConfigureCompetencyWeighting</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked</td>\n</tr>\n<tr>\n<td>DisplayCompetencyWeight</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked</td>\n</tr>\n<tr>\n<td>AllowCompetencyWeightEditing</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked</td>\n</tr>\n<tr>\n<td>AllowCompetencyEditing</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked</td>\n</tr>\n<tr>\n<td>AllowAddEditComments</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked</td>\n</tr>\n<tr>\n<td>Score</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>CalculatedScore</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ScorePercentage</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ScoreIncomplete</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>RatingScaleValue</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>DevelopmentPlan</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"2ba21e71-24c2-4872-a2fc-dfaaad6fa545"},{"name":"Employee Appraisal Job Competency Profile Ratings Sections (Read-Only)","item":[{"name":"List of Employee Appraisal Job Competency Profile Ratings Sections","id":"4e334c82-e91c-43ca-ac4a-5cee4a81b584","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/EmployeeAppraisalJobCompetencyProfileRatingsSections?$format=json","description":"<p>This request will return a list of Employee Appraisal Competency Ratings Sections from the system.</p>\n<p><strong>Notes:</strong></p>\n<ul><li><div>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</div></li><li><div>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</div></li></ul>\n\n<p>Available Parameters:</p>\n<ul><li><div>$filter</div></li><li><div>$top</div></li><li><div>$orderby</div></li><li><div>$select</div></li><li><div>$skip</div></li><li><div>$inlinecount</div></li></ul>\n\n<p>For more information about using the above parameters, see: <a href=\"https://\">OData URI Conventions</a></p>\n","urlObject":{"path":["EmployeeAppraisalJobCompetencyProfileRatingsSections"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[],"_postman_id":"4e334c82-e91c-43ca-ac4a-5cee4a81b584"}],"id":"bad9d183-44d5-4781-ad2c-ebcf9b63cf7d","description":"<p>This API enables information from Employee Appraisal Job Competency Profile Ratings Sections for active and inactive employees to be retrieved.</p>\n<p>The identifying keys for Employee Appraisal Job Competency Profile Ratings Sections are:</p>\n<ul><li><p>EmployeeAppraisalGuid</p></li>\n<li><p>EmployeeAppraisalSectionGuid</p>\n</li><li><p>PersonGuid</p></li></ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>EmployeeAppraisalSectionGuid</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>EmployeeAppraisalGuid</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>PersonGuid</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>PersonID</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PersonName</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AppraisalFormGuid</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AppraisalForm</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AppraisalFormSectionGuid</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>SectionType</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>SectionName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>SectionIntroduction</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AllowLinkingToDevelopmentPlan</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked</td>\n</tr>\n<tr>\n<td>SortOrder</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>RatingScale</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>CalculateSectionScore</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked</td>\n</tr>\n<tr>\n<td>DisplayScore</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>UseCalculatedScore</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked</td>\n</tr>\n<tr>\n<td>AllowSectionScoreEditing</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked</td>\n</tr>\n<tr>\n<td>SectionWeight</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>DisplaySectionWeight</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked</td>\n</tr>\n<tr>\n<td>AllowSectionWeightEditing</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked</td>\n</tr>\n<tr>\n<td>DisplayBars</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ShowExpectedLevel</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked</td>\n</tr>\n<tr>\n<td>DisplayCompetencyWeight</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked</td>\n</tr>\n<tr>\n<td>AllowCompetencyWeightEditing</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked</td>\n</tr>\n<tr>\n<td>AllowAddEditComments</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked</td>\n</tr>\n<tr>\n<td>Score</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>CalculatedScore</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ScorePercentage</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ScoreIncomplete</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>RatingScaleValue</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>JobProfile</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Job</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>DevelopmentPlan</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"bad9d183-44d5-4781-ad2c-ebcf9b63cf7d"},{"name":"Employee Appraisal Objectives Planning Sections (Read-Only)","item":[{"name":"List of Employee Appraisal Objectives Planning Sections","id":"c0d204e1-04e8-4292-840e-3c64c2b8dee7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/EmployeeAppraisalObjectivesPlanningSections?$format=json","description":"<p>This request will return a list of Employee Appraisal Objectives Planning Sections from the system.</p>\n<p><strong>Notes:</strong></p>\n<ul><li><div>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</div></li><li><div>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</div></li></ul>\n\n<p>Available Parameters:</p>\n<ul><li><div>$filter</div></li><li><div>$top</div></li><li><div>$orderby</div></li><li><div>$select</div></li><li><div>$skip</div></li><li><div>$inlinecount</div></li></ul>\n\n<p>For more information about using the above parameters, see: <a href=\"https://\">OData URI Conventions</a></p>\n","urlObject":{"path":["EmployeeAppraisalObjectivesPlanningSections"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[],"_postman_id":"c0d204e1-04e8-4292-840e-3c64c2b8dee7"}],"id":"b446d54c-1604-4d1d-9894-e3bd2ab89b7d","description":"<p>This API enables information from Employee Appraisal Objectives Planning Sections for active and inactive employees to be retrieved.</p>\n<p>The identifying keys for Employee Appraisal Objectives Planning Sections are:</p>\n<ul><li><p>EmployeeAppraisalGuid</p></li><li><p>EmployeeAppraisalSectionGuid</p></li><li><p>PersonGuid</p></li></ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>EmployeeAppraisalSectionGuid</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>EmployeeAppraisalGuid</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>PersonGuid</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>PersonID</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PersonName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AppraisalFormGuid</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AppraisalForm</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AppraisalFormSectionGuid</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>SectionType</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>SectionName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>SectionIntroduction</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AllowLinkingToDevelopmentPlan</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked</td>\n</tr>\n<tr>\n<td>SortOrder</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ObjectivePlan</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ObjectiveCategory</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ConfigureObjectiveWeighting</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked</td>\n</tr>\n<tr>\n<td>DisplayObjectiveWeight</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked</td>\n</tr>\n<tr>\n<td>AllowObjectiveWeightEditing</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked</td>\n</tr>\n<tr>\n<td>AllowObjectiveEditing</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked</td>\n</tr>\n<tr>\n<td>AllowAddEditComments</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked</td>\n</tr>\n<tr>\n<td>DevelopmentPlan</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"b446d54c-1604-4d1d-9894-e3bd2ab89b7d"},{"name":"Employee Appraisal Objectives Review Sections (Read-Only)","item":[{"name":"List of Employee Appraisal Objectives Review Sections","id":"4d6fad1d-3d40-4650-8be5-fc8aa28bb430","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/EmployeeAppraisalObjectivesReviewSections?$format=json","description":"<p>This request will return a list of Employee Appraisal Objectives Review Sections from the system.</p>\n<p><strong>Notes:</strong></p>\n<ul><li><div>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</div></li><li><div>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</div></li></ul>\n\n<p>Available Parameters:</p>\n<ul><li><div>$filter</div></li><li><div>$top</div></li><li><div>$orderby</div></li><li><div>$select</div></li><li><div>$skip</div></li><li><div>$inlinecount</div></li></ul>\n\n<p>For more information about using the above parameters, see: <a href=\"https://\">OData URI Conventions</a></p>\n","urlObject":{"path":["EmployeeAppraisalObjectivesReviewSections"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[],"_postman_id":"4d6fad1d-3d40-4650-8be5-fc8aa28bb430"}],"id":"ad8db313-6932-4ec7-8000-bee274e8db61","description":"<p>This API enables information from Employee Appraisal Objectives Review Sections for active and inactive employees to be retrieved.</p>\n<p>The identifying keys for Employee Appraisal Objectives Review Sections are:</p>\n<ul><li><p>EmployeeAppraisalGuid</p></li><li><p>EmployeeAppraisalSectionGuid</p></li><li><p>PersonGuid</p></li></ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>EmployeeAppraisalSectionGuid</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>EmployeeAppraisalGuid</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>PersonGuid</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>PersonID</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PersonName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AppraisalFormGuid</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AppraisalForm</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AppraisalFormSectionGuid</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>SectionType</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>SectionName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>SectionIntroduction</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AllowLinkingToDevelopmentPlan</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked</td>\n</tr>\n<tr>\n<td>SortOrder</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ObjectivePlan</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ObjectiveCategory</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>RatingScale</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>CalculateSectionScore</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked</td>\n</tr>\n<tr>\n<td>DisplayScore</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>UseCalculatedScore</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked</td>\n</tr>\n<tr>\n<td>AllowSectionScoreEditing</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked</td>\n</tr>\n<tr>\n<td>SectionWeight</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>DisplaySectionWeight</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked</td>\n</tr>\n<tr>\n<td>AllowSectionWeightEditing</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked</td>\n</tr>\n<tr>\n<td>ObjectiveScoringMethod</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ConfigureObjectiveWeighting</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked</td>\n</tr>\n<tr>\n<td>DisplayObjectiveWeight</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked</td>\n</tr>\n<tr>\n<td>AllowObjectiveWeightEditing</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked</td>\n</tr>\n<tr>\n<td>AllowObjectiveEditing</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked</td>\n</tr>\n<tr>\n<td>AllowAddEditComments</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked</td>\n</tr>\n<tr>\n<td>Score</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>CalculatedScore</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ScorePercentage</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ScoreIncomplete</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>RatingScaleValue</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>DevelopmentPlanName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"ad8db313-6932-4ec7-8000-bee274e8db61"},{"name":"Employee Appraisal Question and Answer Sections (Read-Only)","item":[{"name":"List of Employee Appraisal Question and Answer Sections","id":"bdeffe04-f524-4038-b94e-00b11f8886b3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/EmployeeAppraisalQuestionAndAnswerSections?$format=json","description":"<p>This request will return a list of Employee Appraisal Question and Answer Sections from the system.</p>\n<p><strong>Notes:</strong></p>\n<ul><li><div>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</div></li><li><div>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</div></li></ul>\n\n<p>Available Parameters:</p>\n<ul><li><div>$filter</div></li><li><div>$top</div></li><li><div>$orderby</div></li><li><div>$select</div></li><li><div>$skip</div></li><li><div>$inlinecount</div></li></ul>\n\n<p>For more information about using the above parameters, see: <a href=\"https://\">OData URI Conventions</a></p>\n","urlObject":{"path":["EmployeeAppraisalQuestionAndAnswerSections"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[],"_postman_id":"bdeffe04-f524-4038-b94e-00b11f8886b3"}],"id":"a4cdc975-a6b8-4302-8026-6e66fc505782","description":"<p>This API enables information from Employee Appraisal Question and Answer Sections for active and inactive employees to be retrieved.</p>\n<p>The identifying keys for Employee Appraisal Question and Answer Sections are:</p>\n<ul><li><div>EmployeeAppraisalGuid</div></li><li><div>EmployeeAppraisalSectionGuid</div></li><li><div>PersonGuid</div></li></ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>EmployeeAppraisalSectionGuid</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>EmployeeAppraisalGuid</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>PersonGuid</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>PersonID</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PersonName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AppraisalFormGuid</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AppraisalFormName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AppraisalFormSectionGuid</td>\n<td>Y</td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>SectionType</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>SectionName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>SectionIntroduction</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AllowLinkingToDevelopmentPlan</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked</td>\n</tr>\n<tr>\n<td>SortOrder</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>AllowQuestionEditing</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked</td>\n</tr>\n<tr>\n<td>AllowAddEditComments</td>\n<td></td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked</td>\n</tr>\n<tr>\n<td>DevelopmentPlanName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"a4cdc975-a6b8-4302-8026-6e66fc505782"},{"name":"Employee Appraisal Competency Ratings Section Items (Read-Only)","item":[{"name":"List of Employee Appraisal Competency Ratings Section Items","id":"fc196067-2f17-456c-b512-12e1f7734823","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/EmployeeAppraisalCompetencyRatingsSectionItems?$format=json","description":"<p>This request will return a list of Employee Appraisal Competency Ratings Section Items from the system.</p>\n<p><strong>Notes:</strong></p>\n<ul><li><div>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</div></li><li><div>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</div></li></ul>\n\n<p>Available Parameters:</p>\n<ul><li><div>$filter</div></li><li><div>$top</div></li><li><div>$orderby</div></li><li><div>$select</div></li><li><div>$skip</div></li><li><div>$inlinecount</div></li></ul>\n\n<p>For more information about using the above parameters, see: <a href=\"https://\">OData URI Conventions</a></p>\n","urlObject":{"path":["EmployeeAppraisalCompetencyRatingsSectionItems"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[],"_postman_id":"fc196067-2f17-456c-b512-12e1f7734823"}],"id":"3680a241-8d2b-43ef-a044-1c592ed14d39","description":"<p>This API enables information from Employee Appraisal Competency Ratings Section Items for active and inactive employees to be retrieved.</p>\n<p>The identifying keys for Employee Appraisal Competency Ratings Section Items are:</p>\n<ul><li><p>EmployeeAppraisalGuid</p></li><li><p>EmployeeAppraisalSectionItemGuid</p></li><li><p>PersonGuid</p></li></ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>EmployeeAppraisalSectionItemGuid</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>EmployeeAppraisalSectionGuid</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EmployeeAppraisalGuid</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>SectionName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PersonGuid</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>PersonID</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PersonName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>CompetencyGuid</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Competency</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>CompetencyType</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>MustBeScored</td>\n<td>Y</td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked</td>\n</tr>\n<tr>\n<td>SortOrder</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>RatingScale</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Score</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ScorePercentage</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>RatingScaleValue</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Comments</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"3680a241-8d2b-43ef-a044-1c592ed14d39"},{"name":"Employee Appraisal Job Competency Profile Ratings Section Items (Read-Only)","item":[{"name":"List of Employee Appraisal Job Competency Profile Ratings Section Items","id":"b9cf0d5f-e92f-4c33-a2a6-f9659557aab9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/EmployeeAppraisalJobCompetencyProfileRatingsSectionItems?$format=json","description":"<p>This request will return a list of Employee Appraisal Job Competency Profile Ratings Section Items from the system.</p>\n<p><strong>Notes:</strong></p>\n<ul><li><div>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</div></li><li><div>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</div></li></ul>\n\n<p>Available Parameters:</p>\n<ul><li><div>$filter</div></li><li><div>$top</div></li><li><div>$orderby</div></li><li><div>$select</div></li><li><div>$skip</div></li><li><div>$inlinecount</div></li></ul>\n\n<p>For more information about using the above parameters, see: <a href=\"https://\">OData URI Conventions</a></p>\n","urlObject":{"path":["EmployeeAppraisalJobCompetencyProfileRatingsSectionItems"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[],"_postman_id":"b9cf0d5f-e92f-4c33-a2a6-f9659557aab9"}],"id":"3eb0df17-d41e-492a-9ebb-19126bceb74d","description":"<p>This API enables information from Employee Appraisal Job Competency Profile Ratings Section Items for active and inactive employees to be retrieved.</p>\n<p>The identifying keys for Employee Appraisal Job Competency Profile Ratings Section Items are:</p>\n<ul><li><p>EmployeeAppraisalGuid</p></li><li><p>EmployeeAppraisalSectionItemGuid</p></li><li><p>PersonGuid</p></li></ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>EmployeeAppraisalSectionItemGuid</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>EmployeeAppraisalSectionGuid</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EmployeeAppraisalGuid</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>SectionName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PersonGuid</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>PersonID</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PersonName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>CompetencyGuid</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Competency</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>CompetencyType</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>SortOrder</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>RatingScale</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Score</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ScorePercentage</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>RatingScaleValue</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>JobProfile</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Job</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Comments</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"3eb0df17-d41e-492a-9ebb-19126bceb74d"},{"name":"Employee Appraisal Objectives Planning Section Items (Read-Only)","item":[{"name":"List of Employee Appraisal Objectives Planning Section Items","id":"42029d2d-661a-444a-9a70-f0a29776b2a6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/EmployeeAppraisalObjectivesPlanningSectionItems?$format=json","description":"<p>This request will return a list of Employee Appraisal Objectives Planning Section Items from the system.</p>\n<p><strong>Notes:</strong></p>\n<ul><li><div>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</div></li><li><div>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</div></li></ul>\n\n<p>Available Parameters:</p>\n<ul><li><div>$filter</div></li><li><div>$top</div></li><li><div>$orderby</div></li><li><div>$select</div></li><li><div>$skip</div></li><li><div>$inlinecount</div></li></ul>\n\n<p>For more information about using the above parameters, see: <a href=\"https://\">OData URI Conventions</a></p>\n","urlObject":{"path":["EmployeeAppraisalObjectivesPlanningSectionItems"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[],"_postman_id":"42029d2d-661a-444a-9a70-f0a29776b2a6"}],"id":"583ec24c-4f58-4c44-9018-46306a1ac02f","description":"<p>This API enables information from Employee Appraisal Objectives Planning Section Items for active and inactive employees to be retrieved.</p>\n<p>The identifying keys for Employee Appraisal Objectives Planning Section Items are:</p>\n<ul><li><p>EmployeeAppraisalGuid</p></li><li><p>EmployeeAppraisalSectionItemGuid</p></li><li><p>PersonGuid</p></li></ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>EmployeeAppraisalSectionItemGuid</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>EmployeeAppraisalSectionGuid</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EmployeeAppraisalGuid</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>SectionName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PersonGuid</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>PersonID</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PersonName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ObjectiveGuid</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Objective</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Category</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Target</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TargetDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>MustBeScored</td>\n<td>Y</td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked</td>\n</tr>\n<tr>\n<td>SortOrder</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ObjectivePlan</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Comments</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"583ec24c-4f58-4c44-9018-46306a1ac02f"},{"name":"Employee Appraisal Objectives Review Section Items (Read-Only)","item":[{"name":"List of Employee Appraisal Objectives Review Section Items","id":"80594289-b2ae-4ed5-bc9a-5a6150c06007","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/EmployeeAppraisalObjectivesReviewSectionItems?$format=json","description":"<p>This request will return a list of Employee Appraisal Objectives Review Section Items from the system.</p>\n<p><strong>Notes:</strong></p>\n<ul><li><div>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</div></li><li><div>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</div></li></ul>\n\n<p>Available Parameters:</p>\n<ul><li><div>$filter</div></li><li><div>$top</div></li><li><div>$orderby</div></li><li><div>$select</div></li><li><div>$skip</div></li><li><div>$inlinecount</div></li></ul>\n\n<p>For more information about using the above parameters, see: <a href=\"https://\">OData URI Conventions</a></p>\n","urlObject":{"path":["EmployeeAppraisalObjectivesReviewSectionItems"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[],"_postman_id":"80594289-b2ae-4ed5-bc9a-5a6150c06007"}],"id":"c537f9b8-c94b-4e53-afa5-5eabc325d5cf","description":"<p>This API enables information from Employee Appraisal Objectives Review Section Items for active and inactive employees to be retrieved.</p>\n<p>The identifying keys for Employee Appraisal Objectives Review Section Items are:</p>\n<ul><li><p>EmployeeAppraisalGuid</p></li><li><p>EmployeeAppraisalSectionItemGuid</p></li><li><p>PersonGuid</p></li></ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>EmployeeAppraisalSectionItemGuid</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>EmployeeAppraisalSectionGuid</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EmployeeAppraisalGuid</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>SectionName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PersonGuid</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>PersonID</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PersonName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ObjectiveGuid</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Objective</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Category</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Target</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TargetDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>MustBeScored</td>\n<td>Y</td>\n<td>Read-only. 1 = Ticked, 0 = Not Ticked</td>\n</tr>\n<tr>\n<td>SortOrder</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Weight</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>RatingScale</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Score</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ScorePercentage</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>RatingScaleValue</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Result</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ObjectivePlan</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Comments</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"c537f9b8-c94b-4e53-afa5-5eabc325d5cf"},{"name":"Employee Appraisal Question and Answer Section Items (Read-Only)","item":[{"name":"List of Employee Appraisal Question And Answer Section Items","id":"d6c7e442-257e-4c25-93f8-fe2273f1554e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/EmployeeAppraisalQuestionAndAnswerSectionItems?$format=json","description":"<p>This request will return a list of Employee Appraisal Question And Answer Section Items from the system.</p>\n<p><strong>Notes:</strong></p>\n<ul><li><div>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</div></li><li><div>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</div></li></ul>\n\n<p>Available Parameters:</p>\n<ul><li><div>$filter</div></li><li><div>$top</div></li><li><div>$orderby</div></li><li><div>$select</div></li><li><div>$skip</div></li><li><div>$inlinecount</div></li></ul>\n\n<p>For more information about using the above parameters, see: <a href=\"https://\">OData URI Conventions</a></p>\n","urlObject":{"path":["EmployeeAppraisalQuestionAndAnswerSectionItems"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[],"_postman_id":"d6c7e442-257e-4c25-93f8-fe2273f1554e"}],"id":"563bd9a8-5795-445a-801a-3dddf222f173","description":"<p>This API enables information from Employee Appraisal Question and Answer Section Items for active and inactive employees to be retrieved.</p>\n<p>The identifying keys for Employee Appraisal Question and Answer Section Items are:</p>\n<ul><li><div>EmployeeAppraisalGuid</div></li><li><div>EmployeeAppraisalSectionItemGuid</div></li><li><div>PersonGuid</div></li></ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>EmployeeAppraisalSectionItemGuid</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>EmployeeAppraisalSectionGuid</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EmployeeAppraisalGuid</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>SectionName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PersonGuid</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>PersonID</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PersonName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>QuestionText</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>QuestionType</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>RatingScale</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>SortOrder</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Score</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ScorePercentage</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>RatingScaleValue</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>TextAnswer</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>Comments</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"563bd9a8-5795-445a-801a-3dddf222f173"}],"id":"6ac3fe3b-2984-4156-ac43-5e05f005b197","_postman_id":"6ac3fe3b-2984-4156-ac43-5e05f005b197","description":""},{"name":"Document Details","item":[{"name":"Documents (Read-Only)","item":[{"name":"List of Employee Document Details","id":"43eef2e4-1164-43d2-bcf1-66053cbbc6cc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/CezDocuments?$format=json","description":"<p>This request will return a list of Employee Appraisals from the system.</p>\n<p><strong>Notes:</strong></p>\n<ul><li><div>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</div></li><li><div>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</div></li></ul>\n\n<p>Available Parameters:</p>\n<ul><li><div>$filter</div></li><li><div>$top</div></li><li><div>$orderby</div></li><li><div>$select</div></li><li><div>$skip</div></li><li><div>$inlinecount</div></li></ul>\n\n<p>For more information about using the above parameters, see: <a href=\"https://\">OData URI Conventions</a></p>\n","urlObject":{"path":["CezDocuments"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[],"_postman_id":"43eef2e4-1164-43d2-bcf1-66053cbbc6cc"}],"id":"da31e62d-f9dd-41ea-838a-a6dcf68e704f","description":"<p>This API enables information from Document Details for all documents in the system to be retrieved.</p>\n<p>The identifying key for Document Details is:</p>\n<ul><li><div>DocumentID</div></li></ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>DocumentID</td>\n<td>Y</td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>DocumentName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>EntityGuid</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PersonName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>IsSigned</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>SignDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>SignUsername</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ESign</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>IsCoSigned</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>CoSignDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>CoSignUsername</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"da31e62d-f9dd-41ea-838a-a6dcf68e704f"}],"id":"4d6ef078-273e-46e6-b95e-f9daa07d86ee","_postman_id":"4d6ef078-273e-46e6-b95e-f9daa07d86ee","description":""}],"id":"e5f65f94-bf77-b469-1361-189588c623d3","_postman_id":"e5f65f94-bf77-b469-1361-189588c623d3","description":""},{"name":"Search Based APIs","item":[{"name":"People","item":[{"name":"Active Employees","item":[{"name":"List of Active Employees","id":"8fa6db00-c486-5055-dc71-4658cf9ee7d2","request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/ActiveEmployeesSearch?$format=json","description":"<p>This request will return a list of Active Employees from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n<li>This API is limited to 2000 rows per call.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["ActiveEmployeesSearch"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"ab785888-6dbc-155e-874b-af65581072d4","name":"List of Active Employees","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/ActiveEmployeesSearch?$format=json","host":["{{url}}"],"path":["ActiveEmployeesSearch"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"3396","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","name":"Content-Type","description":""},{"key":"DataServiceVersion","value":"3.0;","name":"DataServiceVersion","description":""},{"key":"Date","value":"Thu, 18 Jan 2018 09:13:07 GMT","name":"Date","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"10FF1C8527C119F7CB4E7C4120B8992C37BA1C8AE5234A9C7292845F5BF38D235F1BB6B2EF2F3728FEB7A384928DF969505638D3077B989C224A35AD3FE86D663EBCCEECF12BB193FF45C084F261369A94F105CDE91537455E5B49C713A694D62D34D7A7888AD9B597BDD3246C7569B4C58B10C159A04F82DF9242075831F7E38CE8DEDD0EEAACDD6CF905FEA56D401CC4DB3789AF82193C78C9A4D6A124EB0BDE5B27B6C1663E44BDFDC68E369CC4FD3AE57BC82F41E15393895D53FCBF45BEF8EE38E5FAC9F414B14AF836AC55E69E37B3A04760F8929B12DD607AB5345FE24508BB570572B35BF0EE26ECE04E899FDAEA1A227AC0432679902DA7737F2B5B8C91E71F7F5A858689E6919028A38ADB","key":"CF_SID"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"-1","key":"CF_SLV"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"/1cGaxGPTBHcD8RBFPNm12FtDYLb3lMpw7XIBqrYFhv/PCOTAE7wxR40Odzc4CqCBqtAOZUr4ANdr0FCU5+yshc/OebxJq3yb+4ZnDyqpu6AwS+bVPF+pa/xxdPnk2Wb9Paf0Dv+yZV/0G7/d6kslgWPqvC6vBmhi0lGAwQ6OUY=","key":"__RequestVerificationToken_L0NlemFubmVPbkRlbWFuZA__"}],"responseTime":"2055","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#ActiveEmployeesSearch\",\n    \"value\": [\n        {\n            \"CFROWKEY\": \"0590\",\n            \"PersonGUID\": \"7ab6ef7a-43cd-472f-852a-bbee3992ad19\",\n            \"EmploymentGUID_Search\": \"19adfe34-bcd4-4eed-80ce-337b5be99803\",\n            \"Salutation_Search\": null,\n            \"FirstName_Search\": \"Lawrence\",\n            \"MiddleName_Search\": null,\n            \"FamilyName_Search\": \"Edwards\",\n            \"FamilyNamePrefix_Search\": null,\n            \"KnownAs_Search\": \"Larry\",\n            \"LegalName_Search\": \"Lawrence Edwards\",\n            \"EmployeeName_Search\": \"Edwards, Lawrence\",\n            \"FullName_Search\": \"Lawrence Edwards\",\n            \"CountryOfBirth_Search\": null,\n            \"DateOfBirth_Search\": \"1973-08-08T00:00:00\",\n            \"Age_Search\": 44,\n            \"PrimaryLanguage_Search\": null,\n            \"Nationality_Search\": \"French\",\n            \"Gender_Search\": \"Male\",\n            \"GenderCode_Search\": \"M\",\n            \"CountryOfResidence_Search\": null,\n            \"ActiveEmployee_Search\": 1,\n            \"PrimaryEmployment_Search\": 1,\n            \"ContractTerm_Search\": \"Contractor\",\n            \"ContractName_Search\": \"Management\",\n            \"FTERatio_Search\": \"0.225\",\n            \"WorkNumber_Search\": \"020 78762654\",\n            \"MobileNumber_Search\": null,\n            \"HomeNumber_Search\": null,\n            \"OtherNumber_Search\": null,\n            \"PersonalMobileNumber_Search\": null,\n            \"InternalEmail_Search\": \"LawrenceEdwards@omnicrom.com\",\n            \"ExternalEmail_Search\": null,\n            \"PersonGrade_Search\": \"28\",\n            \"JobGrade_Search\": null,\n            \"ManagerOfOrgUnitPersonGUID_Search\": \"7ab6ef7a-43cd-472f-852a-bbee3992ad19\",\n            \"OrgUnitManager_Search\": \"Lawrence Edwards\",\n            \"ManagerOfOrgUnitPersonCode_Search\": \"0590\",\n            \"SupervisorPersonGUID_Search\": \"88399a6b-4fe2-4c9b-962c-a520561a9f3d\",\n            \"Supervisor_Search\": \"Steven Thomas\",\n            \"SupervisorPersonCode_Search\": \"3404\",\n            \"PersonCode_Search\": \"0590\",\n            \"EmploymentID_Search\": \"590\",\n            \"OrgUnitGUID_Search\": \"09f4bccf-bad3-4944-95b6-fba98f435d27\",\n            \"OrgUnitName_Search\": \"Personnel - USA\",\n            \"OrgUnitCode_Search\": \"cccc\",\n            \"PositionTitle_Search\": \"HR Director\",\n            \"CompanyName_Search\": \"Omnicrom Manufacturing Ltd\",\n            \"LocationName_Search\": \"Bristol\",\n            \"CostCentreName_Search\": null,\n            \"JobName_Search\": null,\n            \"JobDeploymentEffectiveFrom_Search\": null,\n            \"JobDeploymentEffectiveTo_Search\": null,\n            \"PrimaryJob_Search\": null,\n            \"JobCode_Search\": null,\n            \"JobDeploymentReason_Search\": null,\n            \"PrimaryPersonGrade_Search\": 1,\n            \"PersonGradeEffectiveFrom_Search\": \"2008-03-30T00:00:00\",\n            \"PersonGradeEffectiveTo_Search\": \"2999-12-31T00:00:00\",\n            \"PersonGradeCode_Search\": \"28\",\n            \"PersonGradeGroup_Search\": null,\n            \"PersonGradeDeploymentReason_Search\": null,\n            \"HireDate_Search\": \"2008-03-30T00:00:00\",\n            \"AdjustedHireDate_Search\": null,\n            \"EmploymentReason_Search\": null,\n            \"LengthOfService_Search\": \"9.75\",\n            \"LengthOfServiceYears_Search\": 9,\n            \"LengthOfServiceMonths_Search\": 9,\n            \"OriginalHireDate_Search\": null,\n            \"ContinuousService_Search\": null,\n            \"HiringComments_Search\": \"\",\n            \"ProbationPeriodTo_Search\": null,\n            \"ProbationPeriodExtendedTo_Search\": null,\n            \"ProbationStatus_Search\": null,\n            \"NoticePeriod_Search\": null,\n            \"TerminationDate_Search\": \"2999-12-31T00:00:00\",\n            \"TerminationReason_Search\": null,\n            \"NoticeGivenDate_Search\": null,\n            \"IntendedRetirementDate_Search\": null,\n            \"LastWorkedDate_Search\": null,\n            \"LastPaidDate_Search\": null,\n            \"TerminationComments_Search\": null,\n            \"PrimaryDeployment_Search\": 1,\n            \"DeploymentEffectiveFrom_Search\": \"2008-03-30T00:00:00\",\n            \"DeploymentEffectiveTo_Search\": \"2999-12-31T00:00:00\",\n            \"IsManagerOfUnit_Search\": 1,\n            \"IsSupervisor_Search\": 1,\n            \"DeploymentReason_Search\": null,\n            \"PrimaryLocation_Search\": 1,\n            \"LocationEffectiveFrom_Search\": \"2008-03-30T00:00:00\",\n            \"LocationEffectiveTo_Search\": \"2999-12-31T00:00:00\",\n            \"LocationDeploymentReason_Search\": null,\n            \"PrimaryCostCentre_Search\": null,\n            \"CostCentreEffectiveFrom_Search\": null,\n            \"CostCentreEffectiveTo_Search\": null,\n            \"CostCentreCode_Search\": null,\n            \"CostCentreDeploymentReason_Search\": null,\n            \"EmpWorkTimePatternEffectiveFrom_Search\": \"2017-01-01T00:00:00\",\n            \"EmpWorkTimePatternEffectiveTo_Search\": \"2999-12-31T00:00:00\",\n            \"EmpWorkTimePatternName_Search\": \"New\",\n            \"OrgUnitArea_Search\": \"Human Resources\",\n            \"OrgUnitType_Search\": null,\n            \"PersonPronouns_Search\": \"he/him\",\n            \"BusinessTitle_Search\": null,\n            \"BirthYear_Search\": 1973,\n            \"BirthMonth_Search\": \"August\",\n            \"AdjustedHireDateYear_Search\": null,\n            \"HireDateYear_Search\": 2008,\n            \"OriginalHireDateYear_Search\": null,\n            \"AdjustedHireDateMonth_Search\": null,\n            \"HireDateMonth_Search\": \"March\",\n            \"OriginalHireDateMonth_Search\": null\n        }\n    ]\n}"}],"_postman_id":"8fa6db00-c486-5055-dc71-4658cf9ee7d2"}],"id":"de8e0826-f688-c84e-b045-2af62d75c8e2","description":"<p>This API enables all information from the Active Employees search to be retrieved.</p>\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CFROWKEY</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonGUID</td>\n<td></td>\n</tr>\n<tr>\n<td>EmploymentGUID_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>Salutation_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>FirstName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>MiddleName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>FamilyName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>FamilyNamePrefix_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>KnownAs_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>LegalName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>EmployeeName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>FullName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>CountryOfBirth_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>DateOfBirth_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>Age_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PrimaryLanguage_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>Nationality_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>Gender_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>GenderCode_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>CountryOfResidence_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>ActiveEmployee_Search</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>PrimaryEmployment_Search</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>ContractTerm_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>ContractName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>FTERatio_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>WorkNumber_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>MobileNumber_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>HomeNumber_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OtherNumber_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonalMobileNumber_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>InternalEmail_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>ExternalEmail_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonGrade_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>JobGrade_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>ManagerOfOrgUnitPersonGUID_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OrgUnitManager_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>ManagerOfOrgUnitPersonCode_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>SupervisorPersonGUID_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>Supervisor_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>SupervisorPersonCode_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonCode_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>EmploymentID_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OrgUnitGUID_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OrgUnitName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OrgUnitCode_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PositionTitle_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>CompanyName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>LocationName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>CostCentreName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>JobName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>JobDeploymentEffectiveFrom_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>JobDeploymentEffectiveTo_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PrimaryJob_Search</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>JobCode_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>JobDeploymentReason_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PrimaryPersonGrade_Search</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>PersonGradeEffectiveFrom_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonGradeEffectiveTo_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonGradeCode_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonGradeGroup_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonGradeDeploymentReason_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>HireDate_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>AdjustedHireDate_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>EmploymentReason_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>LengthOfService_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>LengthOfServiceYears_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>LengthOfServiceMonths_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OriginalHireDate_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>ContinuousService_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>HiringComments_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>ProbationPeriodTo_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>ProbationPeriodExtendedTo_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>ProbationStatus_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>NoticePeriod_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>TerminationDate_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>TerminationReason_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>NoticeGivenDate_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>IntendedRetirementDate_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>LastWorkedDate_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>LastPaidDate_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>TerminationComments_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PrimaryDeployment_Search</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>DeploymentEffectiveFrom_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>DeploymentEffectiveTo_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>IsManagerOfUnit_Search</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>IsSupervisor_Search</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>DeploymentReason_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PrimaryLocation_Search</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>LocationEffectiveFrom_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>LocationEffectiveTo_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>LocationDeploymentReason_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PrimaryCostCentre_Search</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>CostCentreEffectiveFrom_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>CostCentreEffectiveTo_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>CostCentreCode_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>CostCentreDeploymentReason_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>EmpWorkTimePatternEffectiveFrom_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>EmpWorkTimePatternEffectiveTo_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>EmpWorkTimePatternName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OrgUnitArea_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OrgUnitType_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonPronouns_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>BusinessTitle_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>BirthYear_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>BirthMonth_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>AdjustedHireDateYear_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>HireDateYear_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OriginalHireDateYear_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>AdjustedHireDateMonth_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>HireDateMonth_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OriginalHireDateMonth_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>EthnicOrigin_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>Race_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>ImportKey_Search</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has read-only access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to their and all subordinate records.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to their own record.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"ab2fa750-44bb-430f-b39d-d845c71f8d26","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"6a0bd8a3-1008-4c89-8762-d781e0e9a2bb","type":"text/javascript","exec":[""]}}],"_postman_id":"de8e0826-f688-c84e-b045-2af62d75c8e2"},{"name":"All People","item":[{"name":"List of All People in the system","id":"9285156d-b9a3-260f-80a5-ef2c3af8770a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/AllPeopleSearch?$format=json","description":"<p>This request will return a list of All People from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n<li>This API is limited to 2000 rows per call.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["AllPeopleSearch"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"72f54c6d-5647-81c7-a5f6-d1f9ab025dc7","name":"List of All People in the system","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"","value":"","warning":"","disabled":true}],"url":{"raw":"{{url}}/AllPeopleSearch?$format=json","host":["{{url}}"],"path":["AllPeopleSearch"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"3366","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","name":"Content-Type","description":""},{"key":"DataServiceVersion","value":"3.0;","name":"DataServiceVersion","description":""},{"key":"Date","value":"Thu, 18 Jan 2018 09:15:44 GMT","name":"Date","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"10FF1C8527C119F7CB4E7C4120B8992C37BA1C8AE5234A9C7292845F5BF38D235F1BB6B2EF2F3728FEB7A384928DF969505638D3077B989C224A35AD3FE86D663EBCCEECF12BB193FF45C084F261369A94F105CDE91537455E5B49C713A694D62D34D7A7888AD9B597BDD3246C7569B4C58B10C159A04F82DF9242075831F7E38CE8DEDD0EEAACDD6CF905FEA56D401CC4DB3789AF82193C78C9A4D6A124EB0BDE5B27B6C1663E44BDFDC68E369CC4FD3AE57BC82F41E15393895D53FCBF45BEF8EE38E5FAC9F414B14AF836AC55E69E37B3A04760F8929B12DD607AB5345FE24508BB570572B35BF0EE26ECE04E899FDAEA1A227AC0432679902DA7737F2B5B8C91E71F7F5A858689E6919028A38ADB","key":"CF_SID"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"-1","key":"CF_SLV"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"/1cGaxGPTBHcD8RBFPNm12FtDYLb3lMpw7XIBqrYFhv/PCOTAE7wxR40Odzc4CqCBqtAOZUr4ANdr0FCU5+yshc/OebxJq3yb+4ZnDyqpu6AwS+bVPF+pa/xxdPnk2Wb9Paf0Dv+yZV/0G7/d6kslgWPqvC6vBmhi0lGAwQ6OUY=","key":"__RequestVerificationToken_L0NlemFubmVPbkRlbWFuZA__"}],"responseTime":"1199","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#AllPeopleSearch\",\n    \"value\": [\n        {\n            \"CFROWKEY\": \"0590\",\n            \"PersonGUID\": \"7ab6ef7a-43cd-472f-852a-bbee3992ad19\",\n            \"EmploymentGUID_Search\": \"7a0ed967-5261-4de3-843d-d21d2dc3cca1\",\n            \"Salutation_Search\": null,\n            \"FirstName_Search\": \"Lawrence\",\n            \"MiddleName_Search\": null,\n            \"FamilyName_Search\": \"Edwards\",\n            \"FamilyNamePrefix_Search\": null,\n            \"KnownAs_Search\": \"Larry\",\n            \"LegalName_Search\": \"Lawrence Edwards\",\n            \"EmployeeName_Search\": \"Edwards, Lawrence\",\n            \"FullName_Search\": \"Lawrence Edwards\",\n            \"CountryOfBirth_Search\": null,\n            \"DateOfBirth_Search\": \"1973-08-08T00:00:00\",\n            \"Age_Search\": 44,\n            \"PrimaryLanguage_Search\": null,\n            \"Nationality_Search\": \"French\",\n            \"Gender_Search\": \"Male\",\n            \"GenderCode_Search\": \"M\",\n            \"CountryOfResidence_Search\": null,\n            \"ActiveEmployee_Search\": 1,\n            \"PrimaryEmployment_Search\": 1,\n            \"ContractTerm_Search\": \"Contractor\",\n            \"ContractName_Search\": \"Management\",\n            \"FTERatio_Search\": \"0.225\",\n            \"WorkNumber_Search\": \"020 78762654\",\n            \"MobileNumber_Search\": null,\n            \"HomeNumber_Search\": null,\n            \"OtherNumber_Search\": null,\n            \"PersonalMobileNumber_Search\": null,\n            \"InternalEmail_Search\": \"LawrenceEdwards@omnicrom.com\",\n            \"ExternalEmail_Search\": null,\n            \"PersonGrade_Search\": \"28\",\n            \"JobGrade_Search\": null,\n            \"ManagerOfOrgUnitPersonGUID_Search\": \"7ab6ef7a-43cd-472f-852a-bbee3992ad19\",\n            \"OrgUnitManager_Search\": \"Lawrence Edwards\",\n            \"ManagerOfOrgUnitPersonCode_Search\": \"0590\",\n            \"SupervisorPersonGUID_Search\": \"e147f8e2-b8e3-479b-ac81-f7e52e13615c\",\n            \"Supervisor_Search\": \"Steven Thomas\",\n            \"SupervisorPersonCode_Search\": \"3404\",\n            \"PersonCode_Search\": \"0590\",\n            \"EmploymentID_Search\": \"590\",\n            \"OrgUnitGUID_Search\": \"897ca550-4d73-4814-b992-a3ae542572b7\",\n            \"OrgUnitName_Search\": \"Personnel - USA\",\n            \"OrgUnitCode_Search\": \"cccc\",\n            \"PositionTitle_Search\": \"HR Director\",\n            \"CompanyName_Search\": \"Omnicrom Manufacturing Ltd\",\n            \"LocationName_Search\": \"Bristol\",\n            \"CostCentreName_Search\": null,\n            \"JobName_Search\": null,\n            \"JobDeploymentEffectiveFrom_Search\": null,\n            \"JobDeploymentEffectiveTo_Search\": null,\n            \"PrimaryJob_Search\": null,\n            \"JobCode_Search\": null,\n            \"JobDeploymentReason_Search\": null,\n            \"PrimaryPersonGrade_Search\": 1,\n            \"PersonGradeEffectiveFrom_Search\": \"2008-03-30T00:00:00\",\n            \"PersonGradeEffectiveTo_Search\": \"2999-12-31T00:00:00\",\n            \"PersonGradeCode_Search\": \"28\",\n            \"PersonGradeGroup_Search\": null,\n            \"PersonGradeDeploymentReason_Search\": null,\n            \"HireDate_Search\": \"2008-03-30T00:00:00\",\n            \"AdjustedHireDate_Search\": null,\n            \"EmploymentReason_Search\": null,\n            \"LengthOfService_Search\": \"9.75\",\n            \"LengthOfServiceYears_Search\": 9,\n            \"LengthOfServiceMonths_Search\": 9,\n            \"OriginalHireDate_Search\": null,\n            \"ContinuousService_Search\": null,\n            \"HiringComments_Search\": \"\",\n            \"ProbationPeriodTo_Search\": null,\n            \"ProbationPeriodExtendedTo_Search\": null,\n            \"ProbationStatus_Search\": null,\n            \"NoticePeriod_Search\": null,\n            \"TerminationDate_Search\": \"2999-12-31T00:00:00\",\n            \"TerminationReason_Search\": null,\n            \"NoticeGivenDate_Search\": null,\n            \"IntendedRetirementDate_Search\": null,\n            \"LastWorkedDate_Search\": null,\n            \"LastPaidDate_Search\": null,\n            \"TerminationComments_Search\": null,\n            \"PrimaryDeployment_Search\": 1,\n            \"DeploymentEffectiveFrom_Search\": \"2008-03-30T00:00:00\",\n            \"DeploymentEffectiveTo_Search\": \"2999-12-31T00:00:00\",\n            \"IsManagerOfUnit_Search\": 1,\n            \"DeploymentReason_Search\": null,\n            \"PrimaryLocation_Search\": 1,\n            \"LocationEffectiveFrom_Search\": \"2008-03-30T00:00:00\",\n            \"LocationEffectiveTo_Search\": \"2999-12-31T00:00:00\",\n            \"LocationDeploymentReason_Search\": null,\n            \"PrimaryCostCentre_Search\": null,\n            \"CostCentreEffectiveFrom_Search\": null,\n            \"CostCentreEffectiveTo_Search\": null,\n            \"CostCentreCode_Search\": null,\n            \"CostCentreDeploymentReason_Search\": null,\n            \"EmpWorkTimePatternEffectiveFrom_Search\": \"2017-01-01T00:00:00\",\n            \"EmpWorkTimePatternEffectiveTo_Search\": \"2999-12-31T00:00:00\",\n            \"EmpWorkTimePatternName_Search\": \"New\",\n            \"OrgUnitArea_Search\": \"Human Resources\",\n            \"OrgUnitType_Search\": null,\n            \"PersonPronouns_Search\": \"he/him\",\n            \"BusinessTitle_Search\": null,\n            \"BirthYear_Search\": 1973,\n            \"BirthMonth_Search\": \"August\",\n            \"AdjustedHireDateYear_Search\": null,\n            \"HireDateYear_Search\": 2008,\n            \"OriginalHireDateYear_Search\": null,\n            \"AdjustedHireDateMonth_Search\": null,\n            \"HireDateMonth_Search\": \"March\",\n            \"OriginalHireDateMonth_Search\": null\n        }\n    ]\n}"}],"_postman_id":"9285156d-b9a3-260f-80a5-ef2c3af8770a"}],"id":"5013bc70-4745-20a8-198d-1351c4084df7","description":"<p>This API enables all information from the All People search to be retrieved.</p>\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CFROWKEY</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonGUID</td>\n<td></td>\n</tr>\n<tr>\n<td>EmploymentGUID_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>Salutation_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>FirstName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>MiddleName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>FamilyName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>FamilyNamePrefix_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>KnownAs_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>LegalName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>EmployeeName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>FullName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>CountryOfBirth_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>DateOfBirth_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>Age_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PrimaryLanguage_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>Nationality_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>Gender_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>GenderCode_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>CountryOfResidence_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>ActiveEmployee_Search</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>PrimaryEmployment_Search</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>ContractTerm_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>ContractName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>FTERatio_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>WorkNumber_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>MobileNumber_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>HomeNumber_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OtherNumber_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonalMobileNumber_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>InternalEmail_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>ExternalEmail_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonGrade_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>JobGrade_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>ManagerOfOrgUnitPersonGUID_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OrgUnitManager_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>ManagerOfOrgUnitPersonCode_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>SupervisorPersonGUID_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>Supervisor_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>SupervisorPersonCode_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonCode_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>EmploymentID_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OrgUnitGUID_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OrgUnitName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OrgUnitCode_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PositionTitle_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>CompanyName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>LocationName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>CostCentreName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>JobName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>JobDeploymentEffectiveFrom_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>JobDeploymentEffectiveTo_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PrimaryJob_Search</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>JobCode_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>JobDeploymentReason_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PrimaryPersonGrade_Search</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>PersonGradeEffectiveFrom_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonGradeEffectiveTo_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonGradeCode_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonGradeGroup_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonGradeDeploymentReason_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>HireDate_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>AdjustedHireDate_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>EmploymentReason_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>LengthOfService_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>LengthOfServiceYears_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>LengthOfServiceMonths_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OriginalHireDate_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>ContinuousService_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>HiringComments_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>ProbationPeriodTo_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>ProbationPeriodExtendedTo_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>ProbationStatus_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>NoticePeriod_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>TerminationDate_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>TerminationReason_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>NoticeGivenDate_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>IntendedRetirementDate_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>LastWorkedDate_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>LastPaidDate_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>TerminationComments_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PrimaryDeployment_Search</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>DeploymentEffectiveFrom_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>DeploymentEffectiveTo_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>IsManagerOfUnit_Search</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>DeploymentReason_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PrimaryLocation_Search</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>LocationEffectiveFrom_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>LocationEffectiveTo_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>LocationDeploymentReason_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PrimaryCostCentre_Search</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>CostCentreEffectiveFrom_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>CostCentreEffectiveTo_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>CostCentreCode_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>CostCentreDeploymentReason_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>EmpWorkTimePatternEffectiveFrom_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>EmpWorkTimePatternEffectiveTo_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>EmpWorkTimePatternName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OrgUnitArea_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OrgUnitType_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonPronouns_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>BusinessTitle_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>BirthYear_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>BirthMonth_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>AdjustedHireDateYear_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>HireDateYear_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OriginalHireDateYear_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>AdjustedHireDateMonth_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>HireDateMonth_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OriginalHireDateMonth_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>EthnicOrigin_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>Race_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>ImportKey_Search</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has read-only access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to their and all subordinate records.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to their own record.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"19d6872f-fec7-4348-9501-ab314bd37db5","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"41eb2df0-09ba-4c08-b1fe-6151e1a06b25","type":"text/javascript","exec":[""]}}],"_postman_id":"5013bc70-4745-20a8-198d-1351c4084df7"},{"name":"Visa Details","item":[{"name":"List of Employee Visa Details","id":"b4a2ae2d-68bb-784b-e7bc-f4c8c8d9c2af","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/VisaDetailsSearch?$format=json","description":"<p>This request will return a list of Employee Visa Details from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n<li>This API is limited to 2000 rows per call.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["VisaDetailsSearch"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"c62ffb76-6b3b-445d-ecfb-bcb8fcd7876f","name":"List of Employee Visa Details","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/VisaDetailsSearch?$format=json","host":["{{url}}"],"path":["VisaDetailsSearch"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"1347","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","name":"Content-Type","description":""},{"key":"DataServiceVersion","value":"3.0;","name":"DataServiceVersion","description":""},{"key":"Date","value":"Thu, 18 Jan 2018 09:17:18 GMT","name":"Date","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"10FF1C8527C119F7CB4E7C4120B8992C37BA1C8AE5234A9C7292845F5BF38D235F1BB6B2EF2F3728FEB7A384928DF969505638D3077B989C224A35AD3FE86D663EBCCEECF12BB193FF45C084F261369A94F105CDE91537455E5B49C713A694D62D34D7A7888AD9B597BDD3246C7569B4C58B10C159A04F82DF9242075831F7E38CE8DEDD0EEAACDD6CF905FEA56D401CC4DB3789AF82193C78C9A4D6A124EB0BDE5B27B6C1663E44BDFDC68E369CC4FD3AE57BC82F41E15393895D53FCBF45BEF8EE38E5FAC9F414B14AF836AC55E69E37B3A04760F8929B12DD607AB5345FE24508BB570572B35BF0EE26ECE04E899FDAEA1A227AC0432679902DA7737F2B5B8C91E71F7F5A858689E6919028A38ADB","key":"CF_SID"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"-1","key":"CF_SLV"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"/1cGaxGPTBHcD8RBFPNm12FtDYLb3lMpw7XIBqrYFhv/PCOTAE7wxR40Odzc4CqCBqtAOZUr4ANdr0FCU5+yshc/OebxJq3yb+4ZnDyqpu6AwS+bVPF+pa/xxdPnk2Wb9Paf0Dv+yZV/0G7/d6kslgWPqvC6vBmhi0lGAwQ6OUY=","key":"__RequestVerificationToken_L0NlemFubmVPbkRlbWFuZA__"}],"responseTime":"1005","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#VisaDetailsSearch\",\n    \"value\": [\n        {\n            \"CFROWKEY\": \"285942C1-C5FC-4125-A466-B8471CBEC638_100_2017-01-01T00:00:00_Tier 2 (General)\",\n            \"PersonGUID_Search\": \"dab9a231-5d9d-4fec-b143-eb9c92851930\",\n            \"EmploymentGUID_Search\": \"1b3453cd-3961-49bd-b738-82de1178709e\",\n            \"Salutation_Search\": null,\n            \"FirstName_Search\": \"Harold\",\n            \"MiddleName_Search\": null,\n            \"FamilyName_Search\": \"Benson\",\n            \"FamilyNamePrefix_Search\": null,\n            \"KnownAs_Search\": \"Howard\",\n            \"LegalName_Search\": \"Harold Benson\",\n            \"EmployeeName_Search\": \"Benson, Harold\",\n            \"FullName_Search\": \"Harold Benson\",\n            \"ActiveEmployee_Search\": 1,\n            \"WorkNumber_Search\": \"020 7112589\",\n            \"MobileNumber_Search\": null,\n            \"InternalEmail_Search\": \"HowardBenson@omnicrom.com\",\n            \"PersonCode_Search\": \"100\",\n            \"EmploymentID_Search\": \"4728\",\n            \"OrgUnitGUID_Search\": \"21a7d95f-1ab0-4b5c-9256-af946cfe007d\",\n            \"OrgUnitName_Search\": \"Marketing - Widgets\",\n            \"PositionTitle_Search\": \"Account Executive\",\n            \"CompanyName_Search\": \"Omnicrom Manufacturing Ltd\",\n            \"LocationName_Search\": \"Bristol\",\n            \"CostCentreName_Search\": null,\n            \"JobName_Search\": null,\n            \"JobCode_Search\": null,\n            \"IsManagerOfUnit_Search\": 0,\n            \"CostCentreCode_Search\": null,\n            \"PersonCode\": \"100\",\n            \"FullName\": \"Harold Benson\",\n            \"EffectiveFrom\": \"2017-01-01T00:00:00\",\n            \"EffectiveTo\": \"2999-12-31T00:00:00\",\n            \"Type\": \"Tier 2 (General)\",\n            \"Number\": null,\n            \"Country\": null,\n            \"Comments\": null,\n            \"VerifiedByFormattedName\": null,\n            \"VerifiedByPersonID\": null,\n            \"VerifiedDate\": null,\n            \"CompanySponsored\": 0,\n            \"Cost\": null,\n            \"BaseCost\": null,\n            \"CurrencyCode\": null,\n            \"BaseCurrencyCode\": \"USD\"\n        }\n    ]\n}"}],"_postman_id":"b4a2ae2d-68bb-784b-e7bc-f4c8c8d9c2af"}],"id":"47685c4f-2cee-8bc0-2a5e-a1cfaa50fa43","description":"<p>This API enables all information from the Visa Details search to be retrieved.</p>\n<p>Available Parameters:</p>\n<ul><li><div>$filter</div></li><li><div>$top</div></li><li><div>$orderby</div></li><li><div>$select</div></li><li><div>$skip</div></li></ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CFROWKEY</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonGUID_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>EmploymentGUID_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>Salutation_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>FirstName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>MiddleName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>FamilyName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>FamilyNamePrefix_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>KnownAs_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>LegalName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>EmployeeName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>FullName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>ActiveEmployee_Search</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>WorkNumber_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>MobileNumber_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>InternalEmail_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonCode_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>EmploymentID_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OrgUnitGUID_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OrgUnitName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PositionTitle_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>CompanyName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>LocationName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>CostCentreName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>JobName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>JobCode_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>IsManagerOfUnit_Search</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>CostCentreCode_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>HireDate_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OriginalHireDate_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonCode</td>\n<td></td>\n</tr>\n<tr>\n<td>FullName</td>\n<td></td>\n</tr>\n<tr>\n<td>EffectiveFrom</td>\n<td></td>\n</tr>\n<tr>\n<td>EffectiveTo</td>\n<td></td>\n</tr>\n<tr>\n<td>Type</td>\n<td></td>\n</tr>\n<tr>\n<td>Number</td>\n<td></td>\n</tr>\n<tr>\n<td>Country</td>\n<td></td>\n</tr>\n<tr>\n<td>Comments</td>\n<td></td>\n</tr>\n<tr>\n<td>VerifiedByFormattedName</td>\n<td></td>\n</tr>\n<tr>\n<td>VerifiedByPersonID</td>\n<td></td>\n</tr>\n<tr>\n<td>VerifiedDate</td>\n<td></td>\n</tr>\n<tr>\n<td>CompanySponsored</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>Cost</td>\n<td></td>\n</tr>\n<tr>\n<td>BaseCost</td>\n<td></td>\n</tr>\n<tr>\n<td>CurrencyCode</td>\n<td></td>\n</tr>\n<tr>\n<td>BaseCurrencyCode</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has read-only access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"6dff18a1-3ce0-4be7-81ac-0aba92490a85","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"a08dd0ff-1b3f-4bfa-8867-c762c4c6af76","type":"text/javascript","exec":[""]}}],"_postman_id":"47685c4f-2cee-8bc0-2a5e-a1cfaa50fa43"},{"name":"Addresses","item":[{"name":"List of Employee Addresses","id":"16f0905a-7eef-cc35-4e9c-8390bf06a5c5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"password":"<password>","username":"<username>","showPassword":"<show-password>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/AddressesSearch?$format=json","description":"<p>This request will return a list of Employee Addresses from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n<li>This API is limited to 2000 rows per call.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["AddressesSearch"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"43702fb8-8193-a4e4-07cb-9964460177ef","name":"List of Employee Addresses","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/AddressesSearch?$format=json","host":["{{url}}"],"path":["AddressesSearch"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"1337","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","name":"Content-Type","description":""},{"key":"DataServiceVersion","value":"3.0;","name":"DataServiceVersion","description":""},{"key":"Date","value":"Thu, 18 Jan 2018 09:18:15 GMT","name":"Date","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"10FF1C8527C119F7CB4E7C4120B8992C37BA1C8AE5234A9C7292845F5BF38D235F1BB6B2EF2F3728FEB7A384928DF969505638D3077B989C224A35AD3FE86D663EBCCEECF12BB193FF45C084F261369A94F105CDE91537455E5B49C713A694D62D34D7A7888AD9B597BDD3246C7569B4C58B10C159A04F82DF9242075831F7E38CE8DEDD0EEAACDD6CF905FEA56D401CC4DB3789AF82193C78C9A4D6A124EB0BDE5B27B6C1663E44BDFDC68E369CC4FD3AE57BC82F41E15393895D53FCBF45BEF8EE38E5FAC9F414B14AF836AC55E69E37B3A04760F8929B12DD607AB5345FE24508BB570572B35BF0EE26ECE04E899FDAEA1A227AC0432679902DA7737F2B5B8C91E71F7F5A858689E6919028A38ADB","key":"CF_SID"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"-1","key":"CF_SLV"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"/1cGaxGPTBHcD8RBFPNm12FtDYLb3lMpw7XIBqrYFhv/PCOTAE7wxR40Odzc4CqCBqtAOZUr4ANdr0FCU5+yshc/OebxJq3yb+4ZnDyqpu6AwS+bVPF+pa/xxdPnk2Wb9Paf0Dv+yZV/0G7/d6kslgWPqvC6vBmhi0lGAwQ6OUY=","key":"__RequestVerificationToken_L0NlemFubmVPbkRlbWFuZA__"}],"responseTime":"637","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#AddressesSearch\",\n    \"value\": [\n        {\n            \"CFROWKEY\": \"00C2475C-026D-48D7-95E4-F36D6FC0A8D0_6153_2009-01-13T00:00:00_Home_57 Hadden Way\",\n            \"PersonGUID_Search\": \"1cb9fdc5-9b79-478f-83cd-9a43e0ea7404\",\n            \"EmploymentGUID_Search\": \"a8d133ae-afb8-462f-8b32-88f6d4a1ced8\",\n            \"Salutation_Search\": null,\n            \"FirstName_Search\": \"Lisa\",\n            \"MiddleName_Search\": null,\n            \"FamilyName_Search\": \"Smith\",\n            \"FamilyNamePrefix_Search\": null,\n            \"KnownAs_Search\": \"Lisa\",\n            \"LegalName_Search\": \"Lisa Smith\",\n            \"EmployeeName_Search\": \"Smith, Lisa\",\n            \"FullName_Search\": \"Lisa Smith\",\n            \"ActiveEmployee_Search\": 1,\n            \"WorkNumber_Search\": \"01225 456 221\",\n            \"MobileNumber_Search\": null,\n            \"InternalEmail_Search\": \"LisaSmith@omnicrom.com\",\n            \"PersonCode_Search\": \"6153\",\n            \"EmploymentID_Search\": \"6153\",\n            \"OrgUnitGUID_Search\": \"987784cc-df28-47ac-968b-e6db7f4b3e81\",\n            \"OrgUnitName_Search\": \"Operations\",\n            \"PositionTitle_Search\": \"Programmer\",\n            \"CompanyName_Search\": \"Omnicrom Manufacturing Ltd\",\n            \"LocationName_Search\": \"Derby\",\n            \"CostCentreName_Search\": null,\n            \"JobName_Search\": null,\n            \"JobCode_Search\": null,\n            \"IsManagerOfUnit_Search\": 0,\n            \"CostCentreCode_Search\": null,\n            \"HireDate_Search\": \"2009-01-13T00:00:00\",\n            \"OriginalHireDate_Search\": null,\n            \"PersonGUID\": \"1cb9fdc5-9b79-478f-83cd-9a43e0ea7404\",\n            \"PersonCode\": \"6153\",\n            \"FullName\": \"Lisa Smith\",\n            \"Salutation\": null,\n            \"EffectiveFrom\": \"2009-01-13T00:00:00\",\n            \"EffectiveTo\": \"2999-12-31T00:00:00\",\n            \"AddressType\": \"Home\",\n            \"AddressLine1\": \"57 Hadden Way\",\n            \"AddressLine2\": \"Berkshire\",\n            \"AddressLine3\": null,\n            \"AddressLine4\": null,\n            \"AddressLine5\": null,\n            \"City\": null,\n            \"County\": null,\n            \"CountyCode\": null,\n            \"Country\": \"United Kingdom\",\n            \"PostCode\": \"SL3 8LP\",\n            \"Comments\": null\n        }\n    ]\n}"}],"_postman_id":"16f0905a-7eef-cc35-4e9c-8390bf06a5c5"}],"id":"6115e67d-f5db-141c-9561-98b31f7f0252","description":"<p>This API enables all information from the Employee Addresses search to be retrieved. </p>\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CFROWKEY</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonGUID_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>EmploymentGUID_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>Salutation_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>FirstName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>MiddleName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>FamilyName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>FamilyNamePrefix_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>KnownAs_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>LegalName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>EmployeeName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>FullName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>ActiveEmployee_Search</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>WorkNumber_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>MobileNumber_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>InternalEmail_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonCode_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>EmploymentID_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OrgUnitGUID_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OrgUnitName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PositionTitle_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>CompanyName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>LocationName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>CostCentreName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>JobName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>JobCode_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>IsManagerOfUnit_Search</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>CostCentreCode_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>HireDate_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OriginalHireDate_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonGUID</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonCode</td>\n<td></td>\n</tr>\n<tr>\n<td>FullName</td>\n<td></td>\n</tr>\n<tr>\n<td>Salutation</td>\n<td></td>\n</tr>\n<tr>\n<td>EffectiveFrom</td>\n<td></td>\n</tr>\n<tr>\n<td>EffectiveTo</td>\n<td></td>\n</tr>\n<tr>\n<td>AddressType</td>\n<td></td>\n</tr>\n<tr>\n<td>AddressLine1</td>\n<td></td>\n</tr>\n<tr>\n<td>AddressLine2</td>\n<td></td>\n</tr>\n<tr>\n<td>AddressLine3</td>\n<td></td>\n</tr>\n<tr>\n<td>AddressLine4</td>\n<td></td>\n</tr>\n<tr>\n<td>AddressLine5</td>\n<td></td>\n</tr>\n<tr>\n<td>City</td>\n<td></td>\n</tr>\n<tr>\n<td>County</td>\n<td></td>\n</tr>\n<tr>\n<td>CountyCode</td>\n<td></td>\n</tr>\n<tr>\n<td>Country</td>\n<td></td>\n</tr>\n<tr>\n<td>PostCode</td>\n<td></td>\n</tr>\n<tr>\n<td>Comments</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2> Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has read-only access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"3addd649-c5fc-486d-90fe-4af42c7fed07","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"6adb8b65-874c-498d-b61b-0b183aeb835a","type":"text/javascript","exec":[""]}}],"_postman_id":"6115e67d-f5db-141c-9561-98b31f7f0252"},{"name":"Protected Characteristics","item":[{"name":"List of Employee Protected Characteristics","id":"a4c3678b-ea9d-1b5e-a540-cb0d2f2b1eb6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/ProtectedCharacteristicsSearch?$format=json","description":"<p>This request will return a list of Employee Protected Characteristics from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n<li>This API is limited to 2000 rows per call.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["ProtectedCharacteristicsSearch"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"0336724d-3cd9-ea22-eda8-45b14abf549c","name":"List of Employee Protected Characteristics","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/ProtectedCharacteristicsSearch?$format=json","host":["{{url}}"],"path":["ProtectedCharacteristicsSearch"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"2015","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","name":"Content-Type","description":""},{"key":"DataServiceVersion","value":"3.0;","name":"DataServiceVersion","description":""},{"key":"Date","value":"Thu, 18 Jan 2018 09:19:26 GMT","name":"Date","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"10FF1C8527C119F7CB4E7C4120B8992C37BA1C8AE5234A9C7292845F5BF38D235F1BB6B2EF2F3728FEB7A384928DF969505638D3077B989C224A35AD3FE86D663EBCCEECF12BB193FF45C084F261369A94F105CDE91537455E5B49C713A694D62D34D7A7888AD9B597BDD3246C7569B4C58B10C159A04F82DF9242075831F7E38CE8DEDD0EEAACDD6CF905FEA56D401CC4DB3789AF82193C78C9A4D6A124EB0BDE5B27B6C1663E44BDFDC68E369CC4FD3AE57BC82F41E15393895D53FCBF45BEF8EE38E5FAC9F414B14AF836AC55E69E37B3A04760F8929B12DD607AB5345FE24508BB570572B35BF0EE26ECE04E899FDAEA1A227AC0432679902DA7737F2B5B8C91E71F7F5A858689E6919028A38ADB","key":"CF_SID"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"-1","key":"CF_SLV"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"/1cGaxGPTBHcD8RBFPNm12FtDYLb3lMpw7XIBqrYFhv/PCOTAE7wxR40Odzc4CqCBqtAOZUr4ANdr0FCU5+yshc/OebxJq3yb+4ZnDyqpu6AwS+bVPF+pa/xxdPnk2Wb9Paf0Dv+yZV/0G7/d6kslgWPqvC6vBmhi0lGAwQ6OUY=","key":"__RequestVerificationToken_L0NlemFubmVPbkRlbWFuZA__"}],"responseTime":"1242","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#ProtectedCharacteristicsSearch\",\n    \"value\": [\n        {\n            \"CFROWKEY\": \"00C2475C-026D-48D7-95E4-F36D6FC0A8D0_6153_NULL_NULL_NULL_NULL_NULL\",\n            \"PersonGUID_Search\": \"00c2475c-026d-48d7-95e4-f36d6fc0a8d0\",\n            \"EmploymentGUID_Search\": \"32a79ef9-acb8-4530-9713-ca1ee1568f4a\",\n            \"Salutation_Search\": null,\n            \"FirstName_Search\": \"Lisa\",\n            \"MiddleName_Search\": null,\n            \"FamilyName_Search\": \"Smith\",\n            \"FamilyNamePrefix_Search\": null,\n            \"KnownAs_Search\": \"Lisa\",\n            \"LegalName_Search\": \"Lisa Smith\",\n            \"EmployeeName_Search\": \"Smith, Lisa\",\n            \"FullName_Search\": \"Lisa Smith\",\n            \"ActiveEmployee_Search\": 1,\n            \"WorkNumber_Search\": \"01225 456 221\",\n            \"MobileNumber_Search\": null,\n            \"InternalEmail_Search\": \"LisaSmith@omnicrom.com\",\n            \"PersonCode_Search\": \"6153\",\n            \"EmploymentID_Search\": \"6153\",\n            \"OrgUnitGUID_Search\": \"3ed464ab-5e4a-40fb-bca2-fe5351458fb6\",\n            \"OrgUnitName_Search\": \"Operations\",\n            \"PositionTitle_Search\": \"Programmer\",\n            \"CompanyName_Search\": \"Omnicrom Manufacturing Ltd\",\n            \"LocationName_Search\": \"Derby\",\n            \"CostCentreName_Search\": null,\n            \"JobName_Search\": null,\n            \"JobCode_Search\": null,\n            \"IsManagerOfUnit_Search\": 0,\n            \"CostCentreCode_Search\": null,\n            \"HasCertifiedDisability\": 0,\n            \"HireDate_Search\": \"2021-05-26T00:00:00\",\n            \"OriginalHireDate_Search\": \"2021-05-26T00:00:00\",\n            \"PersonGUID\": \"00c2475c-026d-48d7-95e4-f36d6fc0a8d0\",\n            \"PersonCode\": \"6153\",\n            \"FamilyName\": \"Smith\",\n            \"FirstName\": \"Lisa\",\n            \"Salutation\": null,\n            \"Gender\": \"Female\",\n            \"ActiveEmployee\": 1,\n            \"DateOfBirth\": \"1974-05-26T00:00:00\",\n            \"AdditionalFamilyNames\": \"\",\n            \"FamilyNamePrefix\": null,\n            \"FullName\": \"Lisa Smith\",\n            \"LegalName\": \"Lisa Smith\",\n            \"KnownAs\": \"Lisa\",\n            \"SuffixTitle\": null,\n            \"CountyOfBirth\": null,\n            \"CountyOfBirthCode\": null,\n            \"CountryOfBirth\": null,\n            \"CountryOfResidence\": null,\n            \"AgeMonths\": 7,\n            \"AgeYears\": 43,\n            \"CityOfBirth\": null,\n            \"Comments\": null,\n            \"EthnicOrigin\": null,\n            \"MiddleName\": null,\n            \"MilitaryStatus\": null,\n            \"Nationality\": \"British\",\n            \"PrimaryLanguage\": null,\n            \"Race\": null,\n            \"TobaccoUser\": 0,\n            \"DeceasedDate\": null,\n            \"Deceased\": 0,\n            \"Student\": 0,\n            \"PersonPronouns\": \"she/her\",\n            \"BirthMonth\": \"May\",\n            \"BirthYear\": 1974,\n            \"MaritalStatusPersonGUID\": \"00c2475c-026d-48d7-95e4-f36d6fc0a8d0\",\n            \"MaritalStatusDescription\": null,\n            \"MaritalStatusDate\": null,\n            \"MaritalStatusEndDate\": null,\n            \"PreviousName\": null,\n            \"CertifiedDate\": null,\n            \"DisabilityType\": null,\n            \"DisabilityLevel\": null,\n            \"Percentage\": null,\n            \"CertificateExpiry\": null,\n            \"CurrentlyPregnant\": null,\n            \"EmployeeConsidersThemselvesDisabled\": null,\n            \"SexualOrientation\": null,\n            \"ReligionOrBelief\": null,\n            \"GenderReassignment\": null\n        }\n    ]\n}"}],"_postman_id":"a4c3678b-ea9d-1b5e-a540-cb0d2f2b1eb6"}],"id":"1c5eba2d-ba31-d2d7-8ceb-586eefa937f7","description":"<p>This API enables all information from the Protected Characteristics search to be retrieved. </p>\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CFROWKEY</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonGUID_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>EmploymentGUID_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>Salutation_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>FirstName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>MiddleName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>FamilyName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>FamilyNamePrefix_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>KnownAs_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>LegalName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>EmployeeName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>FullName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>ActiveEmployee_Search</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>WorkNumber_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>MobileNumber_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>InternalEmail_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonCode_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>EmploymentID_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OrgUnitGUID_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OrgUnitName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PositionTitle_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>CompanyName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>LocationName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>CostCentreName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>JobName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>JobCode_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>IsManagerOfUnit_Search</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>CostCentreCode_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>HasCertifiedDisability</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>HireDate_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OriginalHireDate_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonGUID</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonCode</td>\n<td></td>\n</tr>\n<tr>\n<td>FamilyName</td>\n<td></td>\n</tr>\n<tr>\n<td>FirstName</td>\n<td></td>\n</tr>\n<tr>\n<td>Salutation</td>\n<td></td>\n</tr>\n<tr>\n<td>Gender</td>\n<td></td>\n</tr>\n<tr>\n<td>ActiveEmployee</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>DateOfBirth</td>\n<td></td>\n</tr>\n<tr>\n<td>AdditionalFamilyNames</td>\n<td></td>\n</tr>\n<tr>\n<td>FamilyNamePrefix</td>\n<td></td>\n</tr>\n<tr>\n<td>FullName</td>\n<td></td>\n</tr>\n<tr>\n<td>LegalName</td>\n<td></td>\n</tr>\n<tr>\n<td>KnownAs</td>\n<td></td>\n</tr>\n<tr>\n<td>SuffixTitle</td>\n<td></td>\n</tr>\n<tr>\n<td>CountyOfBirth</td>\n<td></td>\n</tr>\n<tr>\n<td>CountyOfBirthCode</td>\n<td></td>\n</tr>\n<tr>\n<td>CountryOfBirth</td>\n<td></td>\n</tr>\n<tr>\n<td>CountryOfResidence</td>\n<td></td>\n</tr>\n<tr>\n<td>AgeMonths</td>\n<td></td>\n</tr>\n<tr>\n<td>AgeYears</td>\n<td></td>\n</tr>\n<tr>\n<td>CityOfBirth</td>\n<td></td>\n</tr>\n<tr>\n<td>Comments</td>\n<td></td>\n</tr>\n<tr>\n<td>EthnicOrigin</td>\n<td></td>\n</tr>\n<tr>\n<td>MiddleName</td>\n<td></td>\n</tr>\n<tr>\n<td>MilitaryStatus</td>\n<td></td>\n</tr>\n<tr>\n<td>Nationality</td>\n<td></td>\n</tr>\n<tr>\n<td>PrimaryLanguage</td>\n<td></td>\n</tr>\n<tr>\n<td>Race</td>\n<td></td>\n</tr>\n<tr>\n<td>TobaccoUser</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>DeceasedDate</td>\n<td></td>\n</tr>\n<tr>\n<td>Deceased</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>Student</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>PersonPronouns</td>\n<td></td>\n</tr>\n<tr>\n<td>BirthMonth</td>\n<td></td>\n</tr>\n<tr>\n<td>BirthYear</td>\n<td></td>\n</tr>\n<tr>\n<td>MaritalStatusPersonGUID</td>\n<td></td>\n</tr>\n<tr>\n<td>MaritalStatusDescription</td>\n<td></td>\n</tr>\n<tr>\n<td>MaritalStatusDate</td>\n<td></td>\n</tr>\n<tr>\n<td>MaritalStatusEndDate</td>\n<td></td>\n</tr>\n<tr>\n<td>PreviousName</td>\n<td></td>\n</tr>\n<tr>\n<td>CertifiedDate</td>\n<td></td>\n</tr>\n<tr>\n<td>DisabilityType</td>\n<td></td>\n</tr>\n<tr>\n<td>DisabilityLevel</td>\n<td></td>\n</tr>\n<tr>\n<td>Percentage</td>\n<td></td>\n</tr>\n<tr>\n<td>CertificateExpiry</td>\n<td></td>\n</tr>\n<tr>\n<td>CurrentlyPregnant</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>EmployeeConsidersThemselvesDisabled</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>SexualOrientation</td>\n<td></td>\n</tr>\n<tr>\n<td>ReligionOrBelief</td>\n<td></td>\n</tr>\n<tr>\n<td>GenderReassignment</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2> Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has read-only access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"6f565333-dcae-4f0b-b683-dbdfd61f8b2e","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"c92b2e49-6ab9-493c-9b91-4c0e002ae1a4","type":"text/javascript","exec":[""]}}],"_postman_id":"1c5eba2d-ba31-d2d7-8ceb-586eefa937f7"},{"name":"Inventory Assignment Search","item":[{"name":"List of Employee Inventory Assignments","id":"8cbcb277-bf82-46ed-a88a-0f8c73032e7d","request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/InventoryAssignmentSearch?$format=json","description":"<p>This request will return a list of Employee Inventory Assignments from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n<li>This API is limited to 2000 rows per call.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["InventoryAssignmentSearch"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[],"_postman_id":"8cbcb277-bf82-46ed-a88a-0f8c73032e7d"}],"id":"84f7b4c7-4839-4c6c-8d12-5b2c36e4f4e4","description":"<p>This API enables all information about Inventory Assignments to be retrieved. </p>\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CFROWKEY</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonGUID_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>EmploymentGUID_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>Salutation_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>FirstName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>MiddleName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>FamilyName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>FamilyNamePrefix_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>KnownAs_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>LegalName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>EmployeeName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>FullName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>ActiveEmployee_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>WorkNumber_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>MobileNumber_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>InternalEmail_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonCode_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>EmploymentID_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OrgUnitGUID_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OrgUnitName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PositionTitle_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>CompanyName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>LocationName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>CostCentreName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>JobName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>JobCode_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>IsManagerOfUnit_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>CostCentreCode_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>HireDate_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OriginalHireDate_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonCode</td>\n<td></td>\n</tr>\n<tr>\n<td>InventoryItemGUID</td>\n<td></td>\n</tr>\n<tr>\n<td>Model</td>\n<td></td>\n</tr>\n<tr>\n<td>Version</td>\n<td></td>\n</tr>\n<tr>\n<td>EffectiveFrom</td>\n<td></td>\n</tr>\n<tr>\n<td>EffectiveTo</td>\n<td></td>\n</tr>\n<tr>\n<td>Reason</td>\n<td></td>\n</tr>\n<tr>\n<td>AssigneeName</td>\n<td></td>\n</tr>\n<tr>\n<td>InventoryItem</td>\n<td></td>\n</tr>\n<tr>\n<td>InventoryItemType</td>\n<td></td>\n</tr>\n<tr>\n<td>AssetNumber</td>\n<td></td>\n</tr>\n<tr>\n<td>SerialNumber</td>\n<td></td>\n</tr>\n<tr>\n<td>Comments</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2> Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has read-only access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to their and all subordinate records.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to their own record.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"1505ad35-9b06-4a68-80ed-472f7c022a16","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"579af970-ee14-4b47-88c2-c6d7d4280afd","type":"text/javascript","exec":[""]}}],"_postman_id":"84f7b4c7-4839-4c6c-8d12-5b2c36e4f4e4"},{"name":"Bank Details","item":[{"name":"List of Employee Bank Details","id":"9f85cd36-613c-416a-a02c-c431a9a7302f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"clientSecret":"<client-secret>","clientId":"<client-id>","challengeAlgorithm":"<challenge-algorithm>","scope":"<scope>","grant_type":"<grant_type>","client_authentication":"<client_authentication>","accessTokenUrl":"<access-token-url>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[],"url":"{{url}}/BankDetailsSearch?$format=json","description":"<p>This request will return a list of Employee Bank Details Records from the system.</p>\n<p><strong>Notes:</strong></p>\n<ul><li><p>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</p></li><li><p>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</p></li><li><p>This API is limited to 2000 rows per call.</p></li></ul>\n\n<p>Available Parameters:</p>\n<ul><li><p>$filter</p></li><li><p>$top</p></li><li><p>$orderby</p></li><li><p>$select</p></li><li><p>$skip</p></li><li><p>$inlinecount</p></li></ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["BankDetailsSearch"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"46f6989c-6f9e-4bf5-bb08-094be67e968a","name":"List of Employee Bank Details","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{url}}/BankDetailsSearch?$format=json","host":["{{url}}"],"path":["BankDetailsSearch"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 25 Mar 2022 17:19:14 GMT"},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8"},{"key":"Content-Length","value":"1665"},{"key":"Connection","value":"keep-alive"},{"key":"Set-Cookie","value":"AWSALB=yLVYmmdmqn5+StKSuZn09MF2VLQfWb8lu8LX6Rx5zIjS1QIC6bEao9TPWjsCDX4EV0AC1Dsr7yEjI8c5SU0fk1HOlRIn/6LiuufIwpcw9YBqvY+XlXmaddJsX4B1; Expires=Fri, 01 Apr 2022 17:19:14 GMT; Path=/"},{"key":"Set-Cookie","value":"AWSALBCORS=yLVYmmdmqn5+StKSuZn09MF2VLQfWb8lu8LX6Rx5zIjS1QIC6bEao9TPWjsCDX4EV0AC1Dsr7yEjI8c5SU0fk1HOlRIn/6LiuufIwpcw9YBqvY+XlXmaddJsX4B1; Expires=Fri, 01 Apr 2022 17:19:14 GMT; Path=/; SameSite=None; Secure"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"DataServiceVersion","value":"3.0;"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#BankDetailsSearch\",\n    \"value\": [\n        {\n            \"CFROWKEY\": \"74E3AE42-A048-4405-B190-02F70CCF0816_CEZ23_2004-05-06T00:00:00_21215555\",\n            \"PersonGUID_Search\": \"74e3ae42-a222-4405-b190-02f70ccf0816\",\n            \"EmploymentGUID_Search\": \"93c145d1-a8c8-4ad4-909e-a19eccc6431e\",\n            \"Salutation_Search\": \"Mrs.\",\n            \"FirstName_Search\": \"Margaret\",\n            \"MiddleName_Search\": \"Jane\",\n            \"FamilyName_Search\": \"Gray\",\n            \"FamilyNamePrefix_Search\": null,\n            \"KnownAs_Search\": \"Maggie\",\n            \"LegalName_Search\": \"Margaret Jane Gray\",\n            \"EmployeeName_Search\": \"Gray, Margaret\",\n            \"FullName_Search\": \"Margaret Gray\",\n            \"ActiveEmployee_Search\": 1,\n            \"WorkNumber_Search\": null,\n            \"MobileNumber_Search\": null,\n            \"InternalEmail_Search\": null,\n            \"PersonCode_Search\": \"CEZ23\",\n            \"EmploymentID_Search\": \"EMP0042\",\n            \"OrgUnitGUID_Search\": \"623b99d7-a46c-4d1a-902a-17fa02d72d10\",\n            \"OrgUnitName_Search\": \"Italy Sales\",\n            \"PositionTitle_Search\": \"Italy Sales Consultant\",\n            \"CompanyName_Search\": \"Omnicrom Italy\",\n            \"LocationName_Search\": \"Italy Sales Office\",\n            \"CostCentreName_Search\": \"OM022 - Italy Sales\",\n            \"JobName_Search\": \"Sales Consultant\",\n            \"JobCode_Search\": \"SALCON\",\n            \"IsManagerOfUnit_Search\": 0,\n            \"CostCentreCode_Search\": \"OM022\",\n            \"HireDate_Search\": \"2007-01-01T00:00:00\",\n            \"OriginalHireDate_Search\": \"2007-01-01T00:00:00\",\n            \"PersonGUID\": \"74e3ae42-a222-4405-b190-02f70ccf0816\",\n            \"PersonCode\": \"CEZ23\",\n            \"FullName\": \"Margaret Gray\",\n            \"EffectiveFrom\": \"2004-05-06T00:00:00\",\n            \"EffectiveTo\": \"2999-12-31T00:00:00\",\n            \"BankName\": \"Barclays\",\n            \"AccountType\": \"Salary\",\n            \"AccountHolder\": \"M Gray\",\n            \"AccountNumber\": \"21215555\",\n            \"SortCode\": \"44-85-30\",\n            \"RollNumber\": null,\n            \"IsForeign\": 0,\n            \"BankWindow\": null,\n            \"BICSwiftCode\": null,\n            \"IBAN\": null,\n            \"Comments\": null\n        }\n    ]\n}"}],"_postman_id":"9f85cd36-613c-416a-a02c-c431a9a7302f"}],"id":"6de24193-6c63-7af9-23b2-2efbab81adcd","description":"<p>This API enables all information from the Active Employees search to be retrieved.</p>\n<p>Available Parameters:</p>\n<ul><li><div>$filter</div></li><li><div>$top</div></li><li><div>$orderby</div></li><li><div>$select</div></li><li><div>$skip</div></li></ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CFROWKEY</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonGUID_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>EmploymentGUID_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>Salutation_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>FirstName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>MiddleName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>FamilyName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>FamilyNamePrefix_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>KnownAs_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>LegalName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>EmployeeName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>FullName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>ActiveEmployee_Search</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>WorkNumber_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>MobileNumber_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>InternalEmail_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonCode_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>EmploymentID_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OrgUnitGUID_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OrgUnitName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PositionTitle_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>CompanyName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>LocationName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>CostCentreName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>JobName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>JobCode_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>IsManagerOfUnit_Search</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>CostCentreCode_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>HireDate_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OriginalHireDate_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonGUID</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonCode</td>\n<td></td>\n</tr>\n<tr>\n<td>FullName</td>\n<td></td>\n</tr>\n<tr>\n<td>EffectiveFrom</td>\n<td></td>\n</tr>\n<tr>\n<td>EffectiveTo</td>\n<td></td>\n</tr>\n<tr>\n<td>BankName</td>\n<td></td>\n</tr>\n<tr>\n<td>AccountType</td>\n<td></td>\n</tr>\n<tr>\n<td>AccountHolder</td>\n<td></td>\n</tr>\n<tr>\n<td>AccountNumber</td>\n<td></td>\n</tr>\n<tr>\n<td>SortCode</td>\n<td></td>\n</tr>\n<tr>\n<td>RollNumber</td>\n<td></td>\n</tr>\n<tr>\n<td>IsForeign</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>BankWindow</td>\n<td></td>\n</tr>\n<tr>\n<td>BICSwiftCode</td>\n<td></td>\n</tr>\n<tr>\n<td>IBAN</td>\n<td></td>\n</tr>\n<tr>\n<td>Comments</td>\n<td></td>\n</tr>\n<tr>\n<td>VerificationTypeCode</td>\n<td></td>\n</tr>\n<tr>\n<td>VerificationType</td>\n<td></td>\n</tr>\n<tr>\n<td>Verified</td>\n<td>1 = Verified, 0 = Not Verified.</td>\n</tr>\n<tr>\n<td>OverrideVerification</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has read-only access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"38d26e8a-2630-4922-9aae-52b37503284f","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"f132c83f-1a49-4f63-a3ef-ef707fe01625","type":"text/javascript","exec":[""]}}],"_postman_id":"6de24193-6c63-7af9-23b2-2efbab81adcd"}],"id":"ba21d980-e320-04c3-d101-5506bfcf79d3","_postman_id":"ba21d980-e320-04c3-d101-5506bfcf79d3","description":""},{"name":"Absences","item":[{"name":"People Absence Events","item":[{"name":"List of Employee Absence Events","id":"2796197c-1653-39a6-385d-8f2332399969","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/PeopleAbsenceEventsSearch?$format=json","description":"<p>This request will return a list of Employee Absence Events from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n<li>This API is limited to 2000 rows per call. If you are building a report or integration that requires more rows, you should use the Table-Based Absence APIs.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["PeopleAbsenceEventsSearch"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"34dc51b7-e28f-96ad-d6fe-d1acd41d7f77","name":"List of Employee Absence Events","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/PeopleAbsenceEventsSearch?$format=json","host":["{{url}}"],"path":["PeopleAbsenceEventsSearch"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"4680","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","name":"Content-Type","description":""},{"key":"DataServiceVersion","value":"3.0;","name":"DataServiceVersion","description":""},{"key":"Date","value":"Thu, 18 Jan 2018 09:21:46 GMT","name":"Date","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"10FF1C8527C119F7CB4E7C4120B8992C37BA1C8AE5234A9C7292845F5BF38D235F1BB6B2EF2F3728FEB7A384928DF969505638D3077B989C224A35AD3FE86D663EBCCEECF12BB193FF45C084F261369A94F105CDE91537455E5B49C713A694D62D34D7A7888AD9B597BDD3246C7569B4C58B10C159A04F82DF9242075831F7E38CE8DEDD0EEAACDD6CF905FEA56D401CC4DB3789AF82193C78C9A4D6A124EB0BDE5B27B6C1663E44BDFDC68E369CC4FD3AE57BC82F41E15393895D53FCBF45BEF8EE38E5FAC9F414B14AF836AC55E69E37B3A04760F8929B12DD607AB5345FE24508BB570572B35BF0EE26ECE04E899FDAEA1A227AC0432679902DA7737F2B5B8C91E71F7F5A858689E6919028A38ADB","key":"CF_SID"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"-1","key":"CF_SLV"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"/1cGaxGPTBHcD8RBFPNm12FtDYLb3lMpw7XIBqrYFhv/PCOTAE7wxR40Odzc4CqCBqtAOZUr4ANdr0FCU5+yshc/OebxJq3yb+4ZnDyqpu6AwS+bVPF+pa/xxdPnk2Wb9Paf0Dv+yZV/0G7/d6kslgWPqvC6vBmhi0lGAwQ6OUY=","key":"__RequestVerificationToken_L0NlemFubmVPbkRlbWFuZA__"}],"responseTime":"20482","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#PeopleAbsenceEventsSearch\",\n    \"value\": [\n        {\n            \"CFROWKEY\": \"0590_019E853D-EFB5-40AD-858D-0B9B9C589140_DB162C7C-7526-40A1-A4A3-EBBB5043A6FE_3A752123-1A7A-49DB-8A6E-D2D867A36F4D_DB162C7C-7526-40A1-A4A3-EBBB5043A6FE\",\n            \"PersonGUID\": \"b9d33733-3070-483a-9ff0-37540af3a0da\",\n            \"EmploymentGUID_Search\": \"02e9b2e8-1840-4835-8c8e-f5a2817df09e\",\n            \"Salutation_Search\": null,\n            \"FirstName_Search\": \"Lawrence\",\n            \"MiddleName_Search\": null,\n            \"FamilyName_Search\": \"Edwards\",\n            \"FamilyNamePrefix_Search\": null,\n            \"KnownAs_Search\": \"Larry\",\n            \"LegalName_Search\": \"Lawrence Edwards\",\n            \"EmployeeName_Search\": \"Edwards, Lawrence\",\n            \"FullName_Search\": \"Lawrence Edwards\",\n            \"CountryOfBirth_Search\": null,\n            \"DateOfBirth_Search\": \"1973-08-08T00:00:00\",\n            \"Age_Search\": 44,\n            \"PrimaryLanguage_Search\": null,\n            \"Nationality_Search\": \"French\",\n            \"Gender_Search\": \"Male\",\n            \"GenderCode_Search\": \"M\",\n            \"CountryOfResidence_Search\": null,\n            \"ActiveEmployee_Search\": 1,\n            \"PrimaryEmployment_Search\": 1,\n            \"ContractTerm_Search\": \"Contractor\",\n            \"ContractName_Search\": \"Management\",\n            \"FTERatio_Search\": \"0.225\",\n            \"WorkNumber_Search\": \"020 78762654\",\n            \"MobileNumber_Search\": null,\n            \"HomeNumber_Search\": null,\n            \"OtherNumber_Search\": null,\n            \"PersonalMobileNumber_Search\": null,\n            \"InternalEmail_Search\": \"LawrenceEdwards@omnicrom.com\",\n            \"ExternalEmail_Search\": null,\n            \"PersonGrade_Search\": \"28\",\n            \"JobGrade_Search\": null,\n            \"ManagerOfOrgUnitPersonGUID_Search\": \"b9d33733-3070-483a-9ff0-37540af3a0da\",\n            \"OrgUnitManager_Search\": \"Lawrence Edwards\",\n            \"ManagerOfOrgUnitPersonCode_Search\": \"0590\",\n            \"SupervisorPersonGUID_Search\": \"12e47eb2-366c-4acc-81bf-c9fe7f61da67\",\n            \"Supervisor_Search\": \"Steven Thomas\",\n            \"SupervisorPersonCode_Search\": \"3404\",\n            \"PersonCode_Search\": \"0590\",\n            \"EmploymentID_Search\": \"590\",\n            \"OrgUnitGUID_Search\": \"62cff76f-e947-47cc-bcb3-ad0c7f62204a\",\n            \"OrgUnitName_Search\": \"Personnel - USA\",\n            \"OrgUnitCode_Search\": \"cccc\",\n            \"PositionTitle_Search\": \"HR Director\",\n            \"CompanyName_Search\": \"Omnicrom Manufacturing Ltd\",\n            \"LocationName_Search\": \"Bristol\",\n            \"CostCentreName_Search\": null,\n            \"JobName_Search\": null,\n            \"JobDeploymentEffectiveFrom_Search\": null,\n            \"JobDeploymentEffectiveTo_Search\": null,\n            \"PrimaryJob_Search\": null,\n            \"JobCode_Search\": null,\n            \"JobDeploymentReason_Search\": null,\n            \"PrimaryPersonGrade_Search\": 1,\n            \"PersonGradeEffectiveFrom_Search\": \"2008-03-30T00:00:00\",\n            \"PersonGradeEffectiveTo_Search\": \"2999-12-31T00:00:00\",\n            \"PersonGradeCode_Search\": \"28\",\n            \"PersonGradeGroup_Search\": null,\n            \"PersonGradeDeploymentReason_Search\": null,\n            \"HireDate_Search\": \"2008-03-30T00:00:00\",\n            \"AdjustedHireDate_Search\": null,\n            \"EmploymentReason_Search\": null,\n            \"LengthOfService_Search\": \"9.75\",\n            \"LengthOfServiceYears_Search\": 9,\n            \"LengthOfServiceMonths_Search\": 9,\n            \"OriginalHireDate_Search\": null,\n            \"ContinuousService_Search\": null,\n            \"HiringComments_Search\": \"\",\n            \"ProbationPeriodTo_Search\": null,\n            \"ProbationPeriodExtendedTo_Search\": null,\n            \"ProbationStatus_Search\": null,\n            \"NoticePeriod_Search\": null,\n            \"TerminationDate_Search\": \"2999-12-31T00:00:00\",\n            \"TerminationReason_Search\": null,\n            \"NoticeGivenDate_Search\": null,\n            \"IntendedRetirementDate_Search\": null,\n            \"LastWorkedDate_Search\": null,\n            \"LastPaidDate_Search\": null,\n            \"TerminationComments_Search\": null,\n            \"PrimaryDeployment_Search\": 1,\n            \"DeploymentEffectiveFrom_Search\": \"2008-03-30T00:00:00\",\n            \"DeploymentEffectiveTo_Search\": \"2999-12-31T00:00:00\",\n            \"IsManagerOfUnit_Search\": 1,\n            \"IsSupervisor_Search\": 1,\n            \"DeploymentReason_Search\": null,\n            \"PrimaryLocation_Search\": 1,\n            \"LocationEffectiveFrom_Search\": \"2008-03-30T00:00:00\",\n            \"LocationEffectiveTo_Search\": \"2999-12-31T00:00:00\",\n            \"LocationDeploymentReason_Search\": null,\n            \"PrimaryCostCentre_Search\": null,\n            \"CostCentreEffectiveFrom_Search\": null,\n            \"CostCentreEffectiveTo_Search\": null,\n            \"CostCentreCode_Search\": null,\n            \"CostCentreDeploymentReason_Search\": null,\n            \"EmpWorkTimePatternEffectiveFrom_Search\": \"2017-01-01T00:00:00\",\n            \"EmpWorkTimePatternEffectiveTo_Search\": \"2999-12-31T00:00:00\",\n            \"EmpWorkTimePatternName_Search\": \"New\",\n            \"OrgUnitArea_Search\": \"Human Resources\",\n            \"OrgUnitType_Search\": null,\n            \"PersonPronouns\": \"he/him\",\n            \"AbsenceEventEffectiveFrom\": \"2008-10-27T00:00:00\",\n            \"AbsenceEventEffectiveTo\": \"2008-11-04T00:00:00\",\n            \"AbsenceEventComments\": null,\n            \"AbsenceEventSubmittedOn\": null,\n            \"AbsenceEventRepliedOn\": null,\n            \"AbsenceEventTotalWorkingHours\": \"26.25\",\n            \"AbsenceEventInsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"AbsenceEventLastModifiedUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"AbsenceEventLastModifiedDate\": \"2017-02-24T12:10:27.453\",\n            \"FullName\": \"Lawrence Edwards\",\n            \"ApproverEmail\": null,\n            \"Approver\": null,\n            \"AbsencePlanTypeName\": \"Sickness\",\n            \"AbsenceTypeName\": \"Sickness\",\n            \"TimeUnits\": \"Days\",\n            \"AbsenceStatus\": \"Draft\",\n            \"AbsenceCategory\": \"Sickness\",\n            \"AbsenceReason\": \"Back Pain\",\n            \"TotalWorkingTimeTakenByTimeUnit\": \"3.50\",\n            \"TotalByTimeUnit\": \"3.50\",\n            \"CommencesCode\": \"S\",\n            \"FinishesCode\": \"E\",\n            \"TotalDays\": \"9.00\",\n            \"Commences\": \"Start of Day\",\n            \"Finishes\": \"End of Day\",\n            \"AbsenceEventInsertDate\": \"2013-01-30T10:12:35.78\",\n            \"SickPay\": 0,\n            \"IsPiw\": 0,\n            \"OverrideAverageWeeklyEarnings\": 0,\n            \"AverageWeeklyEarnings\": null,\n            \"ContainsPaidDetail\": 0,\n            \"ReferenceDate\": \"2008-10-30T00:00:00\",\n            \"WeekDay\": \"Thursday\",\n            \"AMStartTime\": null,\n            \"AMEndTime\": null,\n            \"AMWorkingHours\": \"0.00\",\n            \"PMStartTime\": \"1900-01-01T13:45:00\",\n            \"PMEndTime\": \"1900-01-01T17:30:00\",\n            \"PMWorkingHours\": \"3.75\",\n            \"TotalWorkingHours\": \"3.75\",\n            \"ScheduledWorkingHours\": \"3.75\",\n            \"Paid\": 0\n        }\n    ]\n}"}],"_postman_id":"2796197c-1653-39a6-385d-8f2332399969"}],"id":"3c285aa2-cd5d-1590-01fe-60713b4e92b2","description":"<p>This API enables all information from the People Absence Events search to be retrieved.</p>\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CFROWKEY</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonGUID</td>\n<td></td>\n</tr>\n<tr>\n<td>EmploymentGUID_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>Salutation_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>FirstName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>MiddleName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>FamilyName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>FamilyNamePrefix_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>KnownAs_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>LegalName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>EmployeeName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>FullName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>CountryOfBirth_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>DateOfBirth_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>Age_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PrimaryLanguage_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>Nationality_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>Gender_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>GenderCode_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>CountryOfResidence_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>ActiveEmployee_Search</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>PrimaryEmployment_Search</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>ContractTerm_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>ContractName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>FTERatio_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>WorkNumber_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>MobileNumber_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>HomeNumber_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OtherNumber_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonalMobileNumber_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>InternalEmail_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>ExternalEmail_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonGrade_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>JobGrade_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>ManagerOfOrgUnitPersonGUID_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OrgUnitManager_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>ManagerOfOrgUnitPersonCode_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>SupervisorPersonGUID_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>Supervisor_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>SupervisorPersonCode_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonCode_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>EmploymentID_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OrgUnitGUID_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OrgUnitName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OrgUnitCode_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PositionTitle_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>CompanyName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>LocationName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>CostCentreName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>JobName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>JobDeploymentEffectiveFrom_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>JobDeploymentEffectiveTo_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PrimaryJob_Search</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>JobCode_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>JobDeploymentReason_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PrimaryPersonGrade_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonGradeEffectiveFrom_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonGradeEffectiveTo_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonGradeCode_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonGradeGroup_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonGradeDeploymentReason_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>HireDate_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>AdjustedHireDate_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>EmploymentReason_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>LengthOfService_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>LengthOfServiceYears_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>LengthOfServiceMonths_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OriginalHireDate_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>ContinuousService_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>HiringComments_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>ProbationPeriodTo_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>ProbationPeriodExtendedTo_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>ProbationStatus_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>NoticePeriod_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>TerminationDate_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>TerminationReason_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>NoticeGivenDate_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>IntendedRetirementDate_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>LastWorkedDate_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>LastPaidDate_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>TerminationComments_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PrimaryDeployment_Search</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>DeploymentEffectiveFrom_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>DeploymentEffectiveTo_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>IsManagerOfUnit_Search</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>IsSupervisor_Search</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>DeploymentReason_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PrimaryLocation_Search</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>LocationEffectiveFrom_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>LocationEffectiveTo_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>LocationDeploymentReason_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PrimaryCostCentre_Search</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>CostCentreEffectiveFrom_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>CostCentreEffectiveTo_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>CostCentreCode_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>CostCentreDeploymentReason_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>EmpWorkTimePatternEffectiveFrom_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>EmpWorkTimePatternEffectiveTo_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>EmpWorkTimePatternName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OrgUnitArea_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OrgUnitType_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonPronouns_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>BusinessTitle_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>BirthYear_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>BirthMonth_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>AdjustedHireDateYear_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>HireDateYear_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OriginalHireDateYear_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>AdjustedHireDateMonth_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>HireDateMonth_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OriginalHireDateMonth_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>EthnicOrigin_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>Race_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>ImportKey_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>AbsenceEventEffectiveFrom</td>\n<td></td>\n</tr>\n<tr>\n<td>AbsenceEventEffectiveTo</td>\n<td></td>\n</tr>\n<tr>\n<td>AbsenceEventComments</td>\n<td></td>\n</tr>\n<tr>\n<td>AbsenceEventSubmittedOn</td>\n<td></td>\n</tr>\n<tr>\n<td>AbsenceEventRepliedOn</td>\n<td></td>\n</tr>\n<tr>\n<td>AbsenceEventTotalWorkingHours</td>\n<td></td>\n</tr>\n<tr>\n<td>AbsenceEventInsertUser</td>\n<td></td>\n</tr>\n<tr>\n<td>AbsenceEventLastModifiedUser</td>\n<td></td>\n</tr>\n<tr>\n<td>AbsenceEventLastModifiedDate</td>\n<td></td>\n</tr>\n<tr>\n<td>FullName</td>\n<td></td>\n</tr>\n<tr>\n<td>ApproverEmail</td>\n<td></td>\n</tr>\n<tr>\n<td>Approver</td>\n<td></td>\n</tr>\n<tr>\n<td>AbsencePlanTypeName</td>\n<td></td>\n</tr>\n<tr>\n<td>AbsenceTypeName</td>\n<td></td>\n</tr>\n<tr>\n<td>TimeUnits</td>\n<td></td>\n</tr>\n<tr>\n<td>AbsenceStatus</td>\n<td></td>\n</tr>\n<tr>\n<td>AbsenceCategory</td>\n<td></td>\n</tr>\n<tr>\n<td>AbsenceReason</td>\n<td></td>\n</tr>\n<tr>\n<td>TotalWorkingTimeTakenByTimeUnit</td>\n<td></td>\n</tr>\n<tr>\n<td>TotalByTimeUnit</td>\n<td></td>\n</tr>\n<tr>\n<td>CommencesCode</td>\n<td></td>\n</tr>\n<tr>\n<td>FinishesCode</td>\n<td></td>\n</tr>\n<tr>\n<td>TotalDays</td>\n<td></td>\n</tr>\n<tr>\n<td>Commences</td>\n<td></td>\n</tr>\n<tr>\n<td>Finishes</td>\n<td></td>\n</tr>\n<tr>\n<td>AbsenceEventInsertDate</td>\n<td></td>\n</tr>\n<tr>\n<td>SickPay</td>\n<td></td>\n</tr>\n<tr>\n<td>DoNotPay</td>\n<td></td>\n</tr>\n<tr>\n<td>IsPiw</td>\n<td></td>\n</tr>\n<tr>\n<td>OverrideAverageWeeklyEarnings</td>\n<td></td>\n</tr>\n<tr>\n<td>AverageWeeklyEarnings</td>\n<td></td>\n</tr>\n<tr>\n<td>ContainsPaidDetail</td>\n<td></td>\n</tr>\n<tr>\n<td>ExcludeFromBradfordFactor</td>\n<td></td>\n</tr>\n<tr>\n<td>ReferenceDate</td>\n<td></td>\n</tr>\n<tr>\n<td>WeekDay</td>\n<td></td>\n</tr>\n<tr>\n<td>AMStartTime</td>\n<td></td>\n</tr>\n<tr>\n<td>AMEndTime</td>\n<td></td>\n</tr>\n<tr>\n<td>AMWorkingHours</td>\n<td></td>\n</tr>\n<tr>\n<td>PMStartTime</td>\n<td></td>\n</tr>\n<tr>\n<td>PMEndTime</td>\n<td></td>\n</tr>\n<tr>\n<td>PMWorkingHours</td>\n<td></td>\n</tr>\n<tr>\n<td>TotalWorkingHours</td>\n<td></td>\n</tr>\n<tr>\n<td>ScheduledWorkingHours</td>\n<td></td>\n</tr>\n<tr>\n<td>Paid</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has read-only access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to their and all subordinate records.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to their own record.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"d5e3357b-0989-4d23-9078-ad06be7de1c4","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"bce7f525-394f-4d3c-99cf-a59e91a33726","type":"text/javascript","exec":[""]}}],"_postman_id":"3c285aa2-cd5d-1590-01fe-60713b4e92b2"},{"name":"People Absence Plans","item":[{"name":"List of Employee Absence Plans","id":"f6433a04-6adb-07be-521f-f455f30d8de9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/PeopleAbsencePlansSearch?$format=json","description":"<p>This request will return a list of Employee Absence Plans from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n<li>This API is limited to 2000 rows per call. If you are building a report or integration that requires more rows, you should use the Table-Based Absence APIs.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["PeopleAbsencePlansSearch"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"df8a548d-0b3b-28e7-a3a1-e7f3f4178138","name":"List of Employee Absence Plans","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/PeopleAbsencePlansSearch?$format=json","host":["{{url}}"],"path":["PeopleAbsencePlansSearch"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"1311","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","name":"Content-Type","description":""},{"key":"DataServiceVersion","value":"3.0;","name":"DataServiceVersion","description":""},{"key":"Date","value":"Thu, 18 Jan 2018 09:23:57 GMT","name":"Date","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"10FF1C8527C119F7CB4E7C4120B8992C37BA1C8AE5234A9C7292845F5BF38D235F1BB6B2EF2F3728FEB7A384928DF969505638D3077B989C224A35AD3FE86D663EBCCEECF12BB193FF45C084F261369A94F105CDE91537455E5B49C713A694D62D34D7A7888AD9B597BDD3246C7569B4C58B10C159A04F82DF9242075831F7E38CE8DEDD0EEAACDD6CF905FEA56D401CC4DB3789AF82193C78C9A4D6A124EB0BDE5B27B6C1663E44BDFDC68E369CC4FD3AE57BC82F41E15393895D53FCBF45BEF8EE38E5FAC9F414B14AF836AC55E69E37B3A04760F8929B12DD607AB5345FE24508BB570572B35BF0EE26ECE04E899FDAEA1A227AC0432679902DA7737F2B5B8C91E71F7F5A858689E6919028A38ADB","key":"CF_SID"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"-1","key":"CF_SLV"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"/1cGaxGPTBHcD8RBFPNm12FtDYLb3lMpw7XIBqrYFhv/PCOTAE7wxR40Odzc4CqCBqtAOZUr4ANdr0FCU5+yshc/OebxJq3yb+4ZnDyqpu6AwS+bVPF+pa/xxdPnk2Wb9Paf0Dv+yZV/0G7/d6kslgWPqvC6vBmhi0lGAwQ6OUY=","key":"__RequestVerificationToken_L0NlemFubmVPbkRlbWFuZA__"}],"responseTime":"2365","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#PeopleAbsencePlansSearch\",\n    \"value\": [\n        {\n            \"CFROWKEY\": \"00C2475C-026D-48D7-95E4-F36D6FC0A8D0_A11A47DA-CC11-4F11-885B-A8D1E13F0FD6\",\n            \"PersonGUID_Search\": \"0083639f-5318-4d1b-84f6-a7c7fa80f1a9\",\n            \"EmploymentGUID_Search\": \"09091fe6-47ef-49b0-8c2a-4d3464567a61\",\n            \"Salutation_Search\": null,\n            \"FirstName_Search\": \"Lisa\",\n            \"MiddleName_Search\": null,\n            \"FamilyName_Search\": \"Smith\",\n            \"FamilyNamePrefix_Search\": null,\n            \"KnownAs_Search\": \"Lisa\",\n            \"LegalName_Search\": \"Lisa Smith\",\n            \"EmployeeName_Search\": \"Smith, Lisa\",\n            \"FullName_Search\": \"Lisa Smith\",\n            \"ActiveEmployee_Search\": 1,\n            \"WorkNumber_Search\": \"01225 456 221\",\n            \"MobileNumber_Search\": null,\n            \"InternalEmail_Search\": \"LisaSmith@omnicrom.com\",\n            \"PersonCode_Search\": \"6153\",\n            \"EmploymentID_Search\": \"6153\",\n            \"OrgUnitGUID_Search\": \"92e8c74f-541a-4775-ad6f-f41bd6abd030\",\n            \"OrgUnitName_Search\": \"Operations\",\n            \"PositionTitle_Search\": \"Programmer\",\n            \"CompanyName_Search\": \"Omnicrom Manufacturing Ltd\",\n            \"LocationName_Search\": \"Derby\",\n            \"CostCentreName_Search\": null,\n            \"JobName_Search\": null,\n            \"JobCode_Search\": null,\n            \"IsManagerOfUnit_Search\": 0,\n            \"CostCentreCode_Search\": null,\n            \"AbsenceTypeName\": \"Sickness\",\n            \"EffectiveFrom\": \"2009-01-13T00:00:00\",\n            \"EffectiveTo\": \"2999-12-31T00:00:00\",\n            \"TimeUnit\": \"Days\",\n            \"TakenPeriod\": \"Rolling Year\",\n            \"AbsencePlanTypeName\": \"Sickness\",\n            \"IsAccruable\": 0,\n            \"CarryOver\": null,\n            \"AccruedEntitlement\": null,\n            \"Adjustments\": null,\n            \"TotalEntitlement\": null,\n            \"TotalTaken\": \"0.00\",\n            \"TotalRemaining\": null,\n            \"UsersCanDownloadiCalendarFiles\": 1,\n            \"LineManagersCanManageSubordinatesAbsences\": 1,\n            \"EmployeesCanRequestAbsenceAndOvertime\": 1,\n            \"ApproverOverrideName\": null,\n            \"AllowOverbooking\": 1,\n            \"UsersMustEnterAbsenceReason\": 0,\n            \"UsersMustEnterAbsenceNotes\": 0,\n            \"HideDeletedAbsencesAndOvertimeAfter\": 30,\n            \"UserMustEnterOvertimeNotes\": 1,\n            \"AbsenceCanOverlapMandatoryCalendarEvents\": 0,\n            \"OpenEndedSickness\": 0,\n            \"HideTotalRemainingOnAbsenceRequest\": 0\n        }\n    ]\n}"}],"_postman_id":"f6433a04-6adb-07be-521f-f455f30d8de9"}],"id":"f814d2f5-4838-0fc7-dd33-f5d257f8165e","description":"<p>This API enables all information from the People Absence Plans search to be retrieved.</p>\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CFROWKEY</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonGUID_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>EmploymentGUID_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>Salutation_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>FirstName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>MiddleName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>FamilyName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>FamilyNamePrefix_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>KnownAs_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>LegalName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>EmployeeName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>FullName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>ActiveEmployee_Search</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>WorkNumber_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>MobileNumber_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>InternalEmail_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonCode_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>EmploymentID_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OrgUnitGUID_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OrgUnitName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PositionTitle_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>CompanyName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>LocationName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>CostCentreName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>JobName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>JobCode_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>IsManagerOfUnit_Search</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>CostCentreCode_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>HireDate_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OriginalHireDate_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>AbsenceTypeName</td>\n<td></td>\n</tr>\n<tr>\n<td>EffectiveFrom</td>\n<td></td>\n</tr>\n<tr>\n<td>EffectiveTo</td>\n<td></td>\n</tr>\n<tr>\n<td>TimeUnit</td>\n<td></td>\n</tr>\n<tr>\n<td>TakenPeriod</td>\n<td></td>\n</tr>\n<tr>\n<td>AbsencePlanTypeName</td>\n<td></td>\n</tr>\n<tr>\n<td>AbsenceCategoryCode</td>\n<td></td>\n</tr>\n<tr>\n<td>IsAccruable</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>EnableWorkingHoursTakenSummary</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>BookNonWorkingTime</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>CarryOver</td>\n<td></td>\n</tr>\n<tr>\n<td>AccruedEntitlement</td>\n<td></td>\n</tr>\n<tr>\n<td>Adjustments</td>\n<td></td>\n</tr>\n<tr>\n<td>TotalEntitlement</td>\n<td></td>\n</tr>\n<tr>\n<td>TotalTaken</td>\n<td></td>\n</tr>\n<tr>\n<td>TotalRemaining</td>\n<td></td>\n</tr>\n<tr>\n<td>UsersCanDownloadiCalendarFiles</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>LineManagersCanManageSubordinatesAbsences</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>EmployeesCanRequestAbsenceAndOvertime</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>ApproverOverrideName</td>\n<td></td>\n</tr>\n<tr>\n<td>AllowOverbooking</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>UsersMustEnterAbsenceReason</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>UsersMustEnterAbsenceNotes</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>HideDeletedAbsencesAndOvertimeAfter</td>\n<td></td>\n</tr>\n<tr>\n<td>UserMustEnterOvertimeNotes</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>AbsenceCanOverlapMandatoryCalendarEvents</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>OpenEndedSickness</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>HideTotalRemainingOnAbsenceRequest</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has read-only access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to their and all subordinate records.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to their own record.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"5e6ba49d-7a2c-45e6-8012-40994be6d36a","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"ad29f0ae-1358-46d0-b558-7879d79bafb8","type":"text/javascript","exec":[""]}}],"_postman_id":"f814d2f5-4838-0fc7-dd33-f5d257f8165e"},{"name":"Absence All Absences","item":[{"name":"List of all Employee Absences","id":"4143f1d4-7168-019a-e44e-75f9e403e9f7","request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/AbsenceAllAbsencesSearch?$format=json","description":"<p>This request will return a list of Employee Absences from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n<li>This API is limited to 2000 rows per call. If you are building a report or integration that requires more rows, you should use the Table-Based Absence APIs.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["AbsenceAllAbsencesSearch"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"a8326cbd-3554-89a0-5530-02869959b66d","name":"List of all Employee Absences","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/AbsenceAllAbsencesSearch?$format=json","host":["{{url}}"],"path":["AbsenceAllAbsencesSearch"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"6915","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","name":"Content-Type","description":""},{"key":"DataServiceVersion","value":"3.0;","name":"DataServiceVersion","description":""},{"key":"Date","value":"Thu, 18 Jan 2018 09:26:15 GMT","name":"Date","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"10FF1C8527C119F7CB4E7C4120B8992C37BA1C8AE5234A9C7292845F5BF38D235F1BB6B2EF2F3728FEB7A384928DF969505638D3077B989C224A35AD3FE86D663EBCCEECF12BB193FF45C084F261369A94F105CDE91537455E5B49C713A694D62D34D7A7888AD9B597BDD3246C7569B4C58B10C159A04F82DF9242075831F7E38CE8DEDD0EEAACDD6CF905FEA56D401CC4DB3789AF82193C78C9A4D6A124EB0BDE5B27B6C1663E44BDFDC68E369CC4FD3AE57BC82F41E15393895D53FCBF45BEF8EE38E5FAC9F414B14AF836AC55E69E37B3A04760F8929B12DD607AB5345FE24508BB570572B35BF0EE26ECE04E899FDAEA1A227AC0432679902DA7737F2B5B8C91E71F7F5A858689E6919028A38ADB","key":"CF_SID"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"-1","key":"CF_SLV"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"/1cGaxGPTBHcD8RBFPNm12FtDYLb3lMpw7XIBqrYFhv/PCOTAE7wxR40Odzc4CqCBqtAOZUr4ANdr0FCU5+yshc/OebxJq3yb+4ZnDyqpu6AwS+bVPF+pa/xxdPnk2Wb9Paf0Dv+yZV/0G7/d6kslgWPqvC6vBmhi0lGAwQ6OUY=","key":"__RequestVerificationToken_L0NlemFubmVPbkRlbWFuZA__"}],"responseTime":"13089","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#AbsenceAllAbsencesSearch\",\n    \"value\": [\n        {\n            \"CFROWKEY\": \"0006BA63-F5DB-4592-848A-FB114A3D2085_2BE08485-B4B6-4DBF-A0C5-78915A1AFBB6_CEZ30\",\n            \"AbsenceEventEffectiveFrom\": \"2007-06-05T00:00:00\",\n            \"AbsenceEventEffectiveTo\": \"2007-06-05T00:00:00\",\n            \"AbsenceEventComments\": null,\n            \"AbsenceEventSubmittedOn\": null,\n            \"AbsenceEventRepliedOn\": null,\n            \"AbsenceEventTotalWorkingHours\": \"7.50\",\n            \"AbsenceEventInsertUser\": \"cheryl.abrahams@omnicrom.com\",\n            \"AbsenceEventLastModifiedUser\": \"* cheryl.abrahams@omnicrom.com\",\n            \"AbsenceEventLastModifiedDate\": \"2016-10-13T14:21:05.057\",\n            \"DueDate\": null,\n            \"ChildsDateofBirth\": null,\n            \"DateNotifiedOfPregnancy\": null,\n            \"DateNotifiedOfPaternity\": null,\n            \"EntitledToSMP\": 0,\n            \"EntitledToSPP\": 0,\n            \"DateNotifiedOfSMP\": null,\n            \"DateNotifiedOfSPP\": null,\n            \"MatchingDate\": null,\n            \"DateNotifiedOfAdoption\": null,\n            \"EntitledToSAP\": 0,\n            \"PlacementDate\": null,\n            \"SAPStartDate\": null,\n            \"DateNotifiedOfParentalLeave\": null,\n            \"EntitledToParentalLeave\": 0,\n            \"CommencedAtWork\": 0,\n            \"RelatedToAnIncident\": 0,\n            \"SelfCertificationRequired\": 0,\n            \"SelfCertificationRecieved\": 0,\n            \"SelfCertificationRecievedOn\": null,\n            \"MedicalExaminerConsulted\": 0,\n            \"FitNoteRequired\": 0,\n            \"FitNoteRecieved\": 0,\n            \"FitNoteRecievedOn\": null,\n            \"FitNoteExpires\": null,\n            \"FitNoteDateRecordEntered\": null,\n            \"ScheduledCheckupCall\": null,\n            \"BackToWorkInterviewRequired\": 0,\n            \"InterviewDate\": null,\n            \"InterviewComments\": null,\n            \"FullName\": \"Nancy Hoskins\",\n            \"ApproverEmail\": null,\n            \"Approver\": null,\n            \"AbsencePlanTypeName\": \"Vacaciones\",\n            \"AbsenceTypeName\": \"Holiday\",\n            \"TimeUnits\": \"Days\",\n            \"AbsenceStatus\": \"Draft\",\n            \"AbsenceCategory\": \"Holiday\",\n            \"AbsenceReason\": \"Holiday\",\n            \"TotalWorkingTimeTakenByTimeUnit\": \"1.00\",\n            \"TotalByTimeUnit\": \"1.00\",\n            \"KITDaysTaken\": 0,\n            \"CommencesCode\": \"S\",\n            \"MaximumKITDays\": null,\n            \"KITDaysRemaining\": null,\n            \"PaternityNoLaterThanWeeksToEWC\": null,\n            \"FinishesCode\": \"E\",\n            \"PaternityNoLaterThan\": null,\n            \"MaternityNoLaterThanWeeksToEWC\": null,\n            \"TotalDays\": \"1.00\",\n            \"MaternityNoLaterThan\": null,\n            \"Commences\": \"Start of Day\",\n            \"MaternityNoEarlierThanWeeksToEWC\": null,\n            \"Finishes\": \"End of Day\",\n            \"EWCDate\": null,\n            \"MaternityNoEarlierThanDate\": null,\n            \"SMPQualifyingDate\": null,\n            \"QualifyingWeeksToEWC\": null,\n            \"QualifyingWeekLaterThan\": null,\n            \"SPPQualifyingDate\": null,\n            \"ReturnDateNoEarlierThan\": null,\n            \"CompulsoryEntitlement\": null,\n            \"OMLReturnToWorkDate\": null,\n            \"AMLReturnToWorkDate\": null,\n            \"OrdinaryMaternityLeave\": null,\n            \"TotalMaternityLeave\": null,\n            \"SMPNoLaterThanWeeksLimit\": null,\n            \"SMPNoLaterThan\": null,\n            \"HigherSMPStartDate\": \"2007-06-05T00:00:00\",\n            \"RiskAssessmentPerformed\": 0,\n            \"PaternityLeaveNoEarlierThanWeeksToEWC\": null,\n            \"PaternityLeaveNoEarlierThan\": null,\n            \"HigherSMPEndDate\": null,\n            \"LowerSMPStartDate\": null,\n            \"LowerSMPEndDate\": null,\n            \"PaternityLeaveEndDateWeeksFromEWCCBD\": null,\n            \"PaternityLeaveEndDate\": null,\n            \"NotifiedOfSPPNoLaterThanWeeksNotice\": null,\n            \"NotifiedOfSPPNoLaterThan\": null,\n            \"OrdinaryPaternityLeave\": null,\n            \"OrdinaryPaternityLeaveReturnToWorkDate\": null,\n            \"NotifyOfAdoptionNoLaterThanWeeksAfterMatchingDate\": null,\n            \"NotifyOfAdoptionNoLaterThan\": null,\n            \"SALStartDateNoLaterThanWeeksNotice\": null,\n            \"SALStartDateNoLaterThan\": null,\n            \"MatchingWeekStartDateSunday\": null,\n            \"AdoptionLeaveStartDateNoLaterThan\": null,\n            \"OrdinarySAPLeave\": null,\n            \"TotalSAPLeave\": null,\n            \"OALReturnToWorkDate\": null,\n            \"AALReturnToWorkDate\": null,\n            \"SAPEndDate\": null,\n            \"ParentalLeaveStartDateNoEarlierThan\": null,\n            \"DependantChild\": null,\n            \"ReferenceNumber\": null,\n            \"InterviewConductedBy\": null,\n            \"TotalTimeTakenForChild\": null,\n            \"NotFitForWork\": 0,\n            \"MayBeFitForWork\": 0,\n            \"FitNoteDetails\": null,\n            \"AbsenceEventInsertDate\": \"2013-01-30T10:12:35.78\",\n            \"SickPay\": 0,\n            \"DoNotPay\": 0,\n            \"IsPiw\": 0,\n            \"OverrideAverageWeeklyEarnings\": 0,\n            \"AverageWeeklyEarnings\": null,\n            \"ContainsPaidDetail\": 0,\n            \"PersonGUID\": \"b55ef9d9-0fb7-48a5-b83a-49fa79eab5d2\",\n            \"EmploymentGUID_Search\": \"f33f7332-6495-4503-9df9-922583b5f868\",\n            \"Salutation_Search\": \"Mrs.\",\n            \"FirstName_Search\": \"Nancy\",\n            \"MiddleName_Search\": \"Mildred\",\n            \"FamilyName_Search\": \"Hoskins\",\n            \"FamilyNamePrefix_Search\": null,\n            \"KnownAs_Search\": \"Nancy\",\n            \"LegalName_Search\": \"Nancy Mildred Hoskins\",\n            \"EmployeeName_Search\": \"Hoskins, Nancy\",\n            \"FullName_Search\": \"Nancy Hoskins\",\n            \"CountryOfBirth_Search\": \"United Kingdom\",\n            \"DateOfBirth_Search\": \"1966-01-10T00:00:00\",\n            \"Age_Search\": 52,\n            \"PrimaryLanguage_Search\": null,\n            \"Nationality_Search\": null,\n            \"Gender_Search\": \"Female\",\n            \"GenderCode_Search\": \"F\",\n            \"CountryOfResidence_Search\": null,\n            \"ActiveEmployee_Search\": 1,\n            \"PrimaryEmployment_Search\": 1,\n            \"ContractTerm_Search\": \"Full Time\",\n            \"ContractName_Search\": \"Standard\",\n            \"FTERatio_Search\": \"0.800\",\n            \"WorkNumber_Search\": null,\n            \"MobileNumber_Search\": null,\n            \"HomeNumber_Search\": null,\n            \"OtherNumber_Search\": null,\n            \"PersonalMobileNumber_Search\": null,\n            \"InternalEmail_Search\": null,\n            \"ExternalEmail_Search\": null,\n            \"PersonGrade_Search\": \"Internal 03\",\n            \"JobGrade_Search\": \"Internal 03\",\n            \"ManagerOfOrgUnitPersonGUID_Search\": \"c4515a9f-6c42-4122-848c-bbc982cf8aa0\",\n            \"OrgUnitManager_Search\": \"Mark Hendrick\",\n            \"ManagerOfOrgUnitPersonCode_Search\": \"CEZ25\",\n            \"SupervisorPersonGUID_Search\": \"3feffcb3-a6a4-44b3-ac22-9cb869c5547c\",\n            \"Supervisor_Search\": \"Mark Hendrick\",\n            \"SupervisorPersonCode_Search\": \"CEZ25\",\n            \"PersonCode_Search\": \"CEZ30\",\n            \"EmploymentID_Search\": \"EMP0028\",\n            \"OrgUnitGUID_Search\": \"c7bdb30b-dc0b-4a97-9078-d6a3416dfdc2\",\n            \"OrgUnitName_Search\": \"UK Sales\",\n            \"OrgUnitCode_Search\": \"UK\",\n            \"PositionTitle_Search\": \"UK Sales Consultant\",\n            \"CompanyName_Search\": \"Omnicrom UK\",\n            \"LocationName_Search\": \"London Sales Office\",\n            \"CostCentreName_Search\": \"OM021 - UK Sales\",\n            \"JobName_Search\": \"Sales Consultant\",\n            \"JobDeploymentEffectiveFrom_Search\": \"2007-01-01T00:00:00\",\n            \"JobDeploymentEffectiveTo_Search\": \"2999-12-31T00:00:00\",\n            \"PrimaryJob_Search\": 1,\n            \"JobCode_Search\": \"SALCON\",\n            \"JobDeploymentReason_Search\": \"New Hire\",\n            \"PrimaryPersonGrade_Search\": 1,\n            \"PersonGradeEffectiveFrom_Search\": \"2007-01-01T00:00:00\",\n            \"PersonGradeEffectiveTo_Search\": \"2999-12-31T00:00:00\",\n            \"PersonGradeCode_Search\": \"INT03\",\n            \"PersonGradeGroup_Search\": \"Internal\",\n            \"PersonGradeDeploymentReason_Search\": \"New Hire\",\n            \"HireDate_Search\": \"2007-01-01T00:00:00\",\n            \"AdjustedHireDate_Search\": null,\n            \"EmploymentReason_Search\": \"New Starter\",\n            \"LengthOfService_Search\": \"11.00\",\n            \"LengthOfServiceYears_Search\": 11,\n            \"LengthOfServiceMonths_Search\": 0,\n            \"OriginalHireDate_Search\": \"2007-01-01T00:00:00\",\n            \"ContinuousService_Search\": \"11.00\",\n            \"HiringComments_Search\": \"\",\n            \"ProbationPeriodTo_Search\": \"2007-04-01T00:00:00\",\n            \"ProbationPeriodExtendedTo_Search\": null,\n            \"ProbationStatus_Search\": \"Not Under Probation\",\n            \"NoticePeriod_Search\": 4,\n            \"TerminationDate_Search\": \"2999-12-31T00:00:00\",\n            \"TerminationReason_Search\": null,\n            \"NoticeGivenDate_Search\": null,\n            \"IntendedRetirementDate_Search\": null,\n            \"LastWorkedDate_Search\": null,\n            \"LastPaidDate_Search\": null,\n            \"TerminationComments_Search\": null,\n            \"PrimaryDeployment_Search\": 1,\n            \"DeploymentEffectiveFrom_Search\": \"2007-01-01T00:00:00\",\n            \"DeploymentEffectiveTo_Search\": \"2999-12-31T00:00:00\",\n            \"IsManagerOfUnit_Search\": 0,\n            \"IsSupervisor_Search\": 0,\n            \"DeploymentReason_Search\": \"New Hire\",\n            \"PrimaryLocation_Search\": 1,\n            \"LocationEffectiveFrom_Search\": \"2007-01-01T00:00:00\",\n            \"LocationEffectiveTo_Search\": \"2999-12-31T00:00:00\",\n            \"LocationDeploymentReason_Search\": \"New Hire\",\n            \"PrimaryCostCentre_Search\": 1,\n            \"CostCentreEffectiveFrom_Search\": \"2007-01-01T00:00:00\",\n            \"CostCentreEffectiveTo_Search\": \"2999-12-31T00:00:00\",\n            \"CostCentreCode_Search\": \"OM021\",\n            \"CostCentreDeploymentReason_Search\": \"New Hire\",\n            \"EmpWorkTimePatternEffectiveFrom_Search\": \"2012-01-01T00:00:00\",\n            \"EmpWorkTimePatternEffectiveTo_Search\": \"2999-12-31T00:00:00\",\n            \"EmpWorkTimePatternName_Search\": \"Part Time 80% (Mon-Thu)\",\n            \"OrgUnitArea_Search\": \"Sales\",\n            \"OrgUnitType_Search\": \"Business Unit\",\n            \"PersonPronouns\": \"she/her\"\n        }\n    ]\n}"}],"_postman_id":"4143f1d4-7168-019a-e44e-75f9e403e9f7"}],"id":"3e0a84b6-775e-6403-d0fa-2110b7466f24","description":"<p>This API enables all information from the Absence All Absences search to be retrieved.</p>\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CFROWKEY</td>\n<td></td>\n</tr>\n<tr>\n<td>AbsenceEventEffectiveFrom</td>\n<td></td>\n</tr>\n<tr>\n<td>AbsenceEventEffectiveTo</td>\n<td></td>\n</tr>\n<tr>\n<td>AbsenceEventComments</td>\n<td></td>\n</tr>\n<tr>\n<td>AbsenceEventSubmittedOn</td>\n<td></td>\n</tr>\n<tr>\n<td>AbsenceEventRepliedOn</td>\n<td></td>\n</tr>\n<tr>\n<td>AbsenceEventTotalWorkingHours</td>\n<td></td>\n</tr>\n<tr>\n<td>AbsenceEventInsertUser</td>\n<td></td>\n</tr>\n<tr>\n<td>AbsenceEventLastModifiedUser</td>\n<td></td>\n</tr>\n<tr>\n<td>AbsenceEventLastModifiedDate</td>\n<td></td>\n</tr>\n<tr>\n<td>DueDate</td>\n<td></td>\n</tr>\n<tr>\n<td>ChildsDateofBirth</td>\n<td></td>\n</tr>\n<tr>\n<td>DateNotifiedOfPregnancy</td>\n<td></td>\n</tr>\n<tr>\n<td>DateNotifiedOfPaternity</td>\n<td></td>\n</tr>\n<tr>\n<td>EntitledToSMP</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>EntitledToSPP</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>DateNotifiedOfSMP</td>\n<td></td>\n</tr>\n<tr>\n<td>DateNotifiedOfSPP</td>\n<td></td>\n</tr>\n<tr>\n<td>MatchingDate</td>\n<td></td>\n</tr>\n<tr>\n<td>DateNotifiedOfAdoption</td>\n<td></td>\n</tr>\n<tr>\n<td>EntitledToSAP</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>PlacementDate</td>\n<td></td>\n</tr>\n<tr>\n<td>SAPStartDate</td>\n<td></td>\n</tr>\n<tr>\n<td>DateNotifiedOfParentalLeave</td>\n<td></td>\n</tr>\n<tr>\n<td>EntitledToParentalLeave</td>\n<td></td>\n</tr>\n<tr>\n<td>CommencedAtWork</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>RelatedToAnIncident</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>SelfCertificationRequired</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>SelfCertificationReceived</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>SelfCertificationRecievedOn</td>\n<td></td>\n</tr>\n<tr>\n<td>MedicaExaminerConsulted</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>FitNoteRequired</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>FitNoteReceived</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>FitNoteReceivedOn</td>\n<td></td>\n</tr>\n<tr>\n<td>FitNoteExpires</td>\n<td></td>\n</tr>\n<tr>\n<td>FitNoteDateRecordEntered</td>\n<td></td>\n</tr>\n<tr>\n<td>ScheduledCheckupCall</td>\n<td></td>\n</tr>\n<tr>\n<td>BackToWorkInterviewRequired</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>InterviewDate</td>\n<td></td>\n</tr>\n<tr>\n<td>InterviewComments</td>\n<td></td>\n</tr>\n<tr>\n<td>FullName</td>\n<td></td>\n</tr>\n<tr>\n<td>ApproverEmail</td>\n<td></td>\n</tr>\n<tr>\n<td>Approver</td>\n<td></td>\n</tr>\n<tr>\n<td>AbsencePlanTypeName</td>\n<td></td>\n</tr>\n<tr>\n<td>AbsenceTypeName</td>\n<td></td>\n</tr>\n<tr>\n<td>TimeUnits</td>\n<td></td>\n</tr>\n<tr>\n<td>AbsenceStatus</td>\n<td></td>\n</tr>\n<tr>\n<td>AbsenceCategory</td>\n<td></td>\n</tr>\n<tr>\n<td>AbsenceReason</td>\n<td></td>\n</tr>\n<tr>\n<td>TotalWorkingTimeTakenByTimeUnit</td>\n<td></td>\n</tr>\n<tr>\n<td>TotalByTimeUnit</td>\n<td></td>\n</tr>\n<tr>\n<td>KITDaysTaken</td>\n<td></td>\n</tr>\n<tr>\n<td>CommencesCode</td>\n<td></td>\n</tr>\n<tr>\n<td>MaximumKITDays</td>\n<td></td>\n</tr>\n<tr>\n<td>KITDaysRemaining</td>\n<td></td>\n</tr>\n<tr>\n<td>PaternityNoLaterThanWeeksToEWC</td>\n<td></td>\n</tr>\n<tr>\n<td>FinishesCode</td>\n<td></td>\n</tr>\n<tr>\n<td>PaternityNoLaterThan</td>\n<td></td>\n</tr>\n<tr>\n<td>MaternityNoLaterThanWeeksToEWC</td>\n<td></td>\n</tr>\n<tr>\n<td>TotalDays</td>\n<td></td>\n</tr>\n<tr>\n<td>MaternityNoLaterThan</td>\n<td></td>\n</tr>\n<tr>\n<td>Commences</td>\n<td></td>\n</tr>\n<tr>\n<td>MaternityNoEarlierThanWeeksToEWC</td>\n<td></td>\n</tr>\n<tr>\n<td>Finishes</td>\n<td></td>\n</tr>\n<tr>\n<td>EWCDate</td>\n<td></td>\n</tr>\n<tr>\n<td>MaternityNoEarlierThanDate</td>\n<td></td>\n</tr>\n<tr>\n<td>SMPQualifyingDate</td>\n<td></td>\n</tr>\n<tr>\n<td>QualifyingWeeksToEWC</td>\n<td></td>\n</tr>\n<tr>\n<td>QualifyingWeekLaterThan</td>\n<td></td>\n</tr>\n<tr>\n<td>SPPQualifyingDate</td>\n<td></td>\n</tr>\n<tr>\n<td>ReturnDateNoEarlierThan</td>\n<td></td>\n</tr>\n<tr>\n<td>CompulsoryEntitlement</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>OMLReturnToWorkDate</td>\n<td></td>\n</tr>\n<tr>\n<td>AMLReturnToWorkDate</td>\n<td></td>\n</tr>\n<tr>\n<td>OrdinaryMaternityLeave</td>\n<td></td>\n</tr>\n<tr>\n<td>TotalMaternityLeave</td>\n<td></td>\n</tr>\n<tr>\n<td>SMPNoLaterThanWeeksLimit</td>\n<td></td>\n</tr>\n<tr>\n<td>SMPNoLaterThan</td>\n<td></td>\n</tr>\n<tr>\n<td>HigherSMPStartDate</td>\n<td></td>\n</tr>\n<tr>\n<td>RiskAssessmentPerformed</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>PaternityLeaveNoEarlierThanWeeksToEWC</td>\n<td></td>\n</tr>\n<tr>\n<td>PaternityLeaveNoEarlierThan</td>\n<td></td>\n</tr>\n<tr>\n<td>HigherSMPEndDate</td>\n<td></td>\n</tr>\n<tr>\n<td>LowerSMPStartDate</td>\n<td></td>\n</tr>\n<tr>\n<td>LowerSMPEndDate</td>\n<td></td>\n</tr>\n<tr>\n<td>PaternityLeaveEndDateWeeksFromEWCCBD</td>\n<td></td>\n</tr>\n<tr>\n<td>PaternityLeaveEndDate</td>\n<td></td>\n</tr>\n<tr>\n<td>NotifiedOfSPPNoLaterThanWeeksNotice</td>\n<td></td>\n</tr>\n<tr>\n<td>NotifiedOfSPPNoLaterThan</td>\n<td></td>\n</tr>\n<tr>\n<td>OrdinaryPaternityLeave</td>\n<td></td>\n</tr>\n<tr>\n<td>OrdinaryPaternityLeaveReturnToWorkDate</td>\n<td></td>\n</tr>\n<tr>\n<td>NotifyOfAdoptionNoLaterThanWeeksAfterMatchingDate</td>\n<td></td>\n</tr>\n<tr>\n<td>NotifyOfAdoptionNoLaterThan</td>\n<td></td>\n</tr>\n<tr>\n<td>SALStartDateNoLaterWeeksNotice</td>\n<td></td>\n</tr>\n<tr>\n<td>SALStartDateNoLaterThan</td>\n<td></td>\n</tr>\n<tr>\n<td>MatchingWeekStartDateSunday</td>\n<td></td>\n</tr>\n<tr>\n<td>AdoptionLeaveStartDateNoLaterThan</td>\n<td></td>\n</tr>\n<tr>\n<td>OrdinarySAPLeave</td>\n<td></td>\n</tr>\n<tr>\n<td>TotalSAPLeave</td>\n<td></td>\n</tr>\n<tr>\n<td>OALReturnToWorkDate</td>\n<td></td>\n</tr>\n<tr>\n<td>AALReturnToWorkDate</td>\n<td></td>\n</tr>\n<tr>\n<td>SAPEndDate</td>\n<td></td>\n</tr>\n<tr>\n<td>ParentalLeaveStartDateNoEarlierThan</td>\n<td></td>\n</tr>\n<tr>\n<td>DependantChild</td>\n<td></td>\n</tr>\n<tr>\n<td>ReferenceNumber</td>\n<td></td>\n</tr>\n<tr>\n<td>InterviewConductedBy</td>\n<td></td>\n</tr>\n<tr>\n<td>TotalTimeTakenForChild</td>\n<td></td>\n</tr>\n<tr>\n<td>NotFitForWork</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>MayBeFitForWork</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>FitNoteDetails</td>\n<td></td>\n</tr>\n<tr>\n<td>AbsenceEventInsertDate</td>\n<td></td>\n</tr>\n<tr>\n<td>SickPay</td>\n<td></td>\n</tr>\n<tr>\n<td>DoNotPay</td>\n<td></td>\n</tr>\n<tr>\n<td>IsPiw</td>\n<td></td>\n</tr>\n<tr>\n<td>OverrideAverageWeeklyEarnings</td>\n<td></td>\n</tr>\n<tr>\n<td>AverageWeeklyEarnings</td>\n<td></td>\n</tr>\n<tr>\n<td>ContainsPaidDetail</td>\n<td></td>\n</tr>\n<tr>\n<td>ExcludeFromBradfordFactor</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonGUID</td>\n<td></td>\n</tr>\n<tr>\n<td>EmploymentGUID_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>Salutation_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>FirstName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>MiddleName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>FamilyName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>FamilyNamePrefix_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>KnownAs_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>LegalName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>EmployeeName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>FullName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>CountryOfBirth_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>DateOfBirth_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>Age_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PrimaryLanguage_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>Nationality_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>Gender_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>GenderCode_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>CountryOfResidence_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>ActiveEmployee_Search</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>PrimaryEmployment_Search</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>ContractTerm_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>ContractName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>FTERatio_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>WorkNumber_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>MobileNumber_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>HomeNumber_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OtherNumber_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonalMobileNumber_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>InternalEmail_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>ExternalEmail_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonGrade_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>JobGrade_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>ManagerOfOrgUnitPersonGUID_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OrgUnitManager_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>ManagerOfOrgUnitPersonCode_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>SupervisorPersonGUID_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>Supervisor_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>SupervisorPersonCode_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonCode_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>EmploymentID_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OrgUnitGUID_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OrgUnitName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OrgUnitCode_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PositionTitle_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>CompanyName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>LocationName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>CostCentreName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>JobName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>JobDeploymentEffectiveFrom_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>JobDeploymentEffectiveTo_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PrimaryJob_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>JobCode_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>JobDeploymentReason_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PrimaryPersonGrade_Search</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>PersonGradeEffectiveFrom_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonGradeEffectiveTo_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonGradeCode_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonGradeGroup_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonGradeDeploymentReason_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>HireDate_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>AdjustedHireDate_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>EmploymentReason_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>LengthOfService_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>LengthOfServiceYears_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>LengthOfServiceMonths_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OriginalHireDate_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>ContinuousService_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>HiringComments_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>ProbationPeriodTo_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>ProbationPeriodExtendedTo_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>ProbationStatus_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>NoticePeriod_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>TerminationDate_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>TerminationReason_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>NoticeGivenDate_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>IntendedRetirementDate_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>LastWorkedDate_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>LastPaidDate_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>TerminationComments_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PrimaryDeployment_Search</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>DeploymentEffectiveFrom_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>DeploymentEffectiveTo_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>IsManagerOfUnit_Search</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>IsSupervisor_Search</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>DeploymentReason_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PrimaryLocation_Search</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>LocationEffectiveFrom_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>LocationEffectiveTo_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>LocationDeploymentReason_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PrimaryCostCentre_Search</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>CostCentreEffectiveFrom_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>CostCentreEffectiveTo_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>CostCentreCode_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>CostCentreDeploymentReason_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>EmpWorkTimePatternEffectiveFrom_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>EmpWorkTimePatternEffectiveTo_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>EmpWorkTimePatternName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OrgUnitArea_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OrgUnitType_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonPronouns_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>BusinessTitle_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>BirthYear_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>BirthMonth_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>AdjustedHireDateYear_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>HireDateYear_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OriginalHireDateYear_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>AdjustedHireDateMonth_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>HireDateMonth_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OriginalHireDateMonth_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>EthnicOrigin_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>Race_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>ImportKey_Search</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has read-only access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to their and all subordinate records.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to their own record.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"5cc2a603-a265-44fa-ac23-2c10b27a5078","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"3a0aa6f7-217c-425e-b084-6e0cb1b94a95","type":"text/javascript","exec":[""]}}],"_postman_id":"3e0a84b6-775e-6403-d0fa-2110b7466f24"},{"name":"Absence Calendar Events Search","item":[{"name":"List of Absence Calendar Compulsory Events","id":"12212497-4f8f-4e44-86ef-c81891150c31","request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/AbsenceCalendarEventsSearch?$format=json","description":"<p>This request will return a list of Absence Calendar Compulsory Events from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n<li>This API is limited to 2000 rows per call.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["AbsenceCalendarEventsSearch"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[],"_postman_id":"12212497-4f8f-4e44-86ef-c81891150c31"}],"id":"5282c9f2-19e4-47ef-89e1-8f0883ab8754","description":"<p>This API enables all information about an Absence Calendar's Compulsory Events to be retrieved.</p>\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CFROWKEY</td>\n<td></td>\n</tr>\n<tr>\n<td>AbsenceCalendar</td>\n<td></td>\n</tr>\n<tr>\n<td>AbsenceCalendarDescription</td>\n<td></td>\n</tr>\n<tr>\n<td>EffectiveFrom</td>\n<td></td>\n</tr>\n<tr>\n<td>EffectiveTo</td>\n<td></td>\n</tr>\n<tr>\n<td>Duration</td>\n<td></td>\n</tr>\n<tr>\n<td>AbsenceType</td>\n<td></td>\n</tr>\n<tr>\n<td>AbsenceReason</td>\n<td></td>\n</tr>\n<tr>\n<td>Commences</td>\n<td></td>\n</tr>\n<tr>\n<td>Finishes</td>\n<td></td>\n</tr>\n<tr>\n<td>TranslatedAbsenceCalendarName</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has read-only access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to their and all subordinate records.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to their own record.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"39608217-2828-409c-a5ef-f793bbb0b10b","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"ed932560-e60a-4772-ba66-28ac8bb3bd4e","type":"text/javascript","exec":[""]}}],"_postman_id":"5282c9f2-19e4-47ef-89e1-8f0883ab8754"},{"name":"Absence Calendar Holiday Search","item":[{"name":"List of Absence Calendar Bank Holidays","id":"40b091fd-25e5-4513-b913-fd15adab56c9","request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/AbsenceCalendarHolidaySearch?$format=json","description":"<p>This request will return a list of Absence Calendar Bank Holidays from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n<li>This API is limited to 2000 rows per call.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["AbsenceCalendarHolidaySearch"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[],"_postman_id":"40b091fd-25e5-4513-b913-fd15adab56c9"}],"id":"19fa47c0-40e8-4efd-91db-646433cc230b","description":"<p>This API enables all information about an Absence Calendar's Bank Holidays to be retrieved.</p>\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CFROWKEY</td>\n<td></td>\n</tr>\n<tr>\n<td>AbsenceCalendar</td>\n<td></td>\n</tr>\n<tr>\n<td>AbsenceCalendarDescription</td>\n<td></td>\n</tr>\n<tr>\n<td>Date</td>\n<td></td>\n</tr>\n<tr>\n<td>AbsenceType</td>\n<td></td>\n</tr>\n<tr>\n<td>AbsenceReason</td>\n<td></td>\n</tr>\n<tr>\n<td>DayPart</td>\n<td></td>\n</tr>\n<tr>\n<td>TranslatedAbsenceCalendarName</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has read-only access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to their and all subordinate records.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to their own record.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"11e7ec86-68d7-44ed-ad53-19ef342dee44","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"a2263d10-9e03-46fe-a678-eaaf1c0fa7b8","type":"text/javascript","exec":[""]}}],"_postman_id":"19fa47c0-40e8-4efd-91db-646433cc230b"}],"id":"7c7ccb34-2c50-5511-4aed-47b09280fbbf","_postman_id":"7c7ccb34-2c50-5511-4aed-47b09280fbbf","description":""},{"name":"Timesheets","item":[{"name":"Timesheet and Absence","item":[{"name":"List of all Employee Timesheet and Absence Details","id":"4c98321f-30e8-3735-9b5c-21676522480d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"clientSecret":"<client-secret>","clientId":"<client-id>","accessToken":"<access-token>","tokenType":"<token-type>","challengeAlgorithm":"<challenge-algorithm>","scope":"<scope>","grant_type":"<grant_type>","client_authentication":"<client_authentication>","accessTokenUrl":"<access-token-url>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/TimesheetAndAbsenceDetailSearch?$format=json","description":"<p>This request will return a list of Employee Timesheet and Absence Details from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n<li>This API is limited to 2000 rows per call.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["TimesheetAndAbsenceDetailSearch"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"c39e27f2-7c71-4d2a-8b1f-96a59ad2de19","name":"List of all Employee Timesheet and Absence Details","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/TimesheetAndAbsenceDetailSearch?$format=json","host":["{{url}}"],"path":["TimesheetAndAbsenceDetailSearch"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Aug 2022 17:53:22 GMT"},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8"},{"key":"Content-Length","value":"1597"},{"key":"Connection","value":"keep-alive"},{"key":"Set-Cookie","value":"AWSALB=aeMTc9q6vqXbL3LPzCdtZHftlL6YIvQTpToY9dsf9bC/aV3f3rpBp7x+qji3sTvxNJkfY8yWfR1yBIVU1pn/GrJbXsKzS4jdW5pAZKYTy7dcpDc41p4goYNSW6Re; Expires=Tue, 30 Aug 2022 17:53:22 GMT; Path=/"},{"key":"Set-Cookie","value":"AWSALBCORS=aeMTc9q6vqXbL3LPzCdtZHftlL6YIvQTpToY9dsf9bC/aV3f3rpBp7x+qji3sTvxNJkfY8yWfR1yBIVU1pn/GrJbXsKzS4jdW5pAZKYTy7dcpDc41p4goYNSW6Re; Expires=Tue, 30 Aug 2022 17:53:22 GMT; Path=/; SameSite=None; Secure"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"DataServiceVersion","value":"3.0;"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#TimesheetAndAbsenceDetailSearch\",\n    \"value\": [\n        {\n            \"CFROWKEY\": \"55J5072F-9A95-4DDB-922D-4456C332212C\",\n            \"PersonGUID_Search\": \"99bcfbb1-c67c-439d-9ea2-4724c665c080\",\n            \"EmploymentGUID_Search\": null,\n            \"Salutation_Search\": \"Mr.\",\n            \"FirstName_Search\": \"Curtis\",\n            \"MiddleName_Search\": null,\n            \"FamilyName_Search\": \"Alexander\",\n            \"FamilyNamePrefix_Search\": null,\n            \"KnownAs_Search\": \"Curtis\",\n            \"LegalName_Search\": \"Curtis Alexander\",\n            \"EmployeeName_Search\": \"Alexander, Curtis\",\n            \"FullName_Search\": \"Curtis Alexander\",\n            \"ActiveEmployee_Search\": 0,\n            \"WorkNumber_Search\": null,\n            \"MobileNumber_Search\": null,\n            \"InternalEmail_Search\": null,\n            \"PersonCode_Search\": \"71\",\n            \"EmploymentID_Search\": null,\n            \"OrgUnitGUID_Search\": \"c75a55ba-8291-4f68-9705-0ba4881e4421\",\n            \"OrgUnitName_Search\": \"Administration\",\n            \"PositionTitle_Search\": \"Admin Assistant\",\n            \"CompanyName_Search\": null,\n            \"LocationName_Search\": null,\n            \"CostCentreName_Search\": null,\n            \"JobName_Search\": null,\n            \"JobCode_Search\": null,\n            \"IsManagerOfUnit_Search\": 0,\n            \"CostCentreCode_Search\": null,\n            \"HireDate_Search\": null,\n            \"OriginalHireDate_Search\": null,\n            \"TimesheetStatusDate\": \"2021-08-21T05:59:52.927Z\",\n            \"Date\": \"2017-08-01T00:00:00\",\n            \"StartTime\": null,\n            \"EndTime\": null,\n            \"Comments\": \"Approved by Manager\",\n            \"StandardHours\": null,\n            \"NonStandardHours\": \"12.00\",\n            \"AbsenceHours\": null,\n            \"ScheduledHours\": null,\n            \"Plan\": \"Timesheet Plan UK\",\n            \"Status\": \"Approved\",\n            \"ProjectGUID\": \"448e80ab-6281-4b7e-ab1b-4c42e5df9e24\",\n            \"ProjectCode\": \"ABC Website Redesign\",\n            \"ProjectName\": \"ABC Website Redesign\",\n            \"ActivityOrAbsenceReason\": \"Client Meeting\",\n            \"ActivityType\": \"Client Meeting\",\n            \"Type\": \"Standard Work Time\",\n            \"ExcludedFromTimesheet\": 0\n        }\n    ]\n}"}],"_postman_id":"4c98321f-30e8-3735-9b5c-21676522480d"}],"id":"9ed8185e-eab5-29a8-4f4e-7f53531bae00","description":"<p>This API enables all information from the Timesheet and Absence Details search to be retrieved.</p>\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CFROWKEY</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonGUID_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>EmploymentGUID_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>Salutation_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>FirstName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>MiddleName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>FamilyName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>FamilyNamePrefix_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>KnownAs_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>LegalName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>EmployeeName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>FullName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>ActiveEmployee_Search</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>WorkNumber_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>MobileNumber_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>InternalEmail_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonCode_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>EmploymentID_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OrgUnitGUID_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OrgUnitName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PositionTitle_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>CompanyName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>LocationName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>CostCentreName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>JobName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>JobCode_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>IsManagerOfUnit_Search</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>CostCentreCode_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>HireDate_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OriginalHireDate_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>TimesheetStatusDate</td>\n<td></td>\n</tr>\n<tr>\n<td>Date</td>\n<td></td>\n</tr>\n<tr>\n<td>StartTime</td>\n<td></td>\n</tr>\n<tr>\n<td>EndTime</td>\n<td></td>\n</tr>\n<tr>\n<td>Comments</td>\n<td></td>\n</tr>\n<tr>\n<td>StandardHours</td>\n<td></td>\n</tr>\n<tr>\n<td>NonStandardHours</td>\n<td></td>\n</tr>\n<tr>\n<td>AbsenceHours</td>\n<td></td>\n</tr>\n<tr>\n<td>ScheduledHours</td>\n<td></td>\n</tr>\n<tr>\n<td>Plan</td>\n<td></td>\n</tr>\n<tr>\n<td>Status</td>\n<td></td>\n</tr>\n<tr>\n<td>ProjectGUID</td>\n<td></td>\n</tr>\n<tr>\n<td>ProjectCode</td>\n<td></td>\n</tr>\n<tr>\n<td>ProjectName</td>\n<td></td>\n</tr>\n<tr>\n<td>ActivityOrAbsenceReason</td>\n<td></td>\n</tr>\n<tr>\n<td>ActivityType</td>\n<td></td>\n</tr>\n<tr>\n<td>Type</td>\n<td></td>\n</tr>\n<tr>\n<td>ExcludedFromTimesheet</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>Ticked</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"72ff0a30-c574-456f-961a-7957110cd32b","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"f6b6f082-e4f3-4416-91bc-d5754bb92767","type":"text/javascript","exec":[""]}}],"_postman_id":"9ed8185e-eab5-29a8-4f4e-7f53531bae00"},{"name":"Timesheet Details","item":[{"name":"List of all Employee Timesheet Details","id":"055cf05e-b15e-bc02-fb35-ecba5bb5ad6b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/TimesheetDetailsSearch?$format=json","description":"<p>This request will return a list of Employee Timesheet Details from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n<li>This API is limited to 2000 rows per call.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["TimesheetDetailsSearch"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"7761c6ba-d316-4478-875c-0c8c3645fb32","name":"List of all Employee Timesheet Details","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/TimesheetDetailsSearch?$format=json","host":["{{url}}"],"path":["TimesheetDetailsSearch"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 23 Aug 2022 17:55:31 GMT"},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8"},{"key":"Content-Length","value":"1944"},{"key":"Connection","value":"keep-alive"},{"key":"Set-Cookie","value":"AWSALB=hixQfQwJfN8ePN/tgp3qLCiRcjDtO6KCIpuP0YjWcSnrw/auQtQpxs7IP382rJ5o0RuNnh0XfeUyjHJve4/YQSV43M5ZS2fS/Bvjx1FIiNuu3ppPiR4z2xIkp3FR; Expires=Tue, 30 Aug 2022 17:55:31 GMT; Path=/"},{"key":"Set-Cookie","value":"AWSALBCORS=hixQfQwJfN8ePN/tgp3qLCiRcjDtO6KCIpuP0YjWcSnrw/auQtQpxs7IP382rJ5o0RuNnh0XfeUyjHJve4/YQSV43M5ZS2fS/Bvjx1FIiNuu3ppPiR4z2xIkp3FR; Expires=Tue, 30 Aug 2022 17:55:31 GMT; Path=/; SameSite=None; Secure"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"DataServiceVersion","value":"3.0;"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#TimesheetDetailsSearch\",\n    \"value\": [\n        {\n            \"CFROWKEY\": \"0AB78289-4444-4279-5555-5CC305432DEA_14487B75-D23D-4192-BF94-E62EC7A27RFT\",\n            \"PersonGUID_Search\": \"4ab78289-7147-4279-9622-6gb305289dea\",\n            \"EmploymentGUID_Search\": null,\n            \"Salutation_Search\": null,\n            \"FirstName_Search\": \"John\",\n            \"MiddleName_Search\": \"Adam\",\n            \"FamilyName_Search\": \"Smith\",\n            \"FamilyNamePrefix_Search\": null,\n            \"KnownAs_Search\": \"John\",\n            \"LegalName_Search\": \"John Smith\",\n            \"EmployeeName_Search\": \"Smith, John\",\n            \"FullName_Search\": \"John Smith\",\n            \"ActiveEmployee_Search\": 0,\n            \"WorkNumber_Search\": null,\n            \"MobileNumber_Search\": null,\n            \"InternalEmail_Search\": null,\n            \"PersonCode_Search\": \"710054\",\n            \"EmploymentID_Search\": null,\n            \"OrgUnitGUID_Search\": \"c75a93ba-8291-4f68-9705-0ba4081e4601\",\n            \"OrgUnitName_Search\": \"Administration\",\n            \"PositionTitle_Search\": \"Admin Assistant\",\n            \"CompanyName_Search\": null,\n            \"LocationName_Search\": null,\n            \"CostCentreName_Search\": null,\n            \"JobName_Search\": null,\n            \"JobCode_Search\": null,\n            \"IsManagerOfUnit_Search\": 0,\n            \"CostCentreCode_Search\": null,\n            \"HireDate_Search\": null,\n            \"OriginalHireDate_Search\": null,\n            \"TimesheetStatusDate\": \"2021-08-21T05:59:52.927Z\",\n            \"PersonTimesheetDetailGUID\": \"16787b75-d23d-4192-bf94-e62ec7a27dee\",\n            \"PersonTimesheetGUID\": \"44ee9cc5-db9b-4b1d-9291-da1afb63d49b\",\n            \"ProjectActivityGUID\": \"6f8a1a46-d1a1-42fc-afa5-f5585528b1b1\",\n            \"PersonCode\": \"710054\",\n            \"FullName\": \"John Smith\",\n            \"PersonTimesheetActivityGUID\": \"76fb084b-c3a9-4c4c-be89-5b45fec0680b\",\n            \"EntryDate\": \"2019-01-18T00:00:00\",\n            \"Duration\": \"1900-01-01T07:00:00\",\n            \"DurationAsDecimal\": \"7.00\",\n            \"StartTime\": null,\n            \"EndTime\": null,\n            \"TimesheetComments\": \"\",\n            \"ActivityName\": \"Development Work\",\n            \"TimeType\": \"Standard Work Time\",\n            \"ProjectGUID\": \"c345d05a-4504-47cd-814e-c80602fd0ca3\",\n            \"ProjectName\": \"ABC Website Redesign\",\n            \"ProjectCode\": \"ABC\",\n            \"TranslatedProjectName\": \"ABC Website Redesign\",\n            \"ActivityType\": null,\n            \"TimesheetStatus\": \"Approved\",\n            \"PaymentApproved\": null,\n            \"PayCodeGUID\": null,\n            \"PayCode\": null,\n            \"ActivityHourlyRate\": null,\n            \"Paid\": 0\n        }\n    ]\n}"}],"_postman_id":"055cf05e-b15e-bc02-fb35-ecba5bb5ad6b"}],"id":"d6cc4742-7ca0-2571-ef06-8d9bf69292bc","description":"<p>This API enables all information from the Timesheet Details search to be retrieved.</p>\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CFROWKEY</td>\n<td></td>\n</tr>\n<tr>\n<td>Salutation_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonGUID_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>EmploymentGUID_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>FirstName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>MiddleName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>FamilyName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>FamilyNamePrefix_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>KnownAs_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>LegalName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>EmployeeName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>FullName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>ActiveEmployee_Search</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>WorkNumber_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>MobileNumber_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>InternalEmail_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonCode_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>EmploymentID_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OrgUnitGUID_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OrgUnitName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PositionTitle_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>CompanyName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>LocationName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>CostCentreName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>JobName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>JobCode_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>IsManagerOfUnit_Search</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>CostCentreCode_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonTimesheetDetailGUID</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonTimesheetGUID</td>\n<td></td>\n</tr>\n<tr>\n<td>ProjectActivityGUID</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonCode</td>\n<td></td>\n</tr>\n<tr>\n<td>FullName</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonTimesheetActivityGUID</td>\n<td></td>\n</tr>\n<tr>\n<td>EntryDate</td>\n<td></td>\n</tr>\n<tr>\n<td>Duration</td>\n<td></td>\n</tr>\n<tr>\n<td>DurationAsDecimal</td>\n<td></td>\n</tr>\n<tr>\n<td>StartTime</td>\n<td></td>\n</tr>\n<tr>\n<td>EndTime</td>\n<td></td>\n</tr>\n<tr>\n<td>TimesheetComments</td>\n<td></td>\n</tr>\n<tr>\n<td>ActivityName</td>\n<td></td>\n</tr>\n<tr>\n<td>TimeType</td>\n<td></td>\n</tr>\n<tr>\n<td>ProjectGUID</td>\n<td></td>\n</tr>\n<tr>\n<td>ProjectName</td>\n<td></td>\n</tr>\n<tr>\n<td>ProjectCode</td>\n<td></td>\n</tr>\n<tr>\n<td>TranslatedProjectName</td>\n<td></td>\n</tr>\n<tr>\n<td>ActivityType</td>\n<td></td>\n</tr>\n<tr>\n<td>TimesheetStatus</td>\n<td></td>\n</tr>\n<tr>\n<td>PaymentApproved</td>\n<td></td>\n</tr>\n<tr>\n<td>PayCodeGUID</td>\n<td></td>\n</tr>\n<tr>\n<td>PayCode</td>\n<td></td>\n</tr>\n<tr>\n<td>ActivityHourlyRate</td>\n<td></td>\n</tr>\n<tr>\n<td>Paid</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>Ticked</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has read-only access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to their and all subordinate records.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"c0fa7d22-5f97-4306-a609-a906d586aba7","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"b9b8d42e-2a6b-4732-b32b-a4c41459c705","type":"text/javascript","exec":[""]}}],"_postman_id":"d6cc4742-7ca0-2571-ef06-8d9bf69292bc"}],"id":"dedd0306-8137-e98b-c0b2-b0e3842f8c4f","_postman_id":"dedd0306-8137-e98b-c0b2-b0e3842f8c4f","description":""},{"name":"Clock In / Clock Out","item":[{"name":"Clock In / Clock Out Totals - Daily","item":[{"name":"List of Clock In / Clock Totals - Daily","id":"53a9caa3-f77f-49a8-a9ba-403a5adc89ba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"password":"<password>","username":"<username>","showPassword":"<show-password>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/ClockInOutTotalsDailySearch?$format=json","description":"<p>This request will return a list of Clock In / Clock Out Totals - Daily (by employee) from the system.</p>\n<p><strong>Notes:</strong></p>\n<ul><li><p>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</p></li><li><p>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</p></li><li><p>This API is limited to 2000 rows per call.</p></li><li><p>To run this API, you <b>must</b> filter using the <b>Date</b> field.</p></li></ul>\n\n<p>Available Parameters:</p>\n<ul><li><p>$filter</p></li><li><p>$top</p></li><li><p>$orderby</p></li><li><p>$select</p></li><li><p>$skip</p></li><li><p>$inlinecount</p></li></ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["ClockInOutTotalsDailySearch"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"91b41ce7-d53d-4469-ae10-1ea28b6ffdf0","name":"List of Clock In / Clock Totals - Daily","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/ClockInOutTotalsDailySearch?$format=json","host":["{{url}}"],"path":["ClockInOutTotalsDailySearch"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 19 Aug 2022 16:51:06 GMT"},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8"},{"key":"Content-Length","value":"494"},{"key":"Connection","value":"keep-alive"},{"key":"Set-Cookie","value":"AWSALB=tLqVOZubcKHZRPs9i2oPdJ31Cz+6Hshb0GQJk6fVWmYUCEiu+emp8d51uOykBnqzthSJyVoO3gi2UQ+kM1KixttZI+VvQ7W/ACpOmZmgbqgfEVPfrWOsyoLuN8o6; Expires=Fri, 26 Aug 2022 16:51:05 GMT; Path=/"},{"key":"Set-Cookie","value":"AWSALBCORS=tLqVOZubcKHZRPs9i2oPdJ31Cz+6Hshb0GQJk6fVWmYUCEiu+emp8d51uOykBnqzthSJyVoO3gi2UQ+kM1KixttZI+VvQ7W/ACpOmZmgbqgfEVPfrWOsyoLuN8o6; Expires=Fri, 26 Aug 2022 16:51:05 GMT; Path=/; SameSite=None; Secure"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"DataServiceVersion","value":"3.0;"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#ClockInOutTotalsDailySearch\",\n    \"value\": [\n        {\n            \"CFROWKEY\": null,\n            \"PersonGUID\": \"f88e2619-7f5d-443e-b18a-95e819f9f615\",\n            \"EmployeeName\": \"Abrahams, Cheryl\",\n            \"PersonCode\": \"CEZ01\",\n            \"Date\": \"2022-08-19T00:00:00\",\n            \"WorkedHours\": \"8.00\",\n            \"AbsenceHours\": null,\n            \"ScheduledHours\": \"7.50\",\n            \"WorkedHoursHHMMSS\": \"8:00:00\",\n            \"AbsenceHoursHHMMSS\": null,\n            \"ScheduledHoursHHMMSS\": \"7:30:00\",\n            \"ValidatedHours\": \"0.50\",\n            \"ValidatedHoursHHMMSS\": \"0:30:00\"\n        }\n    ]\n}"}],"_postman_id":"53a9caa3-f77f-49a8-a9ba-403a5adc89ba"}],"id":"f9946cb6-3697-4475-a256-19661698644c","description":"<p>This API enables all information from the Clock In / Out Totals - Daily search to be retrieved. The search allows you to search for a daily breakdown of the total time worked or absence for each employee.</p>\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CFROWKEY</td>\n<td>Read-Only.</td>\n</tr>\n<tr>\n<td>PersonGUID</td>\n<td>Read-Only.</td>\n</tr>\n<tr>\n<td>EmployeeName</td>\n<td>Read-Only.</td>\n</tr>\n<tr>\n<td>PersonCode</td>\n<td>Read-Only.</td>\n</tr>\n<tr>\n<td>Date</td>\n<td>Read-Only. You must filter by this field for this API to run successfully.</td>\n</tr>\n<tr>\n<td>WorkedHours</td>\n<td>Read-Only.</td>\n</tr>\n<tr>\n<td>AbsenceHours</td>\n<td>Read-Only.</td>\n</tr>\n<tr>\n<td>ScheduledHours</td>\n<td>Read-Only.</td>\n</tr>\n<tr>\n<td>WorkedHoursHHMMSS</td>\n<td>Read-Only.</td>\n</tr>\n<tr>\n<td>AbsenceHoursHHMMSS</td>\n<td>Read-Only.</td>\n</tr>\n<tr>\n<td>ScheduledHoursHHMMSS</td>\n<td>Read-Only.</td>\n</tr>\n<tr>\n<td>ValidatedHours</td>\n<td>Read-Only.</td>\n</tr>\n<tr>\n<td>ValidatedHoursHHMMSS</td>\n<td>Read-Only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has read-only access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to their and all subordinate records.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"f9946cb6-3697-4475-a256-19661698644c"},{"name":"Clock In / Clock Out Totals - Monthly","item":[{"name":"List of Clock In / Clock Totals - Monthly","id":"f7b2a410-c8ce-4dc5-bda7-0b3582c3f864","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"password":"<password>","username":"<username>","showPassword":"<show-password>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/ClockInOutTotalsMonthlySearch?$format=json","description":"<p>This request will return a list of Clock In / Clock Out Totals - Monthly (by employee) from the system.</p>\n<p><strong>Notes:</strong></p>\n<ul><li><p>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</p></li><li><p>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</p></li><li><p>This API is limited to 2000 rows per call.</p></li><li><p>To run this API, you <b>must</b> filter using at least either the <b>Month </b>or <b>Year </b>fields.</p></li></ul>\n\n<p>Available Parameters:</p>\n<ul><li><p>$filter</p></li><li><p>$top</p></li><li><p>$orderby</p></li><li><p>$select</p></li><li><p>$skip</p></li><li><p>$inlinecount</p></li></ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["ClockInOutTotalsMonthlySearch"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"125ed6bc-3f1f-4455-a414-ae9fd6206880","name":"List of Clock In / Clock Totals - Monthly","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/ClockInOutTotalsMonthlySearch?$format=json","host":["{{url}}"],"path":["ClockInOutTotalsMonthlySearch"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 19 Aug 2022 16:47:54 GMT"},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8"},{"key":"Content-Length","value":"524"},{"key":"Connection","value":"keep-alive"},{"key":"Set-Cookie","value":"AWSALB=0J56x1CDktjFBGj2nTtNMWAqmVgKEvtzgK4QH9UVmlOj2tg1XvhT8vjw4bm6qWcWwvGZc4LD0adkkePY9WTAt+XMQuGABVaKUnj04+H2EaKvcZn0eO8x5IhYlBtu; Expires=Fri, 26 Aug 2022 16:47:54 GMT; Path=/"},{"key":"Set-Cookie","value":"AWSALBCORS=0J56x1CDktjFBGj2nTtNMWAqmVgKEvtzgK4QH9UVmlOj2tg1XvhT8vjw4bm6qWcWwvGZc4LD0adkkePY9WTAt+XMQuGABVaKUnj04+H2EaKvcZn0eO8x5IhYlBtu; Expires=Fri, 26 Aug 2022 16:47:54 GMT; Path=/; SameSite=None; Secure"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"DataServiceVersion","value":"3.0;"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#ClockInOutTotalsMonthlySearch\",\n    \"value\": [\n        {\n            \"CFROWKEY\": null,\n            \"PersonGUID\": \"f88e2619-7f5d-443e-b18a-95e819f9f615\",\n            \"EmployeeName\": \"Abrahams, Cheryl\",\n            \"PersonCode\": \"CEZ01\",\n            \"WorkedHours\": \"8.00\",\n            \"AbsenceHours\": \"7.50\",\n            \"ScheduledHours\": \"172.50\",\n            \"WorkedHoursHHMMSS\": \"8:00:00\",\n            \"AbsenceHoursHHMMSS\": \"7:30:00\",\n            \"ScheduledHoursHHMMSS\": \"172:30:00\",\n            \"Year\": 2022,\n            \"Month\": 8,\n            \"MonthName\": \"Aug\",\n            \"ValidatedHours\": \"-157.00\",\n            \"ValidatedHoursHHMMSS\": \"-157:00:00\"\n        }\n    ]\n}"}],"_postman_id":"f7b2a410-c8ce-4dc5-bda7-0b3582c3f864"}],"id":"628795ad-9604-4120-82c3-17ee13915364","description":"<p>This API enables all information from the Clock In / Out Totals - Monthly search to be retrieved. The search allows you to search for a monthly breakdown of the total time worked or absence for each employee.</p>\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CFROWKEY</td>\n<td>Read-Only.</td>\n</tr>\n<tr>\n<td>PersonGUID</td>\n<td>Read-Only.</td>\n</tr>\n<tr>\n<td>EmployeeName</td>\n<td>Read-Only.</td>\n</tr>\n<tr>\n<td>PersonCode</td>\n<td>Read-Only.</td>\n</tr>\n<tr>\n<td>WorkedHours</td>\n<td>Read-Only.</td>\n</tr>\n<tr>\n<td>AbsenceHours</td>\n<td>Read-Only.</td>\n</tr>\n<tr>\n<td>ScheduledHours</td>\n<td>Read-Only.</td>\n</tr>\n<tr>\n<td>WorkedHoursHHMMSS</td>\n<td>Read-Only.</td>\n</tr>\n<tr>\n<td>AbsenceHoursHHMMSS</td>\n<td>Read-Only.</td>\n</tr>\n<tr>\n<td>ScheduledHoursHHMMSS</td>\n<td>Read-Only.</td>\n</tr>\n<tr>\n<td>Year</td>\n<td>Read-Only. You must filter using this field or the Month field for this API to run successfully.</td>\n</tr>\n<tr>\n<td>Month</td>\n<td>Read-Only. You must filter using this field or the Year field for this API to run successfully.</td>\n</tr>\n<tr>\n<td>MonthName</td>\n<td>Read-Only.</td>\n</tr>\n<tr>\n<td>ValidatedHours</td>\n<td>Read-Only.</td>\n</tr>\n<tr>\n<td>ValidatedHoursHHMMSS</td>\n<td>Read-Only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has read-only access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to their and all subordinate records.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"628795ad-9604-4120-82c3-17ee13915364"},{"name":"Clock In / Clock Out Totals - Yearly","item":[{"name":"List of Clock In / Clock Totals - Yearly","id":"e5aa704f-251d-433f-bb7b-345ec9fb3873","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"password":"<password>","username":"<username>","showPassword":"<show-password>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/ClockInOutTotalsYearlySearch?$format=json","description":"<p>This request will return a list of Clock In / Clock Out Totals - Yearly (by employee) from the system.</p>\n<p><strong>Notes:</strong></p>\n<ul><li><p>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</p></li><li><p>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</p></li><li><p>This API is limited to 2000 rows per call.</p></li><li><p>To run this API, you <b>must </b>filter using the <b>Year </b>field.<br /></p></li></ul>\n\n<p>Available Parameters:</p>\n<ul><li><p>$filter</p></li><li><p>$top</p></li><li><p>$orderby</p></li><li><p>$select</p></li><li><p>$skip</p></li><li><p>$inlinecount</p></li></ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["ClockInOutTotalsYearlySearch"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"412db48e-567e-4664-962f-bc3a9eac2904","name":"List of Clock In / Clock Totals - Yearly","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/ClockInOutTotalsYearlySearch?$format=json","host":["{{url}}"],"path":["ClockInOutTotalsYearlySearch"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 19 Aug 2022 16:53:06 GMT"},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8"},{"key":"Content-Length","value":"499"},{"key":"Connection","value":"keep-alive"},{"key":"Set-Cookie","value":"AWSALB=4MuqcELDVDn0hIK1ZpGtmk/+oSVy4rySqxHhndaWmmssBvlTINvoHEPc7PxXyh0eKTPq9Ii7VBuQctIwLNtIhtLKHRlPAGtTb8CUArmxOFYW8OYMrKfy8t9FVwIx; Expires=Fri, 26 Aug 2022 16:53:05 GMT; Path=/"},{"key":"Set-Cookie","value":"AWSALBCORS=4MuqcELDVDn0hIK1ZpGtmk/+oSVy4rySqxHhndaWmmssBvlTINvoHEPc7PxXyh0eKTPq9Ii7VBuQctIwLNtIhtLKHRlPAGtTb8CUArmxOFYW8OYMrKfy8t9FVwIx; Expires=Fri, 26 Aug 2022 16:53:05 GMT; Path=/; SameSite=None; Secure"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"DataServiceVersion","value":"3.0;"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#ClockInOutTotalsYearlySearch\",\n    \"value\": [\n        {\n            \"CFROWKEY\": null,\n            \"PersonGUID\": \"f88e2619-7f5d-443e-b18a-95e819f9f615\",\n            \"EmployeeName\": \"Abrahams, Cheryl\",\n            \"PersonCode\": \"CEZ01\",\n            \"WorkedHours\": \"8.00\",\n            \"AbsenceHours\": \"7.50\",\n            \"ScheduledHours\": \"1552.50\",\n            \"WorkedHoursHHMMSS\": \"8:00:00\",\n            \"AbsenceHoursHHMMSS\": \"7:30:00\",\n            \"ScheduledHoursHHMMSS\": \"1552:30:00\",\n            \"Year\": 2022,\n            \"ValidatedHours\": \"-1537.00\",\n            \"ValidatedHoursHHMMSS\": \"-1537:00:00\"\n        }\n    ]\n}"}],"_postman_id":"e5aa704f-251d-433f-bb7b-345ec9fb3873"}],"id":"8c180b0f-6714-4c58-99e1-e623129efee1","description":"<p>This API enables all information from the Clock In / Out Totals - Yearly search to be retrieved. The search allows you to search for a yearly breakdown of the total time worked or absence for each employee.</p>\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CFROWKEY</td>\n<td>Read-Only.</td>\n</tr>\n<tr>\n<td>PersonGUID</td>\n<td>Read-Only.</td>\n</tr>\n<tr>\n<td>EmployeeName</td>\n<td>Read-Only.</td>\n</tr>\n<tr>\n<td>PersonCode</td>\n<td>Read-Only.</td>\n</tr>\n<tr>\n<td>WorkedHours</td>\n<td>Read-Only.</td>\n</tr>\n<tr>\n<td>AbsenceHours</td>\n<td>Read-Only.</td>\n</tr>\n<tr>\n<td>ScheduledHours</td>\n<td>Read-Only.</td>\n</tr>\n<tr>\n<td>WorkedHoursHHMMSS</td>\n<td>Read-Only.</td>\n</tr>\n<tr>\n<td>AbsenceHoursHHMMSS</td>\n<td>Read-Only.</td>\n</tr>\n<tr>\n<td>ScheduledHoursHHMMSS</td>\n<td>Read-Only.</td>\n</tr>\n<tr>\n<td>Year</td>\n<td>Read-Only. You must filter by this field to run this API successfully.</td>\n</tr>\n<tr>\n<td>ValidatedHours</td>\n<td>Read-Only.</td>\n</tr>\n<tr>\n<td>ValidatedHoursHHMMSS</td>\n<td>Read-Only.</td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has read-only access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to their and all subordinate records.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"8c180b0f-6714-4c58-99e1-e623129efee1"}],"id":"411a5ced-3ddb-4a23-982d-d036fa60d491","_postman_id":"411a5ced-3ddb-4a23-982d-d036fa60d491","description":""},{"name":"Users","item":[{"name":"Users","item":[{"name":"List of all Users","id":"e1e1ffc1-33ca-424d-b487-1139e7e8294c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/UsersSearch?$format=json","description":"<p>This request will return a list of Users from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n<li>This API is limited to 2000 rows per call.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["UsersSearch"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[],"_postman_id":"e1e1ffc1-33ca-424d-b487-1139e7e8294c"}],"id":"3d81ee6d-ade0-4dc2-83e5-dd881f8ddd9f","description":"<p>This API enables all information from the Active Employees search to be retrieved. </p>\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CFROWKEY</td>\n<td></td>\n</tr>\n<tr>\n<td>UserID</td>\n<td></td>\n</tr>\n<tr>\n<td>UserName</td>\n<td></td>\n</tr>\n<tr>\n<td>FirstName</td>\n<td></td>\n</tr>\n<tr>\n<td>FamilyName</td>\n<td></td>\n</tr>\n<tr>\n<td>Active</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>AccountLockedOut</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>SecurityRoleCode</td>\n<td></td>\n</tr>\n<tr>\n<td>SecurityRole</td>\n<td></td>\n</tr>\n<tr>\n<td>Language</td>\n<td></td>\n</tr>\n<tr>\n<td>PicklistLanguage</td>\n<td></td>\n</tr>\n<tr>\n<td>Country</td>\n<td></td>\n</tr>\n<tr>\n<td>DateFormat</td>\n<td></td>\n</tr>\n<tr>\n<td>DateSeparator</td>\n<td></td>\n</tr>\n<tr>\n<td>TimeFormat</td>\n<td></td>\n</tr>\n<tr>\n<td>TimeSeparator</td>\n<td></td>\n</tr>\n<tr>\n<td>DecimalSeparator</td>\n<td></td>\n</tr>\n<tr>\n<td>DigitGroupingSymbol</td>\n<td></td>\n</tr>\n<tr>\n<td>DecimalPlaces</td>\n<td></td>\n</tr>\n<tr>\n<td>TimeZone</td>\n<td></td>\n</tr>\n<tr>\n<td>EmailAddress</td>\n<td></td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n</tr>\n<tr>\n<td>InternalUser</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>BaseSecurityRoleCode</td>\n<td></td>\n</tr>\n<tr>\n<td>TranslatedSecurityRoleName</td>\n<td></td>\n</tr>\n<tr>\n<td>FormatLocaleID</td>\n<td></td>\n</tr>\n<tr>\n<td>FormatLocale</td>\n<td></td>\n</tr>\n<tr>\n<td>TwoStepVerification</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonGUID_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>EmploymentGUID_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>Salutation_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>FirstName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>MiddleName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>FamilyName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>FamilyNamePrefix_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>KnownAs_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>LegalName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>EmployeeName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>FullName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>ActiveEmployee_Search</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>WorkNumber_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>MobileNumber_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>InternalEmail_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonCode_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>EmploymentID_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OrgUnitGUID_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OrgUnitName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PositionTitle_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>CompanyName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>LocationName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>CostCentreName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>JobName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>JobCode_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>IsManagerOfUnit_Search</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>CostCentreCode_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>HireDate_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OriginalHireDate_Search</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2> Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to all users.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has read-only access to all users.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to all users.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to all users.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"af35c2ce-1a23-4368-974c-dd0c228a165c","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"9c04461a-a2c7-4dc0-a24d-2e49ab3dd577","type":"text/javascript","exec":[""]}}],"_postman_id":"3d81ee6d-ade0-4dc2-83e5-dd881f8ddd9f"}],"id":"74a4872f-ffea-4698-a964-264efd75d2d0","_postman_id":"74a4872f-ffea-4698-a964-264efd75d2d0","description":""},{"name":"Organisation","item":[{"name":"Org Units","item":[{"name":"List of all Org Unit Details","id":"3e349926-74ba-64b6-5958-2750f9b069d1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/OrgUnitsSearch?$format=json","description":"<p>This request will return a list of Org Unit Details from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n<li>This API is limited to 2000 rows per call.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["OrgUnitsSearch"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"e7f2c0a2-3858-4f31-8d17-3923ce992dcc","name":"List of all Org Unit Details","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/OrgUnitsSearch?$format=json&$top=1","host":["{{url}}"],"path":["OrgUnitsSearch"],"query":[{"key":"$format","value":"json"},{"key":"$top","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 25 Mar 2022 17:29:46 GMT"},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8"},{"key":"Content-Length","value":"1068"},{"key":"Connection","value":"keep-alive"},{"key":"Set-Cookie","value":"AWSALB=3QSGugLuzh1qldiK/FLn3L68ewfcmcsJtEARHVXDx08FFjTtkLafIi68UftyPnX6VASp9BAKqa4O+sGSJY1sv2MW9wjUCs9IRJwJvFDlCNFC11nqeCiSlGsvP/zd; Expires=Fri, 01 Apr 2022 17:29:46 GMT; Path=/"},{"key":"Set-Cookie","value":"AWSALBCORS=3QSGugLuzh1qldiK/FLn3L68ewfcmcsJtEARHVXDx08FFjTtkLafIi68UftyPnX6VASp9BAKqa4O+sGSJY1sv2MW9wjUCs9IRJwJvFDlCNFC11nqeCiSlGsvP/zd; Expires=Fri, 01 Apr 2022 17:29:46 GMT; Path=/; SameSite=None; Secure"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"DataServiceVersion","value":"3.0;"},{"key":"X-Frame-Options","value":"SAMEORIGIN"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#OrgUnitsSearch\",\n    \"value\": [\n        {\n            \"CFROWKEY\": \"ADM_704C9327-2473-429A-B5EE-17FD2352E61C_3F47C028-51D2-4525-B25D-D7911E2A9832_8AAE55C4-4EE2-4AC6-B46F-EE77024A83F2_2057\",\n            \"OrgUnitGUID\": \"8aae55c4-4ee2-4ac6-b46f-ee77024a83f2\",\n            \"EffectiveFrom\": \"2008-01-01T00:00:00\",\n            \"EffectiveTo\": \"2999-12-31T00:00:00\",\n            \"OrgUnitCode\": \"ADM\",\n            \"OrgUnitName\": \"Administration\",\n            \"ParentOrgUnitCode\": \"FIN\",\n            \"ParentOrgUnitGUID\": \"21eac944-7e99-4cdf-ac8f-d46286718e98\",\n            \"ParentOrgUnitName\": \"Finance\",\n            \"SortOrder\": 5,\n            \"OrgUnitAttributesEffectiveFrom\": \"2008-01-01T00:00:00\",\n            \"OrgUnitAttributesEffectiveTo\": \"2999-12-31T00:00:00\",\n            \"OrgUnitArea\": \"Administration\",\n            \"OrgUnitType\": \"Business Unit\",\n            \"OrgUnitLevel\": \"Management Level\",\n            \"OrgUnitCompanyCode\": \"OMUK\",\n            \"OrgUnitCompanyName\": \"Omnicrom UK\",\n            \"OrgUnitLocationCode\": \"LONHQ\",\n            \"OrgUnitLocationName\": \"London Headquarters\",\n            \"OrgUnitLocationCompanyName\": \"Omnicrom Holding Ltd\",\n            \"OrgUnitCostCentreCode\": \"OM011\",\n            \"OrgUnitCostCentreName\": \"OM011 - Admin\",\n            \"SupportingUnit\": 1,\n            \"OrgUnitComments\": null\n        }\n    ]\n}"}],"_postman_id":"3e349926-74ba-64b6-5958-2750f9b069d1"}],"id":"8b5b9df1-f803-eae4-63aa-ea06b0bd0dd3","description":"<p>This API enables all information from the Org Units search to be retrieved.</p>\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n</ul>\n<h2 id=\"fields\">Fields</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CFROWKEY</td>\n<td></td>\n</tr>\n<tr>\n<td>OrgUnitGUID</td>\n<td></td>\n</tr>\n<tr>\n<td>EffectiveFrom</td>\n<td></td>\n</tr>\n<tr>\n<td>EffectiveTo</td>\n<td></td>\n</tr>\n<tr>\n<td>OrgUnitCode</td>\n<td></td>\n</tr>\n<tr>\n<td>OrgUnitName</td>\n<td></td>\n</tr>\n<tr>\n<td>ParentOrgUnitCode</td>\n<td></td>\n</tr>\n<tr>\n<td>ParentOrgUnitGUID</td>\n<td></td>\n</tr>\n<tr>\n<td>ParentOrgUnitName</td>\n<td></td>\n</tr>\n<tr>\n<td>SortOrder</td>\n<td></td>\n</tr>\n<tr>\n<td>OrgUnitAttributesEffectiveFrom</td>\n<td></td>\n</tr>\n<tr>\n<td>OrgUnitAttributesEffectiveTo</td>\n<td></td>\n</tr>\n<tr>\n<td>OrgUnitArea</td>\n<td></td>\n</tr>\n<tr>\n<td>OrgUnitType</td>\n<td></td>\n</tr>\n<tr>\n<td>OrgUnitLevel</td>\n<td></td>\n</tr>\n<tr>\n<td>OrgUnitCompanyCode</td>\n<td></td>\n</tr>\n<tr>\n<td>OrgUnitCompanyName</td>\n<td></td>\n</tr>\n<tr>\n<td>OrgUnitLocationCode</td>\n<td></td>\n</tr>\n<tr>\n<td>OrgUnitLocationName</td>\n<td></td>\n</tr>\n<tr>\n<td>OrgUnitLocationCompanyName</td>\n<td></td>\n</tr>\n<tr>\n<td>OrgUnitCostCentreCode</td>\n<td></td>\n</tr>\n<tr>\n<td>OrgUnitCostCentreName</td>\n<td></td>\n</tr>\n<tr>\n<td>SupportingUnit</td>\n<td></td>\n</tr>\n<tr>\n<td>OrgUnitComments</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"security\">Security</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to all org units.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has read-only access to all org units.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to all org units.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to all org units.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"67fd093a-174e-4189-a5ce-2efc145eeba7","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"e098c1cd-a114-4d48-87a3-0f9bbe169223","type":"text/javascript","exec":[""]}}],"_postman_id":"8b5b9df1-f803-eae4-63aa-ea06b0bd0dd3"}],"id":"11d4f696-2f25-378d-a156-43d8d96aa0c4","_postman_id":"11d4f696-2f25-378d-a156-43d8d96aa0c4","description":""},{"name":"Compensation","item":[{"name":"Compensation History","item":[{"name":"List of Employee Compensation Records","id":"304dc363-a971-f7fa-3fac-a04ff6f21056","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/CompensationHistorySearch?$format=json","description":"<p>This request will return a list of Employee Compensation Records from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n<li>This API is limited to 2000 rows per call.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["CompensationHistorySearch"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"9904d257-ca68-bb78-a063-b5ee12dd7cf3","name":"List of Employee Compensation Records","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":{"raw":"{{url}}/CompensationHistorySearch?$format=json","host":["{{url}}"],"path":["CompensationHistorySearch"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"2594","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8","name":"Content-Type","description":""},{"key":"DataServiceVersion","value":"3.0;","name":"DataServiceVersion","description":""},{"key":"Date","value":"Thu, 18 Jan 2018 09:55:53 GMT","name":"Date","description":""},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":""},{"key":"X-Frame-Options","value":"SAMEORIGIN","name":"X-Frame-Options","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"10FF1C8527C119F7CB4E7C4120B8992C37BA1C8AE5234A9C7292845F5BF38D235F1BB6B2EF2F3728FEB7A384928DF969505638D3077B989C224A35AD3FE86D663EBCCEECF12BB193FF45C084F261369A94F105CDE91537455E5B49C713A694D62D34D7A7888AD9B597BDD3246C7569B4C58B10C159A04F82DF9242075831F7E38CE8DEDD0EEAACDD6CF905FEA56D401CC4DB3789AF82193C78C9A4D6A124EB0BDE5B27B6C1663E44BDFDC68E369CC4FD3AE57BC82F41E15393895D53FCBF45BEF8EE38E5FAC9F414B14AF836AC55E69E37B3A04760F8929B12DD607AB5345FE24508BB570572B35BF0EE26ECE04E899FDAEA1A227AC0432679902DA7737F2B5B8C91E71F7F5A858689E6919028A38ADB","key":"CF_SID"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"-1","key":"CF_SLV"},{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"showcase.cezanneondemand.com","path":"/","secure":false,"value":"/1cGaxGPTBHcD8RBFPNm12FtDYLb3lMpw7XIBqrYFhv/PCOTAE7wxR40Odzc4CqCBqtAOZUr4ANdr0FCU5+yshc/OebxJq3yb+4ZnDyqpu6AwS+bVPF+pa/xxdPnk2Wb9Paf0Dv+yZV/0G7/d6kslgWPqvC6vBmhi0lGAwQ6OUY=","key":"__RequestVerificationToken_L0NlemFubmVPbkRlbWFuZA__"}],"responseTime":"1318","body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#CompensationHistorySearch\",\n    \"value\": [\n        {\n            \"CFROWKEY\": \"00C2475C-026D-48D7-95E4-F36D6FC0A8D0_6153_BASE_2009-01-13T00:00:00\",\n            \"PersonGUID_Search\": \"3651fefd-5efe-412b-8b8d-f2edfd9ec326\",\n            \"EmploymentGUID_Search\": \"fc02e56f-312f-414b-ae37-f8da593c78af\",\n            \"Salutation_Search\": null,\n            \"FirstName_Search\": \"Lisa\",\n            \"MiddleName_Search\": null,\n            \"FamilyName_Search\": \"Smith\",\n            \"FamilyNamePrefix_Search\": null,\n            \"KnownAs_Search\": \"Lisa\",\n            \"LegalName_Search\": \"Lisa Smith\",\n            \"EmployeeName_Search\": \"Smith, Lisa\",\n            \"FullName_Search\": \"Lisa Smith\",\n            \"ActiveEmployee_Search\": 1,\n            \"WorkNumber_Search\": \"01225 456 221\",\n            \"MobileNumber_Search\": null,\n            \"InternalEmail_Search\": \"LisaSmith@omnicrom.com\",\n            \"PersonCode_Search\": \"6153\",\n            \"EmploymentID_Search\": \"6153\",\n            \"OrgUnitGUID_Search\": \"c5671b9c-0d58-4092-ae1e-34d7132672f9\",\n            \"OrgUnitName_Search\": \"Operations\",\n            \"PositionTitle_Search\": \"Programmer\",\n            \"CompanyName_Search\": \"Omnicrom Manufacturing Ltd\",\n            \"LocationName_Search\": \"Derby\",\n            \"CostCentreName_Search\": null,\n            \"JobName_Search\": null,\n            \"JobCode_Search\": null,\n            \"IsManagerOfUnit_Search\": 0,\n            \"CostCentreCode_Search\": null,\n            \"PersonCompGUID\": \"3b037b97-3021-45fb-b7ad-6b52d7a403fe\",\n            \"PersonCode\": \"6153\",\n            \"FullName\": \"Lisa Smith\",\n            \"CompItem\": \"Base Annual Salary\",\n            \"CompItemCode\": \"BASE\",\n            \"EffectiveFrom\": \"2009-01-13T00:00:00\",\n            \"EffectiveTo\": \"2012-12-31T00:00:00\",\n            \"CompensationEmploymentID\": null,\n            \"PaymentCurrency\": \"GBP\",\n            \"BaseCurrency\": \"USD\",\n            \"PayPeriod\": \"Year\",\n            \"CompItemType\": \"Salary\",\n            \"SinglePayment\": 0,\n            \"TargetPercentageAchieved\": null,\n            \"ChangeReason\": null,\n            \"SinglePaymentDate\": null,\n            \"NextReviewDate\": null,\n            \"Comments\": null,\n            \"CurrentAmount\": \"55900.00\",\n            \"AnnualAmount\": \"55900.00\",\n            \"ChangeFromPreviousAmount\": null,\n            \"AnnualChangeFromPreviousAmount\": null,\n            \"TargetAmount\": null,\n            \"CurrentBaseAmount\": \"64950.769000\",\n            \"AnnualBaseAmount\": \"64950.769000\",\n            \"ChangeFromPreviousBaseAmount\": null,\n            \"AnnualChangeFromPreviousBaseAmount\": null,\n            \"TargetBaseAmount\": null,\n            \"CurrentPercentageChange\": null,\n            \"BasePercentageChange\": null,\n            \"ContractEffectiveFrom\": null,\n            \"ContractEffectiveTo\": null,\n            \"ContractTermDescription\": null,\n            \"ContractNameDescription\": null,\n            \"ContractPayrollScheduleDescription\": null,\n            \"ContractPayrollGroupDescription\": null,\n            \"ContractIsEmployee\": null,\n            \"Percentage\": null,\n            \"BasedOnPersonCompRecordGUID\": null,\n            \"BasedOnEffectiveFrom\": null,\n            \"BasedOnCompItem\": null,\n            \"PreviousPercentage\": null,\n            \"ProRataCurrentAmount\": null,\n            \"ProRataAnnualAmount\": null,\n            \"ProRataBaseCurrentAmount\": null,\n            \"ProRataBaseAmount\": null,\n            \"ProRataBaseTargetAmount\": null,\n            \"ProRataTargetAmount\": null,\n            \"FTERatio\": null,\n            \"ProRataChangeFromPreviousAmount\": null,\n            \"ProRataAnnualChangeFromPreviousAmount\": null,\n            \"ProRataCurrentPercentageChange\": null,\n            \"ProRataBaseChangeFromPreviousAmount\": null,\n            \"ProRataBaseAnnualChangeFromPreviousAmount\": null,\n            \"ProRataBasePercentageChange\": null,\n            \"CurrentFTERatio\": 1.000,\n            \"CurrentGrade\": null\n        }\n    ]\n}"}],"_postman_id":"304dc363-a971-f7fa-3fac-a04ff6f21056"}],"id":"8f772fcc-93c4-d43b-eb4b-6f3138e383be","description":"<p>This API enables all information from the All People search to be retrieved.</p>\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CFROWKEY</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonGUID_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>EmploymentGUID_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>Salutation_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>FirstName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>MiddleName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>FamilyName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>FamilyNamePrefix_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>KnownAs_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>LegalName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>EmployeeName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>FullName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>ActiveEmployee_Search</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>WorkNumber_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>MobileNumber_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>InternalEmail_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonCode_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>EmploymentID_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OrgUnitGUID_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OrgUnitName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PositionTitle_search</td>\n<td></td>\n</tr>\n<tr>\n<td>CompanyName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>LocationName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>CostCentreName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>JobName_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>JobCode_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>IsManagerOfUnit_Search</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>CostCentreCode_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>HireDate_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>OriginalHireDate_Search</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonCompGUID</td>\n<td></td>\n</tr>\n<tr>\n<td>PersonCode</td>\n<td></td>\n</tr>\n<tr>\n<td>FullName</td>\n<td></td>\n</tr>\n<tr>\n<td>CompItem</td>\n<td></td>\n</tr>\n<tr>\n<td>CompItemCode</td>\n<td></td>\n</tr>\n<tr>\n<td>EffectiveFrom</td>\n<td></td>\n</tr>\n<tr>\n<td>EffectiveTo</td>\n<td></td>\n</tr>\n<tr>\n<td>CompensationEmploymentID</td>\n<td></td>\n</tr>\n<tr>\n<td>PaymentCurrency</td>\n<td></td>\n</tr>\n<tr>\n<td>BaseCurrency</td>\n<td></td>\n</tr>\n<tr>\n<td>PayPeriod</td>\n<td></td>\n</tr>\n<tr>\n<td>CompItemType</td>\n<td></td>\n</tr>\n<tr>\n<td>SinglePayment</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>TargetPercentageAchieved</td>\n<td></td>\n</tr>\n<tr>\n<td>ChangeReason</td>\n<td></td>\n</tr>\n<tr>\n<td>SinglePaymentDate</td>\n<td></td>\n</tr>\n<tr>\n<td>NextReviewDate</td>\n<td></td>\n</tr>\n<tr>\n<td>Comments</td>\n<td></td>\n</tr>\n<tr>\n<td>CurrentAmount</td>\n<td></td>\n</tr>\n<tr>\n<td>AnnualAmount</td>\n<td></td>\n</tr>\n<tr>\n<td>ChangeFromPreviousAmount</td>\n<td></td>\n</tr>\n<tr>\n<td>AnnualChangeFromPreviousAmount</td>\n<td></td>\n</tr>\n<tr>\n<td>TargetAmount</td>\n<td></td>\n</tr>\n<tr>\n<td>CurrentBaseAmount</td>\n<td></td>\n</tr>\n<tr>\n<td>AnnualBaseAmount</td>\n<td></td>\n</tr>\n<tr>\n<td>ChangeFromPreviousBaseAmount</td>\n<td></td>\n</tr>\n<tr>\n<td>AnnualChangeFromPreviousBaseAmount</td>\n<td></td>\n</tr>\n<tr>\n<td>TargetBaseAmount</td>\n<td></td>\n</tr>\n<tr>\n<td>CurrentPercentageChange</td>\n<td></td>\n</tr>\n<tr>\n<td>BasePercentageChange</td>\n<td></td>\n</tr>\n<tr>\n<td>ContractEffectiveFrom</td>\n<td></td>\n</tr>\n<tr>\n<td>ContractEffectiveTo</td>\n<td></td>\n</tr>\n<tr>\n<td>ContractTermDescription</td>\n<td></td>\n</tr>\n<tr>\n<td>ContractNameDescription</td>\n<td></td>\n</tr>\n<tr>\n<td>ContractPayrollScheduleDescription</td>\n<td></td>\n</tr>\n<tr>\n<td>ContractPayrollGroupDescription</td>\n<td></td>\n</tr>\n<tr>\n<td>ContractIsEmployee</td>\n<td>1 = Ticked, 0 = Not Ticked.</td>\n</tr>\n<tr>\n<td>Percentage</td>\n<td></td>\n</tr>\n<tr>\n<td>BasedOnPersonCompRecordGUID</td>\n<td></td>\n</tr>\n<tr>\n<td>BasedOnEffectiveFrom</td>\n<td></td>\n</tr>\n<tr>\n<td>BasedOnCompItem</td>\n<td></td>\n</tr>\n<tr>\n<td>PreviousPercentage</td>\n<td></td>\n</tr>\n<tr>\n<td>ProRataCurrentAmount</td>\n<td></td>\n</tr>\n<tr>\n<td>ProRataAnnualAmount</td>\n<td></td>\n</tr>\n<tr>\n<td>ProRataBaseCurrentAmount</td>\n<td></td>\n</tr>\n<tr>\n<td>ProRataBaseAmount</td>\n<td></td>\n</tr>\n<tr>\n<td>ProRataBaseTargetAmount</td>\n<td></td>\n</tr>\n<tr>\n<td>ProRataTargetAmount</td>\n<td></td>\n</tr>\n<tr>\n<td>FTERatio</td>\n<td></td>\n</tr>\n<tr>\n<td>ProRataChangeFromPreviousAmount</td>\n<td></td>\n</tr>\n<tr>\n<td>ProRataAnnualChangeFromPreviousAmount</td>\n<td></td>\n</tr>\n<tr>\n<td>ProRataCurrentPercentageChange</td>\n<td></td>\n</tr>\n<tr>\n<td>ProRataBaseChangeFromPreviousAmount</td>\n<td></td>\n</tr>\n<tr>\n<td>ProRataBaseAnnualChangeFromPreviousAmount</td>\n<td></td>\n</tr>\n<tr>\n<td>ProRataBasePercentageChange</td>\n<td></td>\n</tr>\n<tr>\n<td>CurrentFTERatio</td>\n<td></td>\n</tr>\n<tr>\n<td>CurrentGrade</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has read-only access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"a937deb6-025b-4477-8870-f1d83dbb5213","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"5790d1b4-f286-4261-9a32-9845bda9077f","type":"text/javascript","exec":[""]}}],"_postman_id":"8f772fcc-93c4-d43b-eb4b-6f3138e383be"}],"id":"8e74f4eb-f425-d97d-9fdd-f7e8b5352057","_postman_id":"8e74f4eb-f425-d97d-9fdd-f7e8b5352057","description":""}],"id":"f8914a72-2b70-6fc3-07b0-331d21e25781","_postman_id":"f8914a72-2b70-6fc3-07b0-331d21e25781","description":""},{"name":"Functions","item":[{"name":"Recruitment New Hire","item":[{"name":"Add a new Hire","id":"65c6bd2d-809b-45ce-898a-1956fbdf88fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"clientSecret":"<client-secret>","clientId":"<client-id>","challengeAlgorithm":"<challenge-algorithm>","scope":"<scope>","grant_type":"<grant_type>","client_authentication":"<client_authentication>","accessTokenUrl":"<access-token-url>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"personId\": \"1234\",\n\t\"salutation\": \"Mr\",\n\t\"firstName\": \"John\",\n\t\"familyName\": \"Smith\",\n\t\"knownAs\": \"John\",\n\t\"gender\": \"Male\",\n\t\"birthDate\": \"19931003\",\n\t\"hireDate\": \"20191107\",\n\t\"companyCode\": \"OMUK\",\n\t\"orgUnitCode\": \"HR\",\n\t\"positionTitle\": \"HR Assistant\",\n\t\"email\": \"test@test.com\",\n\t\"otherPhoneNumber\": \"01234567895\",\n\t\"mobileNumber\": \"02456777864\",\n\t\"addressLine1\": \"88\",\n\t\"addressLine2\": \"First Street\",\n\t\"addressLine3\": \"London\",\n\t\"city\": \"London\",\n\t\"county\": \"Greater London\",\n\t\"country\": \"United Kingdom\",\n\t\"postcode\": \"SE1 1RU\",\n\t\"vacancyOwner\": \"cheryl.abrahams@omnicrom.com\"\n}"},"url":"{{url}}/People_NewHire?$format=json","description":"<p>This request will add a new hire to the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["People_NewHire"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"211d5902-aa57-4e9a-b1b9-43554986f74d","name":"Add a new Hire","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer Your-API-Token","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"personId\": \"1234\",\n\t\"salutation\": \"Mr\",\n\t\"firstName\": \"John\",\n\t\"familyName\": \"Smith\",\n\t\"knownAs\": \"John\",\n\t\"gender\": \"Male\",\n\t\"birthDate\": \"19931003\",\n\t\"hireDate\": \"20191107\",\n\t\"companyCode\": \"OMUK\",\n\t\"orgUnitCode\": \"HR\",\n\t\"positionTitle\": \"HR Assistant\",\n\t\"email\": \"test@test.com\",\n\t\"otherPhoneNumber\": \"01234567895\",\n\t\"mobileNumber\": \"02456777864\",\n\t\"addressLine1\": \"88\",\n\t\"addressLine2\": \"First Street\",\n\t\"addressLine3\": \"London\",\n\t\"city\": \"London\",\n\t\"county\": \"Greater London\",\n\t\"country\": \"United Kingdom\",\n\t\"postcode\": \"SE1 1RU\",\n\t\"vacancyOwner\": \"rob@demo.cezannehr.com\"\n}"},"url":{"raw":"{{url}}/People_NewHire?$format=json","host":["{{url}}"],"path":["People_NewHire"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Content-Type","value":"application/xml;charset=utf-8"},{"key":"DataServiceVersion","value":"1.0;"},{"key":"Date","value":"Thu, 07 Nov 2019 16:43:35 GMT"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Length","value":"604"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"newHireAdded\": true,\n    \"employmentAdded\": true,\n    \"deploymentAdded\": true,\n    \"positionFound\": true,\n    \"communicationsAdded\": true,\n    \"addressesAdded\": true,\n    \"newHireProcess\": true,\n    \"Messages\": [\n        {\n            \"code\": 103015,\n            \"message\": \"The Person John Smith has been automatically set to report to Charles Witherspoon, the manager of the org unit HR, from 07/11/2019 to Open Ended.\"\n        }\n    ],\n    \"personID\": \"CEZ1241\",\n    \"employmentID\": \"CEZ1241\"\n}"}],"_postman_id":"65c6bd2d-809b-45ce-898a-1956fbdf88fa"}],"id":"e7d70898-017d-4671-a807-4071bb635bc5","description":"<p>This function enables you to add new hires to the system and create a person record, employment record, deployment record and generate a New Starter Process task for a HR Professional to complete.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>personId</td>\n<td>Depends</td>\n<td>Ignored if automatic person code generation is enabled; otherwise mandatory.  <br />  <br />Automatically prefixed with ‘REC’ unless this is disabled in New Hire API configuration.</td>\n</tr>\n<tr>\n<td>employmentId</td>\n<td>Depends</td>\n<td>Ignored if 'Automatically assign Person Code as Employment ID' is enabled in 'Automatic Person Code' settings; otherwise mandatory.</td>\n</tr>\n<tr>\n<td>salutation</td>\n<td></td>\n<td>If specified, must match a salutation code description.</td>\n</tr>\n<tr>\n<td>firstName</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>familyName</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>knownAs</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>gender</td>\n<td></td>\n<td>If specified, must match a gender code description (e.g. 'Male' or 'Female').  <br />  <br />If left unspecified, defaults to the gender with code 'U'.</td>\n</tr>\n<tr>\n<td>birthDate</td>\n<td></td>\n<td>Required format is YYYYMMDD.  <br />  <br />If left unspecified, defaults to today's date.</td>\n</tr>\n<tr>\n<td>hireDate</td>\n<td>Y</td>\n<td>Required format is YYYYMMDD.</td>\n</tr>\n<tr>\n<td>companyCode</td>\n<td></td>\n<td>Must be specified to create an employment record.</td>\n</tr>\n<tr>\n<td>orgUnitCode</td>\n<td></td>\n<td>Must be specified to create a deployment record.  <br />  <br />The new hire will be set to report to the Org Unit Manager.</td>\n</tr>\n<tr>\n<td>positionCode</td>\n<td></td>\n<td>Ignored if no orgUnitCode is specified.  <br />  <br />Cannot be specified at the same time as positionTitle.</td>\n</tr>\n<tr>\n<td>positionTitle</td>\n<td></td>\n<td>Deprecated: Consider using positionCode instead.  <br />  <br />If specified, must match the title of a current or future position. Cannot be used if positionCode is specified or if position title is not unique in the system.  <br />  <br />Ignored if no orgUnitCode is specified.</td>\n</tr>\n<tr>\n<td>email</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>otherPhoneNumber</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>mobileNumber</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>addressLine1</td>\n<td></td>\n<td>Must be specified to create an employment record. An address type with code 'D' or 'HOME' is also required.</td>\n</tr>\n<tr>\n<td>addressLine2</td>\n<td></td>\n<td>Ignored if addressLine1 is not specified.</td>\n</tr>\n<tr>\n<td>addressLine3</td>\n<td></td>\n<td>Ignored if addressLine1 is not specified.</td>\n</tr>\n<tr>\n<td>city</td>\n<td></td>\n<td>Ignored if addressLine1 is not specified.</td>\n</tr>\n<tr>\n<td>county</td>\n<td></td>\n<td>Ignored if addressLine1 is not specified.</td>\n</tr>\n<tr>\n<td>country</td>\n<td></td>\n<td>Ignored if addressLine1 is not specified.</td>\n</tr>\n<tr>\n<td>postcode</td>\n<td></td>\n<td>Ignored if addressLine1 is not specified.</td>\n</tr>\n<tr>\n<td>vacancyOwner</td>\n<td></td>\n<td>The username of the user who will receive the New Starter Process task in Cezanne.  <br />  <br />No New Starter Process will be created if this value is omitted, invalid, or the user's security role hasn't been mapped to a New Hire Process on the New Hire API Configuration screen.</td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Can add new hires to the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"16da2bee-b448-468b-81ba-a444a7532789","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"dc6789b8-e102-4944-b45f-acb86b4d25e4","type":"text/javascript","exec":[""]}}],"_postman_id":"e7d70898-017d-4671-a807-4071bb635bc5"},{"name":"Absence Plan Adjustments","item":[{"name":"Add an Absence Plan Adjustment","id":"a7b88701-2a2d-4c49-843a-44dc941eea7d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json; charset=UTF-8"}],"body":{"mode":"raw","raw":"{\n  \"absencePlanName\":\"Holiday UK\",\n  \"planEffectiveFrom\":\"20190101\",\n  \"adjustmentEffectiveDate\":\"20191024\"\n}"},"url":"{{url}}/People('[PersonCode]')/People_AbsencePlanAdjustment?$format=json","description":"<p>This request will add an Absence Plan Adjustment record to the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["People('[PersonCode]')","People_AbsencePlanAdjustment"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"240ff31e-f085-428a-a852-f92e9429aa4b","name":"Add an Absence Plan Adjustment","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json; charset=UTF-8"}],"body":{"mode":"raw","raw":"{\n  \"absencePlanName\":\"1212121121 test\",\n  \"planEffectiveFrom\":\"20190101\",\n  \"adjustmentEffectiveDate\":\"20191024\",\n  \"adjustmentAmount\": \"4.00\",\n  \"action\": \"I\"\n}"},"url":{"raw":"{{url}}/People('CEZ66')/People_AbsencePlanAdjustment?$format=json","host":["{{url}}"],"path":["People('CEZ66')","People_AbsencePlanAdjustment"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8"},{"key":"DataServiceVersion","value":"3.0;"},{"key":"Date","value":"Thu, 07 Nov 2019 12:44:07 GMT"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Length","value":"209"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"https://w3.cezanneondemand.com/cezanneondemand/v4/DataService.svc/$metadata#ODataResponse\",\n    \"value\": [\n        {\n            \"EntityID\": \"91a1aa16-0dc6-4004-8b0a-ccd197805dbd\",\n            \"Success\": \"True\",\n            \"Messages\": \"\"\n        }\n    ]\n}"}],"_postman_id":"a7b88701-2a2d-4c49-843a-44dc941eea7d"},{"name":"Update an Absence Plan Adjustment","id":"891e0d44-668e-496e-b63c-82a6b0b2bb92","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json; charset=UTF-8"}],"body":{"mode":"raw","raw":"{\n  \"absencePlanName\":\"Holiday UK\",\n  \"planEffectiveFrom\":\"20190101\",\n  \"adjustmentEffectiveDate\":\"20191024\",\n  \"action\": \"U\"\n}"},"url":"{{url}}/People('[PersonCode]')/People_AbsencePlanAdjustment?$format=json","description":"<p>This request will update an Absence Plan Adjustment in the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for update, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["People('[PersonCode]')","People_AbsencePlanAdjustment"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"7a2fccb3-ed52-4b16-b02b-8467c78f14f7","name":"Update an Absence Plan Adjustment","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json; charset=UTF-8"}],"body":{"mode":"raw","raw":"{\n  \"absencePlanName\":\"1212121121 test\",\n  \"planEffectiveFrom\":\"20190101\",\n  \"adjustmentEffectiveDate\":\"20191024\",\n  \"action\": \"U\"\n}"},"url":{"raw":"{{url}}/People('CEZ66')/People_AbsencePlanAdjustment?$format=json","host":["{{url}}"],"path":["People('CEZ66')","People_AbsencePlanAdjustment"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8"},{"key":"DataServiceVersion","value":"3.0;"},{"key":"Date","value":"Thu, 07 Nov 2019 12:47:39 GMT"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Length","value":"209"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"https://w3.cezanneondemand.com/cezanneondemand/v4/DataService.svc/$metadata#ODataResponse\",\n    \"value\": [\n        {\n            \"EntityID\": \"91a1aa16-0dc6-4004-8b0a-ccd197805dbd\",\n            \"Success\": \"True\",\n            \"Messages\": \"\"\n        }\n    ]\n}"}],"_postman_id":"891e0d44-668e-496e-b63c-82a6b0b2bb92"},{"name":"Delete an Absence Plan Adjustment","id":"86f97c7e-8f40-4ba2-a29e-f10ee41b523a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json; charset=UTF-8"}],"body":{"mode":"raw","raw":"{\n  \"absencePlanName\":\"Holiday UK\",\n  \"planEffectiveFrom\":\"20190101\",\n  \"adjustmentEffectiveDate\":\"20191024\",\n  \"action\": \"D\"\n}"},"url":"{{url}}/People('[PersonCode]')/People_AbsencePlanAdjustment?$format=json","description":"<p>This request will delete an Absence Plan Adjustment from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for deleting, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["People('[PersonCode]')","People_AbsencePlanAdjustment"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"6e753556-2454-42cd-a741-f77dd17e6909","name":"Delete an Absence Plan Adjustment","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json; charset=UTF-8"}],"body":{"mode":"raw","raw":"{\n  \"absencePlanName\":\"1212121121 test\",\n  \"planEffectiveFrom\":\"20190101\",\n  \"adjustmentEffectiveDate\":\"20191024\",\n  \"action\": \"D\"\n}"},"url":{"raw":"{{url}}/People('CEZ66')/People_AbsencePlanAdjustment?$format=json","host":["{{url}}"],"path":["People('CEZ66')","People_AbsencePlanAdjustment"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8"},{"key":"DataServiceVersion","value":"3.0;"},{"key":"Date","value":"Thu, 07 Nov 2019 12:49:24 GMT"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Length","value":"267"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"https://w3.cezanneondemand.com/cezanneondemand/v4/DataService.svc/$metadata#ODataResponse\",\n    \"value\": [\n        {\n            \"EntityID\": \"91a1aa16-0dc6-4004-8b0a-ccd197805dbd\",\n            \"Success\": \"True\",\n            \"Messages\": \"\"\n        }\n    ]\n}"}],"_postman_id":"86f97c7e-8f40-4ba2-a29e-f10ee41b523a"}],"id":"7613aeb9-6aa2-47db-9fae-980ff6fff55b","description":"<p>This function enables you to insert, update or delete Absence Plan Adjustment records for an employee.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>personCode</td>\n<td>Y</td>\n<td>Should match an existing person code and replaces the 'personCode' in the example below</td>\n</tr>\n<tr>\n<td>absencePlanName</td>\n<td>Y</td>\n<td>Should match an Absence Plan Name within the system and replaces the '{0}' in the example below</td>\n</tr>\n<tr>\n<td>planEffectiveFrom</td>\n<td>Y</td>\n<td>Should be formatted as a date field (yyyymmdd) and replaces the '{1}' in the example below</td>\n</tr>\n<tr>\n<td>adjustmentEffectiveDate</td>\n<td>Y</td>\n<td>Should be formatted as a date field (yyyymmdd) and replaces the '{2}' in the example below</td>\n</tr>\n<tr>\n<td>adjustmentAmount</td>\n<td></td>\n<td>Should be a number and replaces the '{3}'' in the example below</td>\n</tr>\n<tr>\n<td>adjustmentReasonCode</td>\n<td></td>\n<td>Should match an Adjustment Reason Code from within the system and replaces the '{4}' in the example below</td>\n</tr>\n<tr>\n<td>approvedByPersonCode</td>\n<td></td>\n<td>Should match a Person Code within the system and replaces the '{5}' in the example below</td>\n</tr>\n<tr>\n<td>notes</td>\n<td></td>\n<td>Replaces the '{6}' in the example below</td>\n</tr>\n<tr>\n<td>action</td>\n<td></td>\n<td>Should be 'I' if inserting, 'U' if updating, 'D' if deleting and replaces the '{7}' in the example below</td>\n</tr>\n</tbody>\n</table>\n</div><h2> Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Can add, update or delete records for everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Can add, update or delete records for people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Can add, update or delete records for them and their subordinates.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Can add, update or delete records for themselves.</td>\n</tr>\n</tbody>\n</table>\n</div><p>The following C# code example can be used to insert, update or delete:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>WebClient wc = new WebClient();\n            wc.Headers.Add(\"Authorization\", \"bearer \" + accessToken);\n            wc.Headers.Add(\"Content-Type\", \"application/json\");\n            string APIEndPoint = ConfigurationManager.AppSettings[\"ApiResourceURITEST\"];\n            string methodEndPoint = \"\";\n            \n            methodEndPoint = String.Concat(APIEndPoint, \"('\", personCode,\"')\", \"/People_AbsencePlanAdjustment\", JSON_PARAMETER);\n\n            string requestBody = String.Format(\"{{ \\\"absencePlanName\\\":\\\"{0}\\\", \\\"planEffectiveFrom\\\":\\\"{1}\\\", \"+\n                                                    \"\\\"adjustmentEffectiveDate\\\":\\\"{2}\\\", \\\"adjustmentAmount\\\":\\\"{3}\\\", \\\"adjustmentReasonCode\\\":\\\"{4}\\\", \" +\n                                                    \"\\\"approvedByPersonCode\\\":\\\"{5}\\\", \"\\\"notes\\\":\\\"{6}\\\", \\\"action\\\":\\\"{7}\\\"}}\",\n                                                absencePlanName, planEffectiveFrom, adjustmentEffectiveDate, adjustmentAmount, adjustmentReasonCode, approvedByPersonCode, notes, action);\n\n            byte[] body = Encoding.UTF8.GetBytes(requestBody);\n            byte[] responseData = await wc.UploadDataTaskAsync(new Uri(methodEndPoint), body);\n            return Encoding.UTF8.GetString(responseData); \n</code></pre>","event":[{"listen":"prerequest","script":{"id":"a39cdee1-dac2-47ad-bd9d-7d6c6a3a9724","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"da1e7bdb-78a6-4015-9de0-0b58e74916f7","type":"text/javascript","exec":[""]}}],"_postman_id":"7613aeb9-6aa2-47db-9fae-980ff6fff55b"},{"name":"Absence Event","item":[{"name":"Add an Absence Event","id":"129632aa-2b6d-4034-a6af-0b0a3c503a6c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"clientSecret":"<client-secret>","clientId":"<client-id>","challengeAlgorithm":"<challenge-algorithm>","scope":"<scope>","grant_type":"<grant_type>","client_authentication":"<client_authentication>","accessTokenUrl":"<access-token-url>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json; charset=UTF-8"}],"body":{"mode":"raw","raw":"{\n  \"absencePlanName\":\"Holiday UK\",\n  \"startDate\":\"20220620\",\n  \"endDate\":\"20220620\",\n  \"useProcessFlow\": \"false\"\n}"},"url":"{{url}}/People('[PersonCode]')/People_AbsenceEvent?$format=json","description":"<p>This request will add an Absence Event to the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["People('[PersonCode]')","People_AbsenceEvent"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"4cac1336-0eb3-4bf0-b3da-33805732f15e","name":"Add an Absence Event","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json; charset=UTF-8"}],"body":{"mode":"raw","raw":"{\n  \"absencePlanName\":\"1212121121 test\",\n  \"startDate\":\"20191024\",\n  \"endDate\":\"20191024\"\n}"},"url":{"raw":"{{url}}/People('CEZ66')/People_AbsenceEvent?$format=json","host":["{{url}}"],"path":["People('CEZ66')","People_AbsenceEvent"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8"},{"key":"DataServiceVersion","value":"3.0;"},{"key":"Date","value":"Thu, 07 Nov 2019 12:27:54 GMT"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Length","value":"436"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"https://w3.cezanneondemand.com/cezanneondemand/v4/DataService.svc/$metadata#AbsenceEventResponse\",\n    \"value\": [\n        {\n            \"PersonGuid\": \"91a1aa16-0dc6-4004-8b0a-ccd197805dbd\",\n            \"EventGuid\": \"8da6b19d-79ff-4eb9-9f7c-41a08842dea1\",\n            \"AbsenceEventInserted\": \"True\",\n            \"AbsenceEventUpdated\": \"False\",\n            \"AbsenceEventDeleted\": \"False\",\n            \"CustomAbsenceEventDetails\": \"False\",\n            \"Messages\": \"\"\n        }\n    ]\n}"}],"_postman_id":"129632aa-2b6d-4034-a6af-0b0a3c503a6c"},{"name":"Update an Absence Event","id":"51484797-711d-4462-b6d8-2d585109cd3a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json; charset=UTF-8"}],"body":{"mode":"raw","raw":"{\n  \"eventGuid\": \"16bfe63a-4f8d-4eb9-9ab5-ca49fb07cae8\",\n  \"absencePlanName\":\"Holiday UK\",\n  \"startDate\":\"20191031\",\n  \"endDate\":\"20191031\",\n  \"action\": \"U\",\n  \"useProcessFlow\": \"false\"\n}"},"url":"{{url}}/People('[PersonCode]')/People_AbsenceEvent?$format=json","description":"<p>This request will update an Absence Event in the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for update, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["People('[PersonCode]')","People_AbsenceEvent"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"52fea61b-5382-4687-bc3a-5b87ef69e662","name":"Update an Absence Event","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json; charset=UTF-8"}],"body":{"mode":"raw","raw":"{\n  \"eventGuid\": \"16bfe63a-4f8d-4eb9-9ab5-ca49fb07cae8\",\n  \"absencePlanName\":\"Holiday UK\",\n  \"startDate\":\"20191031\",\n  \"endDate\":\"20191031\",\n  \"action\": \"U\"\n}"},"url":{"raw":"{{url}}/People('[PersonCode]')/People_AbsenceEvent?$format=json","host":["{{url}}"],"path":["People('[PersonCode]')","People_AbsenceEvent"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8"},{"key":"DataServiceVersion","value":"3.0;"},{"key":"Date","value":"Thu, 07 Nov 2019 12:26:53 GMT"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Length","value":"378"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"https://w3.cezanneondemand.com/cezanneondemand/v4/DataService.svc/$metadata#AbsenceEventResponse\",\n    \"value\": [\n        {\n            \"PersonGuid\": \"91a1aa16-0dc6-4004-8b0a-ccd197805dbd\",\n            \"EventGuid\": \"16bfe63a-4f8d-4eb9-9ab5-ca49fb07cae8\",\n            \"AbsenceEventInserted\": \"False\",\n            \"AbsenceEventUpdated\": \"True\",\n            \"AbsenceEventDeleted\": \"False\",\n            \"CustomAbsenceEventDetails\": \"False\",\n            \"Messages\": \"\"\n        }\n    ]\n}"}],"_postman_id":"51484797-711d-4462-b6d8-2d585109cd3a"},{"name":"Delete an Absence Event","id":"a61cda4b-ec61-4e0d-b789-e1772aca15aa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json; charset=UTF-8"}],"body":{"mode":"raw","raw":"{\n  \"eventGuid\": \"0bfecace-d3f7-45c3-83a6-1af2c8acab23\",\n  \"absencePlanName\":\"Holiday UK\",\n  \"startDate\":\"20191107\",\n  \"endDate\":\"20191107\",\n  \"action\": \"D\",\n  \"useProcessFlow\": \"false\"\n}"},"url":"{{url}}/People('[PersonCode]')/People_AbsenceEvent?$format=json","description":"<p>This request will delete an Absence Event from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for deleting, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["People('[PersonCode]')","People_AbsenceEvent"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"501f6e1a-d05e-42d4-be75-3f0884864e5a","name":"Delete an Absence Event","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json; charset=UTF-8"}],"body":{"mode":"raw","raw":"{\n  \"eventGuid\": \"0bfecace-d3f7-45c3-83a6-1af2c8acab23\",\n  \"absencePlanName\":\"Holiday UK\",\n  \"startDate\":\"20191107\",\n  \"endDate\":\"20191107\",\n  \"action\": \"D\"\n}"},"url":{"raw":"{{url}}/People('CEZ66')/People_AbsenceEvent?$format=json","host":["{{url}}"],"path":["People('CEZ66')","People_AbsenceEvent"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8"},{"key":"DataServiceVersion","value":"3.0;"},{"key":"Date","value":"Thu, 07 Nov 2019 12:32:12 GMT"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Length","value":"441"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"https://w3.cezanneondemand.com/cezanneondemand/v4/DataService.svc/$metadata#AbsenceEventResponse\",\n    \"value\": [\n        {\n            \"PersonGuid\": \"91a1aa16-0dc6-4004-8b0a-ccd197805dbd\",\n            \"EventGuid\": \"0bfecace-d3f7-45c3-83a6-1af2c8acab23\",\n            \"AbsenceEventInserted\": \"False\",\n            \"AbsenceEventUpdated\": \"False\",\n            \"AbsenceEventDeleted\": \"True\",\n            \"CustomAbsenceEventDetails\": \"False\",\n            \"Messages\": \"\"\n        }\n    ]\n}"}],"_postman_id":"a61cda4b-ec61-4e0d-b789-e1772aca15aa"}],"id":"379fb76d-4664-4313-ace8-c0b2a8913d9a","description":"<p>This function enables you to insert, update or delete Absence Event records for an employee, with or without using a Process Flow.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>personCode</td>\n<td>Y</td>\n<td>Should match an existing person code</td>\n</tr>\n<tr>\n<td>eventGuid</td>\n<td></td>\n<td>Is mandatory if updating or deleting</td>\n</tr>\n<tr>\n<td>absencePlanName</td>\n<td>Y</td>\n<td>Should match an Absence Plan Name from within the system</td>\n</tr>\n<tr>\n<td>startDate</td>\n<td>Y</td>\n<td>Should be formatted as a date field (yyyymmdd)</td>\n</tr>\n<tr>\n<td>endDate</td>\n<td>Y</td>\n<td>Should be formatted as a date field (yyyymmdd)</td>\n</tr>\n<tr>\n<td>absenceReasonCode</td>\n<td></td>\n<td>Mandatory if set to be required in the system, should match an Absence Reason Code from within the system</td>\n</tr>\n<tr>\n<td>notes</td>\n<td></td>\n<td>Mandatory if set to be required in the system</td>\n</tr>\n<tr>\n<td>commencesCode</td>\n<td></td>\n<td>Not mandatory, can be S or M</td>\n</tr>\n<tr>\n<td>finishesCode</td>\n<td></td>\n<td>Not mandatory, can be M or E</td>\n</tr>\n<tr>\n<td>statusCode</td>\n<td></td>\n<td>Should match an Absence Status Code</td>\n</tr>\n<tr>\n<td>totalTimeTaken</td>\n<td></td>\n<td>Mandatory if on a manual plan. Should be a number</td>\n</tr>\n<tr>\n<td>action</td>\n<td></td>\n<td>Should be 'I' if inserting, 'U' if updating, 'D' if deleting</td>\n</tr>\n<tr>\n<td>absenceEventDetails</td>\n<td></td>\n<td>Should be entered in the following format \"absenceEventDetails\": \"[{\\\"Date\\\": 20191111, \\\"AMStartTime\\\": 08:00, \\\"AMEndTime\\\": 11:00, \\\"PMStartTime\\\": 14:58, \\\"PMEndTime\\\": 15:59}, {\\\"Date\\\": 20191111, \\\"AMStartTime\\\": 08:00, \\\"AMEndTime\\\": 11:00, \\\"PMStartTime\\\": 14:58, \\\"PMEndTime\\\": 15:59 }]\"</td>\n</tr>\n<tr>\n<td>useProcessFlow</td>\n<td>Y</td>\n<td>Mandatory. When inserting or deleting, this should be either 'true' to use a Process Flow or 'false' to insert/delete the record without using a Process Flow. When updating, this should be 'false'.</td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Can add, update or delete records with or without a process flow for everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Can add, update or delete records for people as defined by the user's security policy outside workflow. Can only kick off a process flow with View Only permissions.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Can add, update or delete records for them and their subordinates but only without a process flow.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Cannot add, update or delete absence records.</td>\n</tr>\n</tbody>\n</table>\n</div><p>The following C# code example can be used to insert, update or delete:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>WebClient wc = new WebClient();\n            wc.Headers.Add(\"Authorization\", \"bearer \" + accessToken);\n            wc.Headers.Add(\"Content-Type\", \"application/json\");\n            string APIEndPoint = ConfigurationManager.AppSettings[\"ApiResourceURITEST\"];\n            string methodEndPoint = \"\";\n            methodEndPoint = String.Concat(APIEndPoint, \"('\", personCode,\"')\", \"/People_AbsenceEvent\", JSON_PARAMETER);\n            string requestBody = String.Format(\"{{ \\\"eventGuid\\\":\\\"{0}\\\", \\\"absencePlanName\\\":\\\"{1}\\\", \" +\n                                                    \"\\\"startDate\\\":\\\"{2}\\\", \\\"endDate\\\":\\\"{3}\\\", \\\"absenceReasonCode\\\":\\\"{4}\\\", \" +\n                                                    \"\\\"notes\\\":\\\"{5}\\\", \\\"commencesCode\\\":\\\"{6}\\\", \\\"finishesCode\\\":\\\"{7}\\\", \\\"statusCode\\\":\\\"{8}\\\", \" +  \"\"\\\"totalTimeTaken\\\":\\\"{9}\\\", \\\"action\\\":\\\"{10}\\\", \\\"absenceEventDetails\\\":\\\"{11}\\\", \\\"useProcessFlow\\\":\\\"{12}\\\"}}\",\n                                                eventGUID, absencePlanName, startDate, endDate, absenceReasonCode, notes, commencesCode, finishesCode, statusCode, totalTimeTaken, action, absenceEventDetails);\n            byte[] body = Encoding.UTF8.GetBytes(requestBody);\n            byte[] responseData = await wc.UploadDataTaskAsync(new Uri(methodEndPoint), body);\n            return Encoding.UTF8.GetString(responseData); \n\n</code></pre>","event":[{"listen":"prerequest","script":{"id":"3cf3d275-171f-4ef4-b95a-8827a28d2ee7","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"89986f8a-5c0f-4af9-a944-dcec758f0397","type":"text/javascript","exec":[""]}}],"_postman_id":"379fb76d-4664-4313-ace8-c0b2a8913d9a"},{"name":"Clock In / Clock Out","item":[{"name":"Add a Clock In / Clock Out Record","id":"051bb060-bc54-4139-90ff-07e2d9308483","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json; charset=UTF-8"}],"body":{"mode":"raw","raw":"{\n  \"clockInDateTime\":\"2023-11-07T19:15:51\",\n  \"clockOutDateTime\":\"2023-11-07T19:16:51\"\n}"},"url":"{{url}}/People('[PersonCode]')/People_ClockInOutDetails?$format=json","description":"<p>This request will add a Clock In / Clock Out record to the system.</p>\n<p><strong>Notes:</strong></p>\n<ul><li><p>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require.<br /></p></li><li><p>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</p></li></ul>","urlObject":{"path":["People('[PersonCode]')","People_ClockInOutDetails"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"cf825f15-9582-412b-a97b-9007b4eb84c2","name":"Add a Clock In / Clock Out Record","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"clockInDateTime\":\"2023-11-08T09:15:51\",\n  \"clockOutDateTime\":\"2023-11-08T17:16:51\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"{{url}}/People('CEZ59')/People_ClockInOutDetails?$format=json","host":["{{url}}"],"path":["People('CEZ59')","People_ClockInOutDetails"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Nov 2023 20:39:33 GMT"},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8"},{"key":"Content-Length","value":"329"},{"key":"Connection","value":"keep-alive"},{"key":"Set-Cookie","value":"AWSALB=kN1eHoUjT3yYNfybur3UukAXvRWNDW84MtzyTMdosrCWdXo+sgOOEXnWAT3eCIQ4UUkN2ttk1cQE+My5XS+wYB0NWEa03WYjNhkDgnooGWp6YuGK9o6bewmJCi03; Expires=Wed, 15 Nov 2023 20:39:32 GMT; Path=/"},{"key":"Set-Cookie","value":"AWSALBCORS=kN1eHoUjT3yYNfybur3UukAXvRWNDW84MtzyTMdosrCWdXo+sgOOEXnWAT3eCIQ4UUkN2ttk1cQE+My5XS+wYB0NWEa03WYjNhkDgnooGWp6YuGK9o6bewmJCi03; Expires=Wed, 15 Nov 2023 20:39:32 GMT; Path=/; SameSite=None; Secure"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"DataServiceVersion","value":"3.0;"},{"key":"Content-Security-Policy","value":"frame-ancestors 'self'"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#ClockInOutDetailsResponse\",\n    \"value\": [\n        {\n            \"PersonGuid\": \"44fe888e-2eb7-789d-8a5c-c3d38aaf3428\",\n            \"ClockInOutDetailGuid\": \"b7fcfe67-e777-888f-9619-d47c7451de07\",\n            \"ClockInOutDetailInserted\": \"True\",\n            \"ClockInOutDetailUpdated\": \"False\",\n            \"Messages\": \"\"\n        }\n    ]\n}"}],"_postman_id":"051bb060-bc54-4139-90ff-07e2d9308483"},{"name":"Update a Clock In / Clock Out Record","id":"5a0a8653-70e5-4341-8527-db83f5c3f843","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json; charset=UTF-8"}],"body":{"mode":"raw","raw":"{\n  \"clockInOutDetailGuid\": \"222a039c-290b-49f3-b222-e57a6b019c21\",\n  \"clockInDateTime\":\"2023-11-07T18:15:51\",\n  \"clockOutDateTime\":\"2023-11-07T18:16:51\",\n  \"action\": \"U\"\n}"},"url":"{{url}}/People('[PersonCode]')/People_ClockInOutDetails?$format=json","description":"<p>This request will update a Clock In / Clock Out record in the system.</p>\n<p><strong>Notes:</strong></p>\n<ul><li><p>The Example Request body includes only the fields that are mandatory for update, you can add any extra fields from the table that you require.<br /></p></li><li><p>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</p></li></ul>","urlObject":{"path":["People('[PersonCode]')","People_ClockInOutDetails"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"9a5f58c6-3a00-4021-8e22-51cd92daf92d","name":"Update a Clock In / Clock Out Record","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json; charset=UTF-8"}],"body":{"mode":"raw","raw":"{\n  \"clockInOutDetailGuid\": \"b7fcfe67-e777-888f-9619-d47c7451de07\",\n  \"clockInDateTime\":\"2023-11-08T09:16:51\",\n  \"clockOutDateTime\":\"2023-11-08T17:30:51\",\n  \"action\": \"U\"\n}"},"url":{"raw":"{{url}}/People('CEZ59')/People_ClockInOutDetails?$format=json","host":["{{url}}"],"path":["People('CEZ59')","People_ClockInOutDetails"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 08 Nov 2023 20:42:58 GMT"},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8"},{"key":"Content-Length","value":"329"},{"key":"Connection","value":"keep-alive"},{"key":"Set-Cookie","value":"AWSALB=k8Y1FAiSs/gpQSeLoJyFE2XPycSwvLnrvRIhJ6uhNXyFdVexUAz0XajZwyIXhVu4Rd8ancNCsNCtcRoraifOzysqzjOvoq/ktKsf0l6XW4hi1hjqeebpMiO8Zh+C; Expires=Wed, 15 Nov 2023 20:42:57 GMT; Path=/"},{"key":"Set-Cookie","value":"AWSALBCORS=k8Y1FAiSs/gpQSeLoJyFE2XPycSwvLnrvRIhJ6uhNXyFdVexUAz0XajZwyIXhVu4Rd8ancNCsNCtcRoraifOzysqzjOvoq/ktKsf0l6XW4hi1hjqeebpMiO8Zh+C; Expires=Wed, 15 Nov 2023 20:42:57 GMT; Path=/; SameSite=None; Secure"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"DataServiceVersion","value":"3.0;"},{"key":"Content-Security-Policy","value":"frame-ancestors 'self'"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; preload"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"{{url}}/$metadata#ClockInOutDetailsResponse\",\n    \"value\": [\n        {\n            \"PersonGuid\": \"44fe888e-2eb7-789d-8a5c-c3d38aaf3428\",\n            \"ClockInOutDetailGuid\": \"b7fcfe67-e777-888f-9619-d47c7451de07\",\n            \"ClockInOutDetailInserted\": \"False\",\n            \"ClockInOutDetailUpdated\": \"True\",\n            \"Messages\": \"\"\n        }\n    ]\n}"}],"_postman_id":"5a0a8653-70e5-4341-8527-db83f5c3f843"}],"id":"59dc7653-ece4-4a21-beca-7b9e445e4036","description":"<p>This function enables you to insert or update Clock In / Clock Out records for an employee.</p>\n<p><strong>Note:</strong> All records added using this API will display 'API' under Device in the Clock In: Original Details and / or the Clock Out: Original Details sections in the system.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>personCode</td>\n<td>Y</td>\n<td>Should match an existing person code.</td>\n</tr>\n<tr>\n<td>clockInOutDetailGuid</td>\n<td></td>\n<td>Is mandatory if updating.</td>\n</tr>\n<tr>\n<td>clockInDateTime</td>\n<td>Y</td>\n<td>Should be formatted as a date / time field (YYYY-MM-DDT00:00:00).</td>\n</tr>\n<tr>\n<td>clockOutDateTime</td>\n<td>Y</td>\n<td>Should be formatted as a date / time field (YYYY-MM-DDT00:00:00).</td>\n</tr>\n<tr>\n<td>clockInTimeZone</td>\n<td></td>\n<td>If left blank, will default to the CICO plan Time Zone. If entered, should match one of the Time Zone ID's from the table below.</td>\n</tr>\n<tr>\n<td>clockOutTimeZone</td>\n<td></td>\n<td>If left blank, will default to the CICO plan Time Zone. If entered, should match one of the Time Zone ID's from the table below.</td>\n</tr>\n<tr>\n<td>action</td>\n<td></td>\n<td>Should be 'I' if inserting, 'U' if updating.</td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Can add, update or delete records with or without a process flow for everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Can add, update or delete records for people as defined by the user's security policy outside workflow. Can only kick off a process flow with View Only permissions.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Can add, update or delete records for them and their subordinates but only without a process flow.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Cannot add, update or delete absence records.</td>\n</tr>\n</tbody>\n</table>\n</div><p>The following table displays the Time Zone ID that should be used when setting the Clock In / Clock Out Time Zone with the corresponding Time Zone Description which is displayed in Cezanne:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Time Zone ID</th>\n<th>Time Zone Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Afghanistan Standard Time</td>\n<td>(UTC+04:30) Kabul</td>\n</tr>\n<tr>\n<td>Alaskan Standard Time</td>\n<td>(UTC-09:00) Alaska</td>\n</tr>\n<tr>\n<td>Arab Standard Time</td>\n<td>(UTC+03:00) Kuwait, Riyadh</td>\n</tr>\n<tr>\n<td>Arabian Standard Time</td>\n<td>(UTC+04:00) Abu Dhabi, Muscat</td>\n</tr>\n<tr>\n<td>Arabic Standard Time</td>\n<td>(UTC+03:00) Baghdad</td>\n</tr>\n<tr>\n<td>Argentina Standard Time</td>\n<td>(UTC-03:00) Buenos Aires</td>\n</tr>\n<tr>\n<td>Atlantic Standard Time</td>\n<td>(UTC-04:00) Atlantic Time (Canada)</td>\n</tr>\n<tr>\n<td>AUS Central Standard Time</td>\n<td>(UTC+09:30) Darwin</td>\n</tr>\n<tr>\n<td>AUS Eastern Standard Time</td>\n<td>(UTC+10:00) Canberra, Melbourne, Sydney</td>\n</tr>\n<tr>\n<td>Azerbaijan Standard Time</td>\n<td>(UTC+04:00) Baku</td>\n</tr>\n<tr>\n<td>Azores Standard Time</td>\n<td>(UTC-01:00) Azores</td>\n</tr>\n<tr>\n<td>Bangladesh Standard Time</td>\n<td>(UTC+06:00) Dhaka</td>\n</tr>\n<tr>\n<td>Canada Central Standard Time</td>\n<td>(UTC-06:00) Saskatchewan</td>\n</tr>\n<tr>\n<td>Cape Verde Standard Time</td>\n<td>(UTC-01:00) Cape Verde Is.</td>\n</tr>\n<tr>\n<td>Caucasus Standard Time</td>\n<td>(UTC+04:00) Yerevan</td>\n</tr>\n<tr>\n<td>Cen. Australia Standard Time</td>\n<td>(UTC+09:30) Adelaide</td>\n</tr>\n<tr>\n<td>Central America Standard Time</td>\n<td>(UTC-06:00) Central America</td>\n</tr>\n<tr>\n<td>Central Asia Standard Time</td>\n<td>(UTC+06:00) Astana</td>\n</tr>\n<tr>\n<td>Central Brazilian Standard Time</td>\n<td>(UTC-04:00) Cuiaba</td>\n</tr>\n<tr>\n<td>Central Europe Standard Time</td>\n<td>(UTC+01:00) Belgrade, Bratislava, Budapest, Ljubljana, Prague</td>\n</tr>\n<tr>\n<td>Central European Standard Time</td>\n<td>(UTC+01:00) Sarajevo, Skopje, Warsaw, Zagreb</td>\n</tr>\n<tr>\n<td>Central Pacific Standard Time</td>\n<td>(UTC+11:00) Solomon Is., New Caledonia</td>\n</tr>\n<tr>\n<td>Central Standard Time</td>\n<td>(UTC-06:00) Central Time (US &amp; Canada)</td>\n</tr>\n<tr>\n<td>Central Standard Time (Mexico)</td>\n<td>(UTC-06:00) Guadalajara, Mexico City, Monterrey</td>\n</tr>\n<tr>\n<td>China Standard Time</td>\n<td>(UTC+08:00) Beijing, Chongqing, Hong Kong, Urumqi</td>\n</tr>\n<tr>\n<td>Dateline Standard Time</td>\n<td>(UTC-12:00) International Date Line West</td>\n</tr>\n<tr>\n<td>E. Africa Standard Time</td>\n<td>(UTC+03:00) Nairobi</td>\n</tr>\n<tr>\n<td>E. Australia Standard Time</td>\n<td>(UTC+10:00) Brisbane</td>\n</tr>\n<tr>\n<td>E. Europe Standard Time</td>\n<td>(UTC+02:00) Minsk</td>\n</tr>\n<tr>\n<td>E. South America Standard Time</td>\n<td>(UTC-03:00) Brasilia</td>\n</tr>\n<tr>\n<td>Eastern Standard Time</td>\n<td>(UTC-05:00) Eastern Time (US &amp; Canada)</td>\n</tr>\n<tr>\n<td>Egypt Standard Time</td>\n<td>(UTC+02:00) Cairo</td>\n</tr>\n<tr>\n<td>Ekaterinburg Standard Time</td>\n<td>(UTC+05:00) Ekaterinburg</td>\n</tr>\n<tr>\n<td>Fiji Standard Time</td>\n<td>(UTC+12:00) Fiji</td>\n</tr>\n<tr>\n<td>FLE Standard Time</td>\n<td>(UTC+02:00) Helsinki, Kyiv, Riga, Sofia, Tallinn, Vilnius</td>\n</tr>\n<tr>\n<td>Georgian Standard Time</td>\n<td>(UTC+04:00) Tbilisi</td>\n</tr>\n<tr>\n<td>GMT Standard Time</td>\n<td>(UTC) Dublin, Edinburgh, Lisbon, London</td>\n</tr>\n<tr>\n<td>Greenland Standard Time</td>\n<td>(UTC-03:00) Greenland</td>\n</tr>\n<tr>\n<td>Greenwich Standard Time</td>\n<td>(UTC) Monrovia, Reykjavik</td>\n</tr>\n<tr>\n<td>GTB Standard Time</td>\n<td>(UTC+02:00) Athens, Bucharest, Istanbul</td>\n</tr>\n<tr>\n<td>Hawaiian Standard Time</td>\n<td>(UTC-10:00) Hawaii</td>\n</tr>\n<tr>\n<td>India Standard Time</td>\n<td>(UTC+05:30) Chennai, Kolkata, Mumbai, New Delhi</td>\n</tr>\n<tr>\n<td>Iran Standard Time</td>\n<td>(UTC+03:30) Tehran</td>\n</tr>\n<tr>\n<td>Israel Standard Time</td>\n<td>(UTC+02:00) Jerusalem</td>\n</tr>\n<tr>\n<td>Jordan Standard Time</td>\n<td>(UTC+02:00) Amman</td>\n</tr>\n<tr>\n<td>Kamchatka Standard Time</td>\n<td>(UTC+12:00) Petropavlovsk-Kamchatsky - Old</td>\n</tr>\n<tr>\n<td>Korea Standard Time</td>\n<td>(UTC+09:00) Seoul</td>\n</tr>\n<tr>\n<td>Magadan Standard Time</td>\n<td>(UTC+11:00) Magadan</td>\n</tr>\n<tr>\n<td>Mauritius Standard Time</td>\n<td>(UTC+04:00) Port Louis</td>\n</tr>\n<tr>\n<td>Mid-Atlantic Standard Time</td>\n<td>(UTC-02:00) Mid-Atlantic</td>\n</tr>\n<tr>\n<td>Middle East Standard Time</td>\n<td>(UTC+02:00) Beirut</td>\n</tr>\n<tr>\n<td>Montevideo Standard Time</td>\n<td>(UTC-03:00) Montevideo</td>\n</tr>\n<tr>\n<td>Morocco Standard Time</td>\n<td>(UTC) Casablanca</td>\n</tr>\n<tr>\n<td>Mountain Standard Time</td>\n<td>(UTC-07:00) Mountain Time (US &amp; Canada)</td>\n</tr>\n<tr>\n<td>Mountain Standard Time</td>\n<td>(UTC-07:00) Chihuahua, La Paz, Mazatlan</td>\n</tr>\n<tr>\n<td>Myanmar Standard Time</td>\n<td>(UTC+06:30) Yangon (Rangoon)</td>\n</tr>\n<tr>\n<td>N. Central Asia Standard Time</td>\n<td>(UTC+06:00) Novosibirsk</td>\n</tr>\n<tr>\n<td>Namibia Standard Time</td>\n<td>(UTC+01:00) Windhoek</td>\n</tr>\n<tr>\n<td>Nepal Standard Time</td>\n<td>(UTC+05:45) Kathmandu</td>\n</tr>\n<tr>\n<td>New Zealand Standard Time</td>\n<td>(UTC+12:00) Auckland, Wellington</td>\n</tr>\n<tr>\n<td>Newfoundland Standard Time</td>\n<td>(UTC-03:30) Newfoundland</td>\n</tr>\n<tr>\n<td>North Asia East Standard Time</td>\n<td>(UTC+08:00) Irkutsk</td>\n</tr>\n<tr>\n<td>North Asia Standard Time</td>\n<td>(UTC+07:00) Krasnoyarsk</td>\n</tr>\n<tr>\n<td>Pacific SA Standard Time</td>\n<td>(UTC-04:00) Santiago</td>\n</tr>\n<tr>\n<td>Pacific Standard Time</td>\n<td>(UTC-08:00) Pacific Time (US &amp; Canada)</td>\n</tr>\n<tr>\n<td>Pacific Standard Time (Mexico)</td>\n<td>(UTC-08:00) Baja California</td>\n</tr>\n<tr>\n<td>Pakistan Standard Time</td>\n<td>(UTC+05:00) Islamabad, Karachi</td>\n</tr>\n<tr>\n<td>Paraguay Standard Time</td>\n<td>(UTC-04:00) Asuncion</td>\n</tr>\n<tr>\n<td>Romance Standard Time</td>\n<td>(UTC+01:00) Brussels, Copenhagen, Madrid, Paris</td>\n</tr>\n<tr>\n<td>Russian Standard Time</td>\n<td>(UTC+03:00) Moscow, St. Petersburg, Volgograd</td>\n</tr>\n<tr>\n<td>SA Eastern Standard Time</td>\n<td>(UTC-03:00) Cayenne, Fortaleza</td>\n</tr>\n<tr>\n<td>SA Pacific Standard Time</td>\n<td>(UTC-05:00) Bogota, Lima, Quito</td>\n</tr>\n<tr>\n<td>SA Western Standard Time</td>\n<td>(UTC-04:00) Georgetown, La Paz, Manaus, San Juan</td>\n</tr>\n<tr>\n<td>Samoa Standard Time</td>\n<td>(UTC-11:00) Samoa</td>\n</tr>\n<tr>\n<td>SE Asia Standard Time</td>\n<td>(UTC+07:00) Bangkok, Hanoi, Jakarta</td>\n</tr>\n<tr>\n<td>Singapore Standard Time</td>\n<td>(UTC+08:00) Kuala Lumpur, Singapore</td>\n</tr>\n<tr>\n<td>South Africa Standard Time</td>\n<td>(UTC+02:00) Harare, Pretoria</td>\n</tr>\n<tr>\n<td>Sri Lanka Standard Time</td>\n<td>(UTC+05:30) Sri Jayawardenepura</td>\n</tr>\n<tr>\n<td>Syria Standard Time</td>\n<td>(UTC+02:00) Damascus</td>\n</tr>\n<tr>\n<td>Taipei Standard Time</td>\n<td>(UTC+08:00) Taipei</td>\n</tr>\n<tr>\n<td>Tasmania Standard Time</td>\n<td>(UTC+10:00) Hobart</td>\n</tr>\n<tr>\n<td>Tokyo Standard Time</td>\n<td>(UTC+09:00) Osaka, Sapporo, Tokyo</td>\n</tr>\n<tr>\n<td>Tonga Standard Time</td>\n<td>(UTC+13:00) Nuku'alofa</td>\n</tr>\n<tr>\n<td>Ulaanbaatar Standard Time</td>\n<td>(UTC+08:00) Ulaanbaatar</td>\n</tr>\n<tr>\n<td>US Eastern Standard Time</td>\n<td>(UTC-05:00) Indiana (East)</td>\n</tr>\n<tr>\n<td>US Mountain Standard Time</td>\n<td>(UTC-07:00) Arizona</td>\n</tr>\n<tr>\n<td>UTC</td>\n<td>(UTC) Coordinated Universal Time</td>\n</tr>\n<tr>\n<td>UTC+12</td>\n<td>(UTC+12:00) Coordinated Universal Time+12</td>\n</tr>\n<tr>\n<td>UTC-02</td>\n<td>(UTC-02:00) Coordinated Universal Time-02</td>\n</tr>\n<tr>\n<td>UTC-11</td>\n<td>(UTC-11:00) Coordinated Universal Time-11</td>\n</tr>\n<tr>\n<td>Venezuela Standard Time</td>\n<td>(UTC-04:30) Caracas</td>\n</tr>\n<tr>\n<td>Vladivostok Standard Time</td>\n<td>(UTC+10:00) Vladivostok</td>\n</tr>\n<tr>\n<td>W. Australia Standard Time</td>\n<td>(UTC+08:00) Perth</td>\n</tr>\n<tr>\n<td>W. Central Africa Standard Time</td>\n<td>(UTC+01:00) West Central Africa</td>\n</tr>\n<tr>\n<td>W. Europe Standard Time</td>\n<td>(UTC+01:00) Amsterdam, Berlin, Bern, Rome, Stockholm, Vienna</td>\n</tr>\n<tr>\n<td>West Asia Standard Time</td>\n<td>(UTC+05:00) Tashkent</td>\n</tr>\n<tr>\n<td>West Pacific Standard Time</td>\n<td>(UTC+10:00) Guam, Port Moresby</td>\n</tr>\n<tr>\n<td>Yakutsk Standard Time</td>\n<td>(UTC+09:00) Yakutsk</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"3cf3d275-171f-4ef4-b95a-8827a28d2ee7","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"89986f8a-5c0f-4af9-a944-dcec758f0397","type":"text/javascript","exec":[""]}}],"_postman_id":"59dc7653-ece4-4a21-beca-7b9e445e4036"},{"name":"Payroll - Additions & Deductions","item":[{"name":"Add an Additons & Deductions record","id":"a28b07c1-69a7-423a-850f-961d378aa248","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json; charset=UTF-8"}],"body":{"mode":"raw","raw":"{\n  \"description\":\"Annual Bonus\",\n  \"payCode\":\"BONUS\",\n  \"oneOffDate\": \"20250126\",\n  \"fixedAmount\": \"1000.00\",\n  \"employmentId\": \"CEZ001\",\n  \"action\": \"I\"\n}"},"url":"{{url}}/People('[PersonCode]')/People_AdditionsAndDeductions?$format=json","description":"<p>This request will add an Additions &amp; Deductions record to the system.</p>\n<p><strong>Notes:</strong></p>\n<ul><li><div>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require.<br /></div></li><li><div>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</div></li></ul>","urlObject":{"path":["People('[PersonCode]')","People_AdditionsAndDeductions"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[],"_postman_id":"a28b07c1-69a7-423a-850f-961d378aa248"},{"name":"Update an Additons & Deductions record","id":"7b0abcd9-b78d-46c4-9a80-2f11480ebec4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"token":"<token>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json; charset=UTF-8"}],"body":{"mode":"raw","raw":"{\n  \"additionDeductionGuid\": \"222a039c-290b-49f3-b222-e57a6b019c21\",\n  \"description\":\"New Bonus\",\n  \"payCode\":\"BONUS\",\n  \"oneOffDate\": \"20250102\",\n  \"fixedAmount\": \"1500.00\",\n  \"action\": \"U\"\n}"},"url":"{{url}}/People('[PersonCode]')/People_AdditionsAndDeductions?$format=json","description":"<p>This request will update an Additions &amp; Deductions record in the system.</p>\n<p><strong>Notes:</strong></p>\n<ul><li><div>The Example Request body includes only the fields that are mandatory for update, you can add any extra fields from the table that you require.<br /></div></li><li><div>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</div></li></ul>","urlObject":{"path":["People('[PersonCode]')","People_AdditionsAndDeductions"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[],"_postman_id":"7b0abcd9-b78d-46c4-9a80-2f11480ebec4"}],"id":"9757119d-df9b-4394-bf1e-982262b95637","description":"<p>This function enables you to insert or update Additions &amp; Deductions records for an employee.</p>\n<p><strong>Note:</strong> You can't update an Addition &amp; Deduction record that has been paid.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>personCode</td>\n<td>Y</td>\n<td>Should match an existing person code.</td>\n</tr>\n<tr>\n<td>additionDeductionGuid</td>\n<td></td>\n<td>Is mandatory if updating.</td>\n</tr>\n<tr>\n<td>description</td>\n<td>Y</td>\n<td></td>\n</tr>\n<tr>\n<td>payCode</td>\n<td>Y</td>\n<td>Should match an existing pay code.</td>\n</tr>\n<tr>\n<td>oneOffDate</td>\n<td></td>\n<td>Is mandatory If effectiveFrom and effectiveTo are blank.</td>\n</tr>\n<tr>\n<td>fixedAmount</td>\n<td></td>\n<td>Is mandatory if Pay Code has calculation type of 'Fixed Amount' and Multiplier 'None'.</td>\n</tr>\n<tr>\n<td>fixedAmountRate</td>\n<td></td>\n<td>Is mandatory if Pay Code has calculation type of 'Fixed Amount' and Multiplier 'Hours' or 'Days'.</td>\n</tr>\n<tr>\n<td>fixedAmountMultiplier</td>\n<td></td>\n<td>Is mandatory if Pay Code has calculation type of 'Fixed Amount' and Multiplier 'Hours' or 'Days'.</td>\n</tr>\n<tr>\n<td>multipleOfHourly</td>\n<td></td>\n<td>Is mandatory if Pay Code has calculation type of 'Multiple of Hourly Rate'.</td>\n</tr>\n<tr>\n<td>employmentId</td>\n<td>Y</td>\n<td>Should match an existing Employment ID.</td>\n</tr>\n<tr>\n<td>effectiveFrom</td>\n<td></td>\n<td>Is mandatory If OneOffDate is blank.</td>\n</tr>\n<tr>\n<td>effectiveTo</td>\n<td></td>\n<td>Is mandatory If OneOffDate is blank.</td>\n</tr>\n<tr>\n<td>action</td>\n<td></td>\n<td>Should be 'I' if inserting, 'U' if updating.</td>\n</tr>\n</tbody>\n</table>\n</div><h2>Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Can add, update or delete records with or without a process flow for everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Can add, update or delete records for people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Cannot add, update or delete Additions &amp; Deductions records.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Cannot add, update or delete Additions &amp; Deductions records.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"3cf3d275-171f-4ef4-b95a-8827a28d2ee7","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"89986f8a-5c0f-4af9-a944-dcec758f0397","type":"text/javascript","exec":[""]}}],"_postman_id":"9757119d-df9b-4394-bf1e-982262b95637"},{"name":"National Contract Salary Levels","item":[{"name":"Add a National Contract Salary Level","id":"8e684432-c63b-48c6-a6cd-f4fbd19efa84","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"clientSecret":"<client-secret>","clientId":"<client-id>","challengeAlgorithm":"<challenge-algorithm>","scope":"<scope>","grant_type":"<grant_type>","client_authentication":"<client_authentication>","accessTokenUrl":"<access-token-url>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json; charset=UTF-8"}],"body":{"mode":"raw","raw":"{\n  \"effectiveFrom\":\"20191024\",\n  \"effectiveTo\":\"20191031\",\n  \"ccnlCode\": \"21\",\n  \"contractualSalaryLevelCode\": \"A2\",\n  \"employmentID\": \"EMP0004\"\n}"},"url":"{{url}}/People('[PersonCode]')/People_SalaryLevel?$format=json","description":"<p>This request will add an National Contract Salary Level record to the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["People('[PersonCode]')","People_SalaryLevel"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"7c423011-a99a-4c9b-9a00-e7045a2a208b","name":"Add a National Contract Salary Level","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json; charset=UTF-8"}],"body":{"mode":"raw","raw":"{\n  \"effectiveFrom\":\"20191024\",\n  \"effectiveTo\":\"20191031\",\n  \"ccnlCode\": \"21\",\n  \"contractualSalaryLevelCode\": \"A2\",\n  \"employmentID\": \"EMP0004\"\n}"},"url":{"raw":"{{url}}/People('CEZ66')/People_SalaryLevel?$format=json","host":["{{url}}"],"path":["People('CEZ66')","People_SalaryLevel"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8"},{"key":"DataServiceVersion","value":"3.0;"},{"key":"Date","value":"Thu, 07 Nov 2019 15:53:44 GMT"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Length","value":"209"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"https://w3.cezanneondemand.com/cezanneondemand/v4/DataService.svc/$metadata#ODataResponse\",\n    \"value\": [\n        {\n            \"EntityID\": \"91a1aa16-0dc6-4004-8b0a-ccd197805dbd\",\n            \"Success\": \"True\",\n            \"Messages\": \"\"\n        }\n    ]\n}"}],"_postman_id":"8e684432-c63b-48c6-a6cd-f4fbd19efa84"},{"name":"Update a National Contract Salary Level","id":"52b9b1c9-505a-45b1-b3e6-a4f8f4f32009","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"clientSecret":"<client-secret>","clientId":"<client-id>","challengeAlgorithm":"<challenge-algorithm>","scope":"<scope>","grant_type":"<grant_type>","client_authentication":"<client_authentication>","accessTokenUrl":"<access-token-url>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json; charset=UTF-8"}],"body":{"mode":"raw","raw":"{\n  \"effectiveFrom\":\"20191024\",\n  \"effectiveTo\":\"20191031\",\n  \"ccnlCode\": \"21\",\n  \"contractualSalaryLevelCode\": \"A2\",\n  \"employmentID\": \"EMP0004\",\n  \"action\": \"U\"\n}"},"url":"{{url}}/People('[PersonCode]')/People_SalaryLevel?$format=json","description":"<p>This request will update a National Contract Salary Level record in the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for update, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["People('[PersonCode]')","People_SalaryLevel"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[{"id":"ac8a383c-e779-4bc7-a153-7a915f5a2e08","name":"Update a National Contract Salary Level","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json; charset=UTF-8"}],"body":{"mode":"raw","raw":"{\n  \"effectiveFrom\":\"20191024\",\n  \"effectiveTo\":\"20191031\",\n  \"ccnlCode\": \"21\",\n  \"contractualSalaryLevelCode\": \"A2\",\n  \"employmentID\": \"EMP0004\",\n  \"action\": \"U\"\n}"},"url":{"raw":"{{url}}/People('CEZ66')/People_SalaryLevel?$format=json","host":["{{url}}"],"path":["People('CEZ66')","People_SalaryLevel"],"query":[{"key":"$format","value":"json"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-cache"},{"key":"Content-Type","value":"application/json;odata=minimalmetadata;streaming=true;charset=utf-8"},{"key":"DataServiceVersion","value":"3.0;"},{"key":"Date","value":"Thu, 07 Nov 2019 15:56:33 GMT"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Content-Length","value":"209"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"odata.metadata\": \"https://w3.cezanneondemand.com/cezanneondemand/v4/DataService.svc/$metadata#ODataResponse\",\n    \"value\": [\n        {\n            \"EntityID\": \"91a1aa16-0dc6-4004-8b0a-ccd197805dbd\",\n            \"Success\": \"True\",\n            \"Messages\": \"\"\n        }\n    ]\n}"}],"_postman_id":"52b9b1c9-505a-45b1-b3e6-a4f8f4f32009"},{"name":"Delete a National Contract Salary Level","id":"0cfc1382-0485-4b2a-bf2e-6d747750121d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"clientSecret":"<client-secret>","clientId":"<client-id>","challengeAlgorithm":"<challenge-algorithm>","scope":"<scope>","grant_type":"<grant_type>","client_authentication":"<client_authentication>","accessTokenUrl":"<access-token-url>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json; charset=UTF-8"}],"body":{"mode":"raw","raw":"{\n  \"effectiveFrom\":\"20191024\",\n  \"effectiveTo\":\"20191031\",\n  \"ccnlCode\": \"21\",\n  \"contractualSalaryLevelCode\": \"A2\",\n  \"employmentID\": \"EMP0004\",\n  \"action\": \"D\"\n}"},"url":"{{url}}/People('CEZ66')/People_SalaryLevel?$format=json","description":"<p>This request will delete National Contract Salary Level record from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>The Example Request body includes only the fields that are mandatory for deleting, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["People('CEZ66')","People_SalaryLevel"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[],"_postman_id":"0cfc1382-0485-4b2a-bf2e-6d747750121d"}],"id":"0e3a8db9-9a20-4c67-880c-b94d8e86d3ca","description":"<p>This function enables you to insert, update or delete National Contract Salary Level records for an employee.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>personCode</td>\n<td>Y</td>\n<td>Should match an existing person code and replaces the 'personCode' in the example below</td>\n</tr>\n<tr>\n<td>effectiveFrom</td>\n<td>Y</td>\n<td>Should be formatted as a date field (yyyymmdd) and replaces the '{0}' in the example below</td>\n</tr>\n<tr>\n<td>effectiveTo</td>\n<td>Y</td>\n<td>Should be formatted as a date field (yyyymmdd) and replaces the '{1}' in the example below</td>\n</tr>\n<tr>\n<td>ccnlCode</td>\n<td>Y</td>\n<td>Should match a CCNL Code from within the system and replaces the '{2}'' in the example below</td>\n</tr>\n<tr>\n<td>contractualSalaryLevelCode</td>\n<td>Y</td>\n<td>Should match a Contractual Salary Level Code from within the system and replaces the '{3}' in the example below</td>\n</tr>\n<tr>\n<td>employmentID</td>\n<td>Y</td>\n<td>Should match an EmploymentID for the person within the system and replaces the '{4}' in the example below</td>\n</tr>\n<tr>\n<td>salaryLevelReasonCode</td>\n<td></td>\n<td>Should match a Salary Level Reason Code from within the system and replaces the '{5}' in the example below</td>\n</tr>\n<tr>\n<td>action</td>\n<td></td>\n<td>Should be 'I' if inserting, 'U' if updating, 'D' if deleting and replaces the '{6}' in the example below</td>\n</tr>\n</tbody>\n</table>\n</div><h2> Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Can add, update or delete records for everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Can add, update or delete records for people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Can add, update or delete records for them and their subordinates.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Can add, update or delete records for themselves.</td>\n</tr>\n</tbody>\n</table>\n</div><p>The following C# code example can be used to insert, update or delete:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>WebClient wc = new WebClient();\n            wc.Headers.Add(\"Authorization\", \"bearer \" + accessToken);\n            wc.Headers.Add(\"Content-Type\", \"application/json\");\n            string APIEndPoint = ConfigurationManager.AppSettings[\"ApiResourceURITEST\"];\n            string methodEndPoint = \"\";\n            \n            methodEndPoint = String.Concat(APIEndPoint, \"('\", personCode,\"')\", \"/People_SalaryLevel\", JSON_PARAMETER);\n\n            string requestBody = String.Format(\"{{ \\\"effectiveFrom\\\":\\\"{0}\\\", \\\"effectiveTo\\\":\\\"{1}\\\", \" +\n                                                    \"\\\"ccnlCode\\\":\\\"{2}\\\", \\\"contractualSalaryLevelCode\\\":\\\"{3}\\\", \\\"employmentID\\\":\\\"{4}\\\", \" +\n                                                    \"\\\"salaryLevelReasonCode\\\":\\\"{5}\\\", \\\"action\\\":\\\"{6}\\\"}}\",\n                                                effectiveFrom, effectiveTo, ccnlCode, salaryLevelCode, employmentID, salaryLevelReasonCode, action);\n\n            byte[] body = Encoding.UTF8.GetBytes(requestBody);\n            byte[] responseData = await wc.UploadDataTaskAsync(new Uri(methodEndPoint), body);\n            return Encoding.UTF8.GetString(responseData); \n</code></pre>","event":[{"listen":"prerequest","script":{"id":"e3d6b32d-9a2b-45ac-8907-1e28b6a3ee2b","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"7b4a20b7-772c-4329-a030-9202930f7fb5","type":"text/javascript","exec":[""]}}],"_postman_id":"0e3a8db9-9a20-4c67-880c-b94d8e86d3ca"}],"id":"12d76e1b-4c0b-466b-a6f0-e93d3941a724","description":"<p>Functions enable you to add records to certain APIs that are otherwise read-only.</p>\n","event":[{"listen":"prerequest","script":{"id":"a4940f33-1448-4b13-a733-5ab9b4fb3371","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"61c09b19-bff9-4b64-a4db-e64763138661","type":"text/javascript","exec":[""]}}],"_postman_id":"12d76e1b-4c0b-466b-a6f0-e93d3941a724"},{"name":"Form Builder","item":[{"name":"List of all employee records for the form","id":"8a772d3f-a40c-4a46-9f74-b055b2a49fbc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/Your-Form-Name?$format=json","description":"<p>This request will return all employee instances of a custom form from the system.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>Your-Form-Name should be replaced with the name of your custom form. If there are spaces in the name they should be replaced with underscores, e.g. \"Example Form Name\" should be \"Example_Form_Name\".</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n<li>We strongly recommend that you use the available parameters below to filter the data you are retrieving.</li>\n</ul>\n\n<p>Available Parameters:</p>\n<ul>\n<li>$filter</li>\n<li>$top</li>\n<li>$orderby</li>\n<li>$select</li>\n<li>$skip</li>\n<li>$inlinecount</li>\n</ul>\n\n<p>For more information about using the above parameters, see: <a href=\"http://www.odata.org/documentation/odata-version-2-0/uri-conventions/\">OData URI Conventions</a></p>\n","urlObject":{"path":["Your-Form-Name"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[],"_postman_id":"8a772d3f-a40c-4a46-9f74-b055b2a49fbc"},{"name":"Add a new form for an employee","id":"3676ac96-76e4-435f-a43d-a770a2f95734","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"body":{"mode":"formdata","formdata":[]},"url":"{{url}}/Your-Form-Name?$format=json","description":"<p>This request will insert an instance of a custom form for an employee.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>Your-Form-Name should be replaced with the name of your custom form. If there are spaces in the name they should be replaced with underscores, e.g. \"Example Form Name\" should be \"Example_Form_Name\".</li>\n<li>The Example Request body includes only the fields that are mandatory for import, you can add any extra fields from the table that you require. \n</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["Your-Form-Name"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[],"_postman_id":"3676ac96-76e4-435f-a43d-a770a2f95734"},{"name":"Update a form for an employee","id":"202b1d22-acb7-4f94-93a0-02b4aee737f6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"PUT","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"CustomField\": \"Example\"\n}","options":{"raw":{"language":"json"}}},"url":"{{url}}/Your-Form-Name(PersonGuid=guid'[PersonGUID]', FormGuid=guid'[Your-Form-NameGUID]', FormTypeGuid=guid'[FormTypeGuid]')","description":"<br />\n<b>Notes:</b>\n<ul>\n<li>Your-Form-Name should be replaced with the name of your custom form. If there are spaces in the name they should be replaced with underscores, e.g. \"Example Form Name\" should be \"Example_Form_Name\".</li>\n<li>The Request body includes only one field as an example. You can add any extra fields from the table that you require. However, some fields are read-only. \n</li>\n<li>The PersonGuid, FormGuid and FormTypeGuid cannot be updated as they are the key fields for this table.</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.</li>\n</ul>","urlObject":{"path":["Your-Form-Name(PersonGuid=guid'[PersonGUID]', FormGuid=guid'[Your-Form-NameGUID]', FormTypeGuid=guid'[FormTypeGuid]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"202b1d22-acb7-4f94-93a0-02b4aee737f6"},{"name":"Delete a form for an employee","id":"d2997682-8fb5-4e0b-812a-3e7c7470c62e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"DELETE","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"body":{"mode":"formdata","formdata":[]},"url":"{{url}}/Your-Form-Name(PersonGuid=guid'[PersonGUID]', FormGuid=guid'[Your-Form-NameGUID]', FormTypeGuid=guid'[FormTypeGuid]')","description":"<p>This request will delete an instance of a custom form for an employee.</p>\n<br />\n<b>Notes:</b>\n<ul>\n<li>Your-Form-Name should be replaced with the name of your custom form. If there are spaces in the name they should be replaced with underscores, e.g. \"Example Form Name\" should be \"Example_Form_Name\".</li>\n<li>'Your-API-Token' indicates where you should enter the access token, generated using the Authentication section.\n</li>\n</ul>","urlObject":{"path":["Your-Form-Name(PersonGuid=guid'[PersonGUID]', FormGuid=guid'[Your-Form-NameGUID]', FormTypeGuid=guid'[FormTypeGuid]')"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d2997682-8fb5-4e0b-812a-3e7c7470c62e"}],"id":"4691e61f-1064-4337-b5ee-a38916757717","description":"<p>When a form is created using the Form Builder, a table-based API is created for the form. This table can then be retrieved and modified like a standard table-based API.</p>\n<p>The identifying key for Form Builder forms are:</p>\n<ul>\n<li>PersonGuid</li>\n<li>FormGuid</li>\n<li>FormTypeGuid</li>\n</ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>FormGuid</td>\n<td></td>\n<td>Key. Mandatory for update and delete.</td>\n</tr>\n<tr>\n<td>FormTypeGuid</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>PersonGuid</td>\n<td>Y</td>\n<td>Key.</td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedDate</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ApprovalStatus</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Approver</td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>ApproverEmail</td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><p>The rest of the fields will be the fields you have added to your custom form.</p>\n<h2>Note</h2>Your-Form-Name should be replaced with the name of your custom form. If there are spaces in the name they should be replaced with underscores, e.g. \"Example Form Name\" should be \"Example_Form_Name\".\n\n<h2> Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has full access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has access to people as defined by the user's security policy.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has no access to this API.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has no access to this API.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"6204404b-d291-451e-ab74-e79eb0ffabb2","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"4b887c90-7699-481a-9522-ffae20160c71","type":"text/javascript","exec":[""]}}],"_postman_id":"4691e61f-1064-4337-b5ee-a38916757717"},{"name":"Goals Form Builder (Read-Only)","item":[{"name":"List of all goal records for the form","id":"b084367c-a248-4d1d-ad8e-8b651f8b4e0c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer Your-API-Token"}],"url":"{{url}}/Your-Form-Name?$format=json","urlObject":{"path":["Your-Form-Name"],"host":["{{url}}"],"query":[{"key":"$format","value":"json"}],"variable":[]}},"response":[],"_postman_id":"b084367c-a248-4d1d-ad8e-8b651f8b4e0c"}],"id":"3eabe194-6332-4e88-916e-0cc849654852","description":"<p>When a form is created using the Goals Form Builder, a table-based API is created for the form. This table can then be retrieved like a standard table-based API.</p>\n<p>The identifying key for Goals Form Builder forms are:</p>\n<ul>\n<li>GoalGUID</li>\n</ul>\n\n<h2>Fields</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Mandatory</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>FullName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>PersonCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>GoalGUID</td>\n<td></td>\n<td>Key. Read-only.</td>\n</tr>\n<tr>\n<td>CreatedOn</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>CreatedBy</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>InsertUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LastModifiedUser</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LatestStatusCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ObjectiveCategoryCode</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ObjectiveCategoryDescription</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ApproverName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>LatestStatus</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>GoalFormName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n<tr>\n<td>ReviewerName</td>\n<td></td>\n<td>Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><p>The rest of the fields will be the fields you have added to your custom Goals form.</p>\n<h2> Security</h2>\n\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Security Role</th>\n<th>Comments</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>HR Professional</td>\n<td>Has read-only access to everyone within the system.</td>\n</tr>\n<tr>\n<td>Restricted HR Professional</td>\n<td>Has read-only access to people as defined by the user's security policy and any Goal they are the Reviewer for.</td>\n</tr>\n<tr>\n<td>Line Manager</td>\n<td>Has read-only access to people in their team and any Goal they are the Reviewer for.</td>\n</tr>\n<tr>\n<td>Self Service</td>\n<td>Has read-only access to themselves and any Goal they are the Reviewer for.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"6204404b-d291-451e-ab74-e79eb0ffabb2","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"4b887c90-7699-481a-9522-ffae20160c71","type":"text/javascript","exec":[""]}}],"_postman_id":"3eabe194-6332-4e88-916e-0cc849654852"},{"name":"Batch Save","item":[{"name":"Batch Save","id":"5ccca4d8-2d24-4723-85bc-0f663ca40275","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"challengeAlgorithm":"<challenge-algorithm>","scope":"<scope>","grant_type":"<grant_type>","client_authentication":"<client_authentication>","accessTokenUrl":"<access-token-url>","accessToken":"<access-token>","tokenType":"<token-type>"},"isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer Your-API-Token"},{"key":"Content-Type","value":"application/json; charset=UTF-8"}],"body":{"mode":"raw","raw":"--batch_123\nContent-Type: multipart/mixed; boundary=changeset_7f9fd289-3585-4b9e-ba40-814f3897bc4a\n\n--changeset_7f9fd289-3585-4b9e-ba40-814f3897bc4a\nContent-Type: application/http\nContent-Transfer-Encoding: binary\n\nPUT https://w3.cezanneondemand.com/CezanneOnDemand/v5/DataService.svc/EmploymentStatus(EffectiveFrom=datetime'2020-01-01T00%3A00%3A00',EmploymentStatusReason='Leave',PersonCode='CEZ01') HTTP/1.1\nContent-ID: 2\nContent-Type: application/json\nDataServiceVersion: 1.0;NetFx\nMaxDataServiceVersion: 3.0;NetFx\nAccept: application/json\nAccept-Charset: UTF-8\nUser-Agent: Microsoft ADO.NET Data Services\n\n{\n      \"Comments\": \"asdasdasdasda\",\n      \"ExcludeFromHeadcounts\": \"0\"\n    }\n--changeset_7f9fd289-3585-4b9e-ba40-814f3897bc4a--\n--batch_2d15c4cf-6319-4235-98b0-60a74c7828a0--","options":{"raw":{"language":"text"}}},"url":"{{url}}/$batch","urlObject":{"path":["$batch"],"host":["{{url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5ccca4d8-2d24-4723-85bc-0f663ca40275"}],"id":"5c0ecd18-0620-4612-8231-0504e0884f2d","description":"<p>Due to a limitation of the OData 3.0 API, date fields are not supported in the query url. Therefore, if you are trying to update or delete a record from a table where the key fields include a date, you will need to use a Batch Save.</p>\n<p>You can also use Batch Saves to run mutliple calls to different APIs in a single request.</p>\n","event":[{"listen":"prerequest","script":{"id":"db606c5a-5976-49a2-a29b-6d881ebb665e","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"b4077c6d-f9c7-4a81-9846-055f1bb81f10","type":"text/javascript","exec":[""]}}],"_postman_id":"5c0ecd18-0620-4612-8231-0504e0884f2d"}],"event":[{"listen":"prerequest","script":{"id":"48c003d0-5c5f-4736-acc2-b7ff0c35c97b","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"cfbb7c02-24d8-43c2-a34a-f02c20ec90a1","type":"text/javascript","exec":[""]}}]}