{"info":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","description":"<html><head></head><body><p>The Teamtailor API follows the <a href=\"http://jsonapi.org/\">JSON API Specification</a>.</p>\n<p>If you have any questions or feedback, please contact us at <a href=\"https://mailto:support@teamtailor.com\">support@teamtailor.com</a></p>\n<h2 id=\"example-use-cases\">Example use cases:</h2>\n<ul>\n<li><p>Add/Import candidates and get detailed information about candidates</p>\n</li>\n<li><p>Build a custom career site. Display info about jobs, departments and locations.</p>\n</li>\n<li><p>List current job openings, get detailed information and create new jobs</p>\n</li>\n</ul>\n<h3 id=\"urls-for-eu-or-na-stack\"><strong>URLs for EU or NA stack:</strong></h3>\n<p>When calling Teamtailor’s Public API, the base URL will depend on the stack where your data is being stored.</p>\n<p>Request URLs:</p>\n<ul>\n<li><p>For EU stack, use <a href=\"http://api.teamtailor.com/\">api.teamtailor.com</a></p>\n</li>\n<li><p>For NA stack, use <a href=\"http://api.na.teamtailor.com/\">api.na.teamtailor.com</a></p>\n</li>\n</ul>\n<hr>\n<h1 id=\"authentication\">Authentication</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-http\">GET https://api.teamtailor.com/v1/jobs HTTP/1.1\nAuthorization: Token token=abc123abc123\n\n</code></pre>\n<p>Authenticate your account when using the API by including your secret API key in the request. <a href=\"https://app.teamtailor.com/app/settings/integrations/api-keys\">Manage your API keys</a>.</p>\n<p>Authentication is performed by passing the api key in the Authorization header.</p>\n<p><em>You must replace</em> <code>_abc123abc123_</code> it <em>with your own API key.</em></p>\n<hr>\n<h2 id=\"permissions\">Permissions</h2>\n<p>Your api keys might have different scopes and permissions.</p>\n<h3 id=\"public\">Public</h3>\n<p>Has access to public data, basically all data that is publicly visible on your career site.</p>\n<h4 id=\"read\"><code>read</code></h4>\n<p>Can read all public data, for example, jobs, departments, and locations.</p>\n<h4 id=\"write\"><code>write</code></h4>\n<p>Can create new jobs.</p>\n<h4 id=\"readwrite\"><code>read/write</code></h4>\n<p>Can do all above and update existing jobs.</p>\n<h3 id=\"internal\">Internal</h3>\n<p>Same as <code>Public</code>, but can also access internal, unlisted &amp; archived jobs.</p>\n<h4 id=\"read-1\"><code>read</code></h4>\n<p>Can read all public &amp; internal data, for example jobs, departments, locations.</p>\n<h4 id=\"write-1\"><code>write</code></h4>\n<p>Can create new jobs.</p>\n<h4 id=\"readwrite-1\"><code>read/write</code></h4>\n<p>Can do all above and update existing jobs.</p>\n<h3 id=\"admin\">Admin</h3>\n<p>Has access to all resources.</p>\n<h4 id=\"read-2\"><code>read</code></h4>\n<p>Can read all data, for example candidates, jobs, users.</p>\n<h4 id=\"write-2\"><code>write</code></h4>\n<p>Can create new jobs, candidates and job applications.</p>\n<h4 id=\"readwrite-2\"><code>read/write</code></h4>\n<p>Can do all above and update jobs, candidates and job applications.</p>\n<hr>\n<h1 id=\"versioning\">Versioning</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-http\">GET https://api.teamtailor.com/v1/jobs?filter[department]=337 HTTP/1.1\nX-Api-Version : 20240404\n\n</code></pre>\n<p>When we make backwards-incompatible changes to the API, we release new, dated versions. You can use todays date as <code>X-Api-Version</code> to always get the latest version of the API.</p>\n<p>To set the API version on a specific request, send a <code>X-Api-Version</code> header. See the <a href=\"#changelog\">API changelog</a> to see current and old versions.</p>\n<p><em>The</em> <code>X-Api-Version</code> <em>header is required when making requests to the API</em></p>\n<p>Successful API requests will have the used API version in the response header <code>X-Api-Version</code></p>\n<hr>\n<h1 id=\"rate-limits-large-dataset-handling\">Rate limits &amp; large dataset handling</h1>\n<h3 id=\"handling-large-payloads\"><strong>Handling Large Payloads:</strong></h3>\n<p>Some endpoints, like <code>/v1/answers</code> or <code>/v1/actions</code>, may return massive datasets. Attempting to fetch all data in a single request can lead to <strong>HTTP 500 errors</strong>. To avoid this: use filtering, pagination or batch requests.</p>\n<h3 id=\"rate-limits\">Rate Limits:</h3>\n<p>You get a bucket of 50 requests every 10 seconds. When the number of requests reaches the rate limit, the api will respond with HTTP status code 429.</p>\n<blockquote>\n<p>Headers </p>\n</blockquote>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>X-Rate-Limit-Limit\n# The number of allowed requests in the current period\nX-Rate-Limit-Remaining\n# The number of remaining requests in the current period\nX-Rate-Limit-Reset\n# The number of seconds left in the current period\n\n</code></pre><hr>\n<h1 id=\"pagination\">Pagination</h1>\n<blockquote>\n<p>Example response </p>\n</blockquote>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"meta\": {\n    \"record-count\": 2,\n    \"page-count\": 1\n  },\n  \"links\": {\n    \"prev\": \"https://api.teamtailor.com/v1/jobs?filter[department]=337&amp;page[before]=NQ&amp;page[size]=10&amp;sort=id\",\n    \"next\": \"https://api.teamtailor.com/v1/jobs?filter[department]=337&amp;page[after]=Ng&amp;page[size]=10&amp;sort=id\",\n  }\n}\n\n</code></pre>\n<p>All top-level API resources have support for bulk fetches via \"list\" API methods.</p>\n<p>The <strong>links key</strong> in the response may contain any of the following links:</p>\n<ul>\n<li><p>first: the first page of data</p>\n</li>\n<li><p>last: the last page of data</p>\n</li>\n<li><p>prev: the previous page of data</p>\n</li>\n<li><p>next: the next page of data</p>\n</li>\n</ul>\n<p>The <strong>meta key</strong> contains:</p>\n<ul>\n<li><p>record-count: The total number of items in the collection,</p>\n</li>\n<li><p>page-count: The number of pages</p>\n</li>\n</ul>\n<p>The page size can be changed with the following parameter:</p>\n<ul>\n<li><code>page[size]</code>, the number of resources per page. Default: 10, max: 30.</li>\n</ul>\n<hr>\n<h1 id=\"examples\">Examples</h1>\n<p>Here are some real world usage examples of the Teamtailor API.</p>\n<h2 id=\"paginate-a-list\">Paginate a list</h2>\n<p>Get the first page of jobs, with 20 jobs per page.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-http\">GET &lt;a class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;  rel=\"noreferrer noopener nofollow\" href=\"https://api.teamtailor.com/v1/jobs?page[size]=20&amp;page[numb\" target=\"_blank\" url=\"https://api.teamtailor.com/v1/jobs?page[size]=20&amp;page[numb\"&gt;https://api.teamtailor.com/v1/jobs?page[size]=20&lt;/a&gt; HTTP/1.1\nAuthorization: Token token=abc123abc123\nX-Api-Version: 20240404\n\n</code></pre>\n<h3 id=\"parameters-used-in-this-example\">Parameters used in this example</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>page[size]</td>\n<td>20</td>\n<td>Get 20 jobs in the list.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"list-published-jobs-with-their-department-and-locations\">List published jobs with their department and locations</h2>\n<p>Get a list of published jobs and include their departments and locations in one request.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-http\">GET https://api.teamtailor.com/v1/jobs?include=department,locations HTTP/1.1\nAuthorization: Token token=abc123abc123\nX-Api-Version: 20240404\n\n</code></pre>\n<h3 id=\"parameters-used-in-this-example-1\">Parameters used in this example</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>include</td>\n<td>department,locations</td>\n<td>Comma separated list of relations to include in the response.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"list-latest-hired-candidates\">List latest hired candidates</h2>\n<p>Get a list of the most recent hired candidates</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-http\">GET https://api.teamtailor.com/v1/job-applications?include=candidate&amp;filter[stage-type]=hired&amp;sort=-changed_stage_at HTTP/1.1\nAuthorization: Token token=abc123abc123\nX-Api-Version: 20240404\n\n</code></pre>\n<h3 id=\"parameters-used-in-this-example-2\">Parameters used in this example</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>include</td>\n<td>candidate</td>\n<td>Since we're fetching latest job applications, we must include the candidate if we wan't more data about each hire.</td>\n</tr>\n<tr>\n<td>filter[stage-type]</td>\n<td>hired</td>\n<td>Just list job applications marked as hired</td>\n</tr>\n<tr>\n<td>sort</td>\n<td>-changed_stage_at</td>\n<td>Sort applications by most recent added to current (hired) stage</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"create-candidate-with-a-to-many-location-relationship\">Create candidate with a To-Many location relationship</h2>\n<p>Create a <code>candidates</code> resource with a <code>To-Many</code> relationship to a <code>locations</code> resource set.</p>\n<p>The <code>location</code> resource has to be created before this request is executed.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-http\">POST https://api.teamtailor.com/v1/candidates HTTP/1.1\nAuthorization: Token token=abc123abc123\nX-Api-Version: 20240404\n{\"data\":{\"type\":\"candidates\",\"attributes\":{\"email\":\"jonas@example.com\",\"pitch\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\"last-name\":\"Jonas\",\"first-name\":\"Brusman\",\"merge\":true},\"relationships\":{\"locations\":{\"data\":[{\"id\":\"1\",\"type\":\"locations\"}]}}}}\n\n</code></pre>\n<hr>\n<h2 id=\"embed-application-form\">Embed application form</h2>\n<h3 id=\"example-iframe\">Example iframe</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-html\">&lt;iframe src=\"https://career.teamtailor.com/jobs/7199-new-title/applications/new?iframe=true\" style=\"width: 100%; height: 800px\" frameborder=\"0\"&gt;&lt;/iframe&gt;\n\n</code></pre>\n<hr>\n<h3 id=\"iframe-helper-script\">Iframe helper script</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-html\">&lt;script src=\"https://scripts.teamtailor-cdn.com/widgets/production/apply.js\"&gt;&lt;/script&gt;\n\n</code></pre>\n<p>To embed an application form on your website, create an iframe and set the <code>src</code> attribute to the job's <code>careersite-job-apply-iframe-url</code> attribute. Remember to set <code>frameborder=\"0\"</code> and <code>style=\"width: 100%; height: 800px\"</code>. To enable features such as auto-resize of the iframe, insert the helper script to the right in the <code>head</code> section of your page.</p>\n<h3 id=\"create-a-job-from-a-template\">Create a job from a template</h3>\n<p>To create a job from a template you need first to obtain the template ID and then include it in the POST request</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-html\">POST https://api.teamtailor.com/v1/jobs HTTP/1.1\nAuthorization: Token token=abc123abc123\nContent-Type: application/json\n{\n    \"data\":\n    {\n        \"type\": \"jobs\",\n        \"attributes\":\n        {\n            \"title\": \"Account Manager\",\n            \"pitch\": \"Become part of something great!\",\n            \"body\": \"&lt;p class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27; class=&amp;#x27;preserveHtml&amp;#x27;&gt;hello&lt;/p&gt;\",\n            \"template-id\": 3026014\n        },\n        \"relationships\":\n        {\n            \"user\":\n            {\n                \"data\":\n                {\n                    \"id\": 1479857,\n                    \"type\": \"users\"\n                }\n            }\n        }\n    }\n}\n\n</code></pre>\n<p>This will copy everything from the template including triggers, application form, etc. Values used in the payload will overwrite the template, so in above example, body will be set to 'Hello'</p>\n<p>You can fetch list of templates using GET jobs?filter[status]=template</p>\n<p>If you need to fetch a specific template, you can add <code>&amp;filter[template-name]=template_name</code> to the existing filter in the request. For example: <code>GET jobs?filter[status]=template&amp;filter[template-name]=your_template_name</code></p>\n<h1 id=\"changelog\">Changelog</h1>\n<h4 id=\"2026-02-11\">2026-02-11</h4>\n<ul>\n<li><p>Added information about required attributes/relationships to <a href=\"https://docs.teamtailor.com/#afd29ca3-689f-49a2-ba5d-d67f4ac4f757\">Jobs</a>.</p>\n</li>\n<li><p>Added information about required attributes/relationships to <a href=\"https://docs.teamtailor.com/#3a64e9b5-c1d4-4894-8978-2015adf13ec2\">Requisitions</a>.</p>\n</li>\n<li><p>Added information about required attributes/relationships to <a href=\"https://docs.teamtailor.com/#3a64e9b5-c1d4-4894-8978-2015adf13ec2\">Job Applications</a>.</p>\n</li>\n<li><p>Added information about required attributes/relationships to <a href=\"https://docs.teamtailor.com/#2f779ec9-9bc7-44d6-ac38-a5ef5c81396d\">Candidates</a>.</p>\n</li>\n<li><p>Added information about required attributes/relationships to <a href=\"https://docs.teamtailor.com/#398f4f78-12da-411b-8379-f5523366ac4d\">Uploads</a>.</p>\n</li>\n</ul>\n<h4 id=\"2026-02-04\">2026-02-04</h4>\n<ul>\n<li><p>Added <code>linkedin-url</code> to <a href=\"https://docs.teamtailor.com/#d5845719-6ff8-4ea4-a765-a2864b02be9f\">Referral</a>.</p>\n</li>\n<li><p>Added the <code>division</code> relation to <a href=\"https://docs.teamtailor.com/#d5845719-6ff8-4ea4-a765-a2864b02be9f\">Referral</a>.</p>\n</li>\n</ul>\n<h4 id=\"2025-12-17\"><strong>2025-12-17</strong></h4>\n<ul>\n<li>Added the <code>resume-updated-at</code> to <a href=\"https://docs.teamtailor.com/#1e591a5a-99cc-4d17-aaeb-7744dde0dbb2\">Candidate</a>.</li>\n</ul>\n<h4 id=\"2025-11-25\">2025-11-25</h4>\n<ul>\n<li><p>Added <a href=\"https://docs.teamtailor.com/#fb801ae1-f1cd-4edb-8116-74afab2d3c3d\">Interviews</a>, <a href=\"https://docs.teamtailor.com/#0e586bbd-ba57-4c86-b40e-63f56dadd143\">Scorecard Criteria</a>, <a href=\"https://docs.teamtailor.com/#28d0b5c3-4420-4c22-9436-7384ba99ab47\">Scorecard Picks</a>, <a href=\"https://docs.teamtailor.com/#1283166e-1681-40e2-b4ca-12397e1a86db\">Scorecard Scores</a> resources.</p>\n</li>\n<li><p>Added the <code>interviews</code> relations to <a href=\"https://null\">Candidate</a>,</p>\n</li>\n</ul>\n<h4 id=\"2025-10-30\">2025-10-30</h4>\n<ul>\n<li><p>Added <code>upload</code> relation to <a href=\"https://docs.teamtailor.com/#bc7522c7-6c6f-4e49-b8e9-737669b4fd8f\">Answer</a>.</p>\n</li>\n<li><p>Added <code>answer</code> relation to <a href=\"https://docs.teamtailor.com/#398f4f78-12da-411b-8379-f5523366ac4d\">Upload</a>.</p>\n</li>\n</ul>\n<h4 id=\"2025-10-03\">2025-10-03</h4>\n<ul>\n<li>Updated <code>POST /v1/requisitions</code> endpoint with automatic approval flow</li>\n</ul>\n<h4 id=\"2025-10-02\">2025-10-02</h4>\n<ul>\n<li>Added a note in <strong>Rate Limits</strong> documentation about handling large datasets.</li>\n</ul>\n<h4 id=\"2025-10-01\">2025-10-01</h4>\n<ul>\n<li><p>Updated API version header requirement</p>\n</li>\n<li><p>All requests must now include: X-Api-Version: 20240904</p>\n</li>\n</ul>\n<h4 id=\"2025-09-09\">2025-09-09</h4>\n<ul>\n<li>Added <code>resume-summary</code> to <a href=\"https://docs.teamtailor.com/#2f779ec9-9bc7-44d6-ac38-a5ef5c81396d\">Candidate</a></li>\n</ul>\n<h4 id=\"2025-07-15\">2025-07-15</h4>\n<ul>\n<li>Added <code>is-draft</code> to <a href=\"https://docs.teamtailor.com/#1e928d4e-a299-4211-902e-ff2472ec4bb1\">Requisitions</a></li>\n</ul>\n<h4 id=\"2025-07-09\">2025-07-09</h4>\n<ul>\n<li><p>Added <a href=\"https://docs.teamtailor.com/#5c46f829-f1cb-446c-ae59-bdfcb40f1672\">Divisions</a> resources.</p>\n</li>\n<li><p>Added the <code>divisions</code> relations to <a href=\"https://docs.teamtailor.com/#2f779ec9-9bc7-44d6-ac38-a5ef5c81396d\">Candidate</a>, <a href=\"https://docs.teamtailor.com/#afd29ca3-689f-49a2-ba5d-d67f4ac4f757\">Jobs</a> and <a href=\"https://docs.teamtailor.com/#97830188-a759-44ad-89d4-6d9ee64bad8a\">Departments</a>.</p>\n</li>\n<li><p>Added filter by <code>division</code> in the <a href=\"https://docs.teamtailor.com/#a0351972-8394-4646-95f0-56a4c4e3886d\">Jobs list</a> and in the <a href=\"https://docs.teamtailor.com/#759f6a0c-5b05-4d9c-b1c8-af80c5d9b620\">Candidates list</a>.</p>\n</li>\n</ul>\n<h4 id=\"2025-04-03\">2025-04-03</h4>\n<ul>\n<li><p>Added <a href=\"https://docs.teamtailor.com/#62df92b7-3b98-447e-aba2-88ea51857872\">Forms</a>, <a href=\"https://docs.teamtailor.com/#4e8d9aaf-951e-41aa-af03-a30979fdf08c\">Form questions</a> and <a href=\"https://docs.teamtailor.com/#c4778d98-6661-4231-b857-672794fc1241\">Form answers</a> resources.</p>\n</li>\n<li><p>Added the <a href=\"https://docs.teamtailor.com/#e207bdd5-8fd2-40a5-ac40-2abb20857310\">Onboardings</a> resource, available for customers using the <a href=\"https://support.teamtailor.com/en/articles/10264836-start-the-onboarding-of-your-new-hires-in-teamtailor\">Onboarding add-on feature</a>.</p>\n</li>\n<li><p>Added Onboardings and Form answers relationships to <a href=\"https://docs.teamtailor.com/#2f779ec9-9bc7-44d6-ac38-a5ef5c81396d\">Candidates</a>.</p>\n</li>\n</ul>\n<h4 id=\"2024-11-12\">2024-11-12</h4>\n<ul>\n<li>Added <code>/authenticated-video-url</code> endpoint to <a href=\"https://docs.teamtailor.com/#bc7522c7-6c6f-4e49-b8e9-737669b4fd8f\">answers</a> to get the playable video URL for video answers. The URL is valid for 2 hours.</li>\n</ul>\n<h4 id=\"2024-09-30\">2024-09-30</h4>\n<ul>\n<li><p>Added <code>jobs</code> relation to <a href=\"https://docs.teamtailor.com/#d6c677e8-7105-4bbf-9413-4be624294a6e\">teams</a>.</p>\n</li>\n<li><p>Added <code>team-memberships</code> relation to <a href=\"https://docs.teamtailor.com/#a594cdda-efeb-4b67-b2a2-1b72baecd786\">users</a>.</p>\n</li>\n</ul>\n<h4 id=\"2024-09-05\">2024-09-05</h4>\n<ul>\n<li><p>New Api version available <code>X-Api-Version: 20240904</code>.</p>\n</li>\n<li><p>BREAKING CHANGES: Notes listing now follows the JSON api data strucutre. Instead of the data being wrapped inside \"notes\" it's now in \"data\", as all our listings. It also allows paginating.</p>\n</li>\n</ul>\n<h4 id=\"2024-07-02\">2024-07-02</h4>\n<ul>\n<li>added <code>template-id</code> to <a href=\"#afd29ca3-689f-49a2-ba5d-d67f4ac4f757\">jobs</a>.</li>\n</ul>\n<h4 id=\"2024-05-29\">2024-05-29</h4>\n<ul>\n<li>Added <code>job</code> and <code>stage-type</code> filters to <a href=\"#f7d1f021-112b-4631-9283-906429f805b5\">stages</a>.</li>\n</ul>\n<h4 id=\"2024-05-24\">2024-05-24</h4>\n<ul>\n<li>Added match score to <a href=\"#3a64e9b5-c1d4-4894-8978-2015adf13ec2\">job-applications</a> (read-only).</li>\n</ul>\n<h4 id=\"2024-04-10\">2024-04-10</h4>\n<ul>\n<li>Added new <a href=\"#55639fbf-f69a-4981-b775-05522a00f5fb\">nps-responses</a> resource (read-only).</li>\n</ul>\n<h4 id=\"2024-04-04\">2024-04-04</h4>\n<ul>\n<li><p>New Api version available <code>X-Api-Version: 20240404</code>.</p>\n</li>\n<li><p>BREAKING CHANGES: The old <code>stage-type</code> attribute of <a href=\"#f7d1f021-112b-4631-9283-906429f805b5\">stages</a> is renamed to <code>legacy-stage-type-name</code> to facilitate a new relationship for <code>stage-types</code>. This is not backwards compatible.</p>\n</li>\n<li><p>New resource <a href=\"#04411254-2faa-4e70-9721-5e7a98db2f94\">stage-types</a> can be used to list all stages/job-applications/candidates for a type of stage.</p>\n</li>\n<li><p>Added <code>stage-type</code> as relationship to <a href=\"#f7d1f021-112b-4631-9283-906429f805b5\">stages</a>.</p>\n</li>\n</ul>\n<h4 id=\"2023-08-24\">2023-08-24</h4>\n<ul>\n<li>Added <code>consent-future-jobs-at</code> and <code>consent-given-future-jobs</code> to <a href=\"#2f779ec9-9bc7-44d6-ac38-a5ef5c81396d\">candidates</a></li>\n</ul>\n<h4 id=\"2021-08-06\">2021-08-06</h4>\n<ul>\n<li><p>Add <code>tags</code> filter to <a href=\"#afd29ca3-689f-49a2-ba5d-d67f4ac4f757\">job</a></p>\n</li>\n<li><p>Add <code>custom-fields</code> filter to <a href=\"#custom-field-options\">custom-field-options</a></p>\n</li>\n<li><p>Add <code>custom-fields</code> relationship to <a href=\"#afd29ca3-689f-49a2-ba5d-d67f4ac4f757\">job</a></p>\n</li>\n</ul>\n<h4 id=\"2021-05-05\">2021-05-05</h4>\n<ul>\n<li>Added <code>updated-at</code> attribute to <a href=\"#afd29ca3-689f-49a2-ba5d-d67f4ac4f757\">job</a></li>\n</ul>\n<h4 id=\"2021-02-18\">2021-02-18</h4>\n<ul>\n<li><p>New Api version available <code>X-Api-Version: 20210218</code>.</p>\n</li>\n<li><p>BREAKING CHANGES: Changes related to user and notification settings api are no longer compatible with <code>X-Api-Version: 20161108</code>.</p>\n</li>\n<li><p>Added changes to <a href=\"#users\">users</a> resource.</p>\n</li>\n<li><p>Added new <a href=\"#notification-settings\">notification-settings</a> resource.</p>\n</li>\n</ul>\n<h4 id=\"2020-11-30\">2020-11-30</h4>\n<ul>\n<li>Added read-only <code>original-resume</code> field to <a href=\"#candidates\">candidates</a> to get the original file before converted to PDF.</li>\n</ul>\n<h4 id=\"2020-10-29\">2020-10-29</h4>\n<ul>\n<li><p>Updated documentation for <a href=\"#custom-fields\">Custom Fields</a>.</p>\n</li>\n<li><p>Added new <a href=\"#custom-field-selects\">custom-field-selects</a> resource.</p>\n</li>\n<li><p>Added new <a href=\"#custom-field-options\">custom-field-options</a> resource.</p>\n</li>\n</ul>\n<h4 id=\"2020-10-06\">2020-10-06</h4>\n<ul>\n<li>Added <code>remote-status</code> attribute to <a href=\"#afd29ca3-689f-49a2-ba5d-d67f4ac4f757\">job</a>.</li>\n</ul>\n<h4 id=\"2020-10-01-bug-fix\">2020-10-01 <em>Bug fix</em></h4>\n<ul>\n<li><p>Removed the <a href=\"#activities\"><i>activities</i></a> list endpoint (since it didn't work anyway).</p>\n</li>\n<li><p>Added <code>activities</code> relationships to the <a href=\"#users\"><i>users</i></a>, <a href=\"#candidates\"><i>candidates</i></a>, and <a href=\"#afd29ca3-689f-49a2-ba5d-d67f4ac4f757\">jobs</a> resources.</p>\n</li>\n<li><p>To list activities, please use any of these relationships.</p>\n</li>\n</ul>\n<h4 id=\"2020-07-20\">2020-07-20</h4>\n<ul>\n<li><p>Added new <a href=\"#notes\"><i>notes</i></a> resource.</p>\n</li>\n<li><p>Added new <a href=\"#regions\"><i>regions</i></a> resource.</p>\n</li>\n<li><p>Added <code>regions</code> relationship and filter to <a href=\"#candidates\"><i>candidate</i></a> and <a href=\"#afd29ca3-689f-49a2-ba5d-d67f4ac4f757\">job</a>.</p>\n</li>\n</ul>\n<h4 id=\"2020-05-14\">2020-05-14</h4>\n<ul>\n<li>Added <code>job</code> relationship and filter to <a href=\"#uploads\"><i>upload</i></a>.</li>\n</ul>\n<h4 id=\"2020-05-13\">2020-05-13</h4>\n<ul>\n<li>Added <code>external-id</code> attribute to <a href=\"#users\"><i>user</i></a>.</li>\n</ul>\n<h4 id=\"2020-05-12\">2020-05-12</h4>\n<ul>\n<li><p>Added new <a href=\"#teams\"><i>team</i></a> resource.</p>\n</li>\n<li><p>Added <code>update</code>, <code>create</code>, and <code>delete</code> actions to the <a href=\"#roles\"><i>role</i></a> resource.</p>\n</li>\n<li><p>Added <code>teams</code> relationship to <a href=\"#departments\"><i>department</i></a> __and <a href=\"#roles\"><i>role</i></a>.</p>\n</li>\n</ul>\n<h4 id=\"2020-04-23\">2020-04-23</h4>\n<ul>\n<li><p>Added <code>job</code> relationship to <a href=\"#partner-results\"><i>partner-result</i></a>.</p>\n</li>\n<li><p>Added <code>partner-results</code> relationship to <a href=\"#candidates\"><i>candidate</i></a>.</p>\n</li>\n</ul>\n<h4 id=\"2020-02-26\">2020-02-26</h4>\n<ul>\n<li>Added <code>api-name</code> field to <a href=\"#custom-fields\"><i>custom-field</i></a>.</li>\n</ul>\n<h4 id=\"2019-11-14\">2019-11-14</h4>\n<ul>\n<li>Added <code>signature</code> field to <a href=\"#users\"><i>user</i></a>.</li>\n</ul>\n<h4 id=\"2019-11-14-1\">2019-11-14</h4>\n<ul>\n<li><p>Added the <a href=\"#requisitions\"><i>requisitions</i></a> resource.</p>\n</li>\n<li><p>Added the <a href=\"#requisition-step-verdicts\"><i>requisition-step-verdicts</i></a> resource.</p>\n</li>\n</ul>\n<h4 id=\"2019-09-10\">2019-09-10</h4>\n<ul>\n<li><p>Added the <a href=\"#custom-fields\"><i>custom-fields</i></a> resource.</p>\n</li>\n<li><p>Added the <a href=\"#custom-field-values\"><i>custom-field-values</i></a> resource.</p>\n</li>\n</ul>\n<h4 id=\"2019-08-09\">2019-08-09</h4>\n<ul>\n<li>Added the <a href=\"#referrals\"><i>referrals</i></a> resource.</li>\n</ul>\n<h4 id=\"2019-08-08\">2019-08-08</h4>\n<ul>\n<li>Added the <a href=\"#partner-results\"><i>partner-results</i></a> resource.</li>\n</ul>\n<h4 id=\"2019-08-07\">2019-08-07</h4>\n<ul>\n<li>Added the <a href=\"#activities\"><i>activities</i></a> resource.</li>\n</ul>\n<h4 id=\"2019-07-31\">2019-07-31</h4>\n<ul>\n<li>Added the <a href=\"#todos\"><i>todos</i></a> resource.</li>\n</ul>\n<h4 id=\"2019-07-15\">2019-07-15</h4>\n<ul>\n<li>Added <code>row-order</code> field to <a href=\"#stages\"><i>stages</i></a>.</li>\n</ul>\n<h4 id=\"2019-07-11\">2019-07-11</h4>\n<ul>\n<li>Added <code>mailbox</code> field to <a href=\"#afd29ca3-689f-49a2-ba5d-d67f4ac4f757\">jobs</a>.</li>\n</ul>\n<h4 id=\"2019-07-03\">2019-07-03</h4>\n<ul>\n<li>Added <code>referred</code> field to <a href=\"#candidates\"><i>candidates</i></a>.</li>\n</ul>\n<h4 id=\"2019-06-18\">2019-06-18</h4>\n<ul>\n<li>Added <code>login-email</code> field to <a href=\"#users\"><i>users</i></a>.</li>\n</ul>\n<h4 id=\"2019-05-17\">2019-05-17</h4>\n<ul>\n<li>Added <code>locations</code> <em>resource to</em> <a href=\"#afd29ca3-689f-49a2-ba5d-d67f4ac4f757\">jobs</a><em>.</em> <code>_location_</code> <em>resource is now deprecated and will be removed after 2019.08.01</em>.</li>\n</ul>\n<h4 id=\"2019-05-06\">2019-05-06</h4>\n<ul>\n<li>Added the <a href=\"#triggers\"><i>trigger</i></a> resource.</li>\n</ul>\n<h4 id=\"2019-04-23\">2019-04-23</h4>\n<ul>\n<li><p>Added <code>show</code> and <code>list</code> actions to the <a href=\"#stages\"><i>stages</i></a> resource.</p>\n</li>\n<li><p>Added <code>active-job-applications-count</code> and <code>rejected-job-applications-count</code> attributes to <a href=\"#stages\"><i>stages</i></a>.</p>\n</li>\n</ul>\n<h4 id=\"2019-04-23-1\">2019-04-23</h4>\n<ul>\n<li>Added the <a href=\"#companies\"><i>company</i></a> resource.</li>\n</ul>\n<h4 id=\"2019-04-15\">2019-04-15</h4>\n<ul>\n<li>Added <code>pitch</code> attribute to <a href=\"#afd29ca3-689f-49a2-ba5d-d67f4ac4f757\">jobs</a>.</li>\n</ul>\n<h4 id=\"2019-03-07\">2019-03-07</h4>\n<ul>\n<li>Added <code>scheduled</code> status filter to <a href=\"#afd29ca3-689f-49a2-ba5d-d67f4ac4f757\">jobs</a> for internal/admin keys.</li>\n</ul>\n<h4 id=\"2019-03-07-1\">2019-03-07</h4>\n<ul>\n<li>Added <code>jobs</code> relation to <a href=\"#users\"><i>users</i></a> (the jobs user is recruiter for).</li>\n</ul>\n<h4 id=\"2019-01-09\">2019-01-09</h4>\n<ul>\n<li>Added <code>set-consent-expiration</code> to <a href=\"#candidates\"><i>candidates</i></a> to set consent expiration period for candidates who gave their permission for you to store their personal details.</li>\n</ul>\n<h4 id=\"2018-11-05\">2018-11-05</h4>\n<ul>\n<li>Signed URLs to <a href=\"#uploads\"><i>Uploads</i></a> files are valid for 1 minute.</li>\n</ul>\n<h4 id=\"2018-09-17\">2018-09-17</h4>\n<ul>\n<li>Filter <a href=\"#afd29ca3-689f-49a2-ba5d-d67f4ac4f757\">Jobs</a> by status <code>archived</code>.</li>\n</ul>\n<h4 id=\"2018-07-17\">2018-07-17</h4>\n<ul>\n<li>Added <code>created-at</code> field to <code>jobs</code></li>\n</ul>\n<h4 id=\"2018-05-31\">2018-05-31</h4>\n<ul>\n<li>Added <code>send-default-reply</code> attribute to <a href=\"#job-applications\"><i>job-applications</i></a></li>\n</ul>\n<h4 id=\"2018-05-11\">2018-05-11</h4>\n<ul>\n<li><p><a href=\"#picked-questions\"><i>Picked questions</i></a> <em>endpoint.</em></p>\n</li>\n<li><p>Added <code>picked-questions</code> resource to <a href=\"#afd29ca3-689f-49a2-ba5d-d67f4ac4f757\">jobs</a></p>\n</li>\n<li><p>Added <code>name_requirement</code>, <code>resume_requirement</code>, <code>cover_letter_requirement</code>, <code>phone_requirement</code> attributes to <a href=\"#afd29ca3-689f-49a2-ba5d-d67f4ac4f757\">jobs</a></p>\n</li>\n</ul>\n<h4 id=\"2018-05-22\">2018-05-22</h4>\n<ul>\n<li>New <a href=\"#users\"><i>User</i></a> attributes for GDPR/data retention notifications. (<code>notification-removal-request</code> and <code>notification-gdpr-digest</code>)</li>\n</ul>\n<h4 id=\"2018-04-26\">2018-04-26</h4>\n<ul>\n<li><a href=\"#list-questions\"><i>List questions</i></a> <em>endpoint.</em></li>\n</ul>\n<h4 id=\"2018-04-19\">2018-04-19</h4>\n<ul>\n<li><p>Add user notification settings attributes to the user object.</p>\n</li>\n<li><p>Add TeamMembership object to enable index, view, create and destroy actions on hiring team members.</p>\n</li>\n</ul>\n<h4 id=\"2018-04-05\">2018-04-05</h4>\n<ul>\n<li>Add <code>colleagues</code> relation to <code>jobs</code> (lists <code>users</code> related to the job ad).</li>\n</ul>\n<h4 id=\"2018-04-04\">2018-04-04</h4>\n<ul>\n<li>Add <code>external-application-url</code> field to <code>jobs</code>.</li>\n</ul>\n<h4 id=\"2018-03-02\">2018-03-02</h4>\n<ul>\n<li>Filter <a href=\"#candidates\"><i>candidates</i></a> by <code>locations</code>.</li>\n</ul>\n<h4 id=\"2018-02-13\">2018-02-13</h4>\n<ul>\n<li><p>New resource <a href=\"#uploads\"><i>Uploads</i></a>.</p>\n</li>\n<li><p>Added <code>uploads</code> resource to <a href=\"#candidates\"><i>candidates</i></a>.</p>\n</li>\n<li><p>Filter <a href=\"#candidates\"><i>candidates</i></a> by <code>connected</code>, <code>department</code> and <code>role</code>.</p>\n</li>\n</ul>\n<h4 id=\"2018-01-25\">2018-01-25</h4>\n<ul>\n<li><p>Added <code>locations</code> resource to <a href=\"#candidates\"><i>candidates</i></a>.</p>\n</li>\n<li><p>Filter <a href=\"#users\"><i>users</i></a> by <code>email</code>.</p>\n</li>\n<li><p>Can update <code>email</code> attribute on <a href=\"#users\"><i>users</i></a>.</p>\n</li>\n</ul>\n<h4 id=\"2018-01-16\">2018-01-16</h4>\n<ul>\n<li>Added <code>create</code> and <code>update</code> actions to <a href=\"#users\"><i>users</i></a>.</li>\n</ul>\n<h4 id=\"2017-10-31\">2017-10-31</h4>\n<ul>\n<li>Added <code>tags</code> to <a href=\"#afd29ca3-689f-49a2-ba5d-d67f4ac4f757\">jobs</a>.</li>\n</ul>\n<h4 id=\"2017-09-06\">2017-09-06</h4>\n<ul>\n<li>Added <code>apply-button-text</code> attribute to <a href=\"#afd29ca3-689f-49a2-ba5d-d67f4ac4f757\">jobs</a>.</li>\n</ul>\n<h4 id=\"2017-03-15\">2017-03-15</h4>\n<ul>\n<li>Added <code>single-line</code> attribute to <a href=\"#questions\"><i>questions</i></a>.</li>\n</ul>\n<h4 id=\"2017-03-10\">2017-03-10</h4>\n<ul>\n<li><p>Added <code>changed_stage_at</code> to <a href=\"#job-applications\"><i>job applications</i></a>.</p>\n</li>\n<li><p>Made it possible to filter on <code>stage-type</code> when listing <a href=\"#job-applications\"><i>job applications</i></a>.</p>\n</li>\n</ul>\n<h4 id=\"2017-02-23\">2017-02-23</h4>\n<ul>\n<li><p>New resources</p>\n<ul>\n<li><p><a href=\"#answers\"><i>Answers</i></a></p>\n</li>\n<li><p><a href=\"#candidates\"><i>Candidates</i></a></p>\n</li>\n<li><p><a href=\"#job-applications\"><i>Job Applications</i></a></p>\n</li>\n<li><p><a href=\"#questions\"><i>Questions</i></a></p>\n</li>\n<li><p><a href=\"#stages\"><i>Stages</i></a><em>.</em>____</p>\n</li>\n</ul>\n</li>\n<li><p>New scopes <a href=\"#authentication\"><i>Admin</i></a> and <a href=\"#authentication\"><i>Internal</i></a>.</p>\n</li>\n<li><p><a href=\"#embed-application-form\"><i>Embed job appliction form as an iframe</i></a><em>.</em></p>\n</li>\n</ul>\n<h4 id=\"2016-11-08-new-version\">2016-11-08 New version</h4>\n<ul>\n<li><em>First public version.</em></li>\n</ul>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Authentication","slug":"authentication"},{"content":"Versioning","slug":"versioning"},{"content":"Rate limits & large dataset handling","slug":"rate-limits-large-dataset-handling"},{"content":"Pagination","slug":"pagination"},{"content":"Examples","slug":"examples"},{"content":"Changelog","slug":"changelog"}],"owner":"14157246","collectionId":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","publishedId":"TVzSiGxA","public":true,"customColor":{"top-bar":"34353A","right-sidebar":"28282B","highlight":"F43F85"},"publishDate":"2021-02-01T09:34:24.000Z"},"item":[{"name":"Activities","item":[{"name":"Show activity","id":"21952a48-7f4a-4401-8baf-dcbaea943587","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"}],"url":"https://api.teamtailor.com/v1/activities/1","description":"<h3 id=\"attributes\">Attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>code</td>\n<td>string</td>\n<td>Activity type</td>\n</tr>\n<tr>\n<td>created-at</td>\n<td>date</td>\n<td></td>\n</tr>\n<tr>\n<td>data</td>\n<td>string</td>\n<td>Json string with activity data, like note text, todo value etc.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"relations\">Relations</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Relation</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>candidate</td>\n<td>Candidate which the activity concerns</td>\n</tr>\n<tr>\n<td>job</td>\n<td>Job which the activity concerns</td>\n</tr>\n<tr>\n<td>user</td>\n<td>User who creates the activity</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","activities","1"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"d8d03133-afca-4841-8867-8e7a5cc4c1f4","name":"Show activity","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"}],"url":"https://api.teamtailor.com/v1/activities/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"1\",\n        \"type\": \"activities\",\n        \"links\": {\n            \"self\": \"https://api.teamtailor.localhost/v1/activities/1\"\n        },\n        \"attributes\": {\n            \"code\": \"created\",\n            \"created-at\": \"2020-10-30T10:32:38.214+01:00\",\n            \"data\": \"{}\"\n        },\n        \"relationships\": {\n            \"candidate\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/activities/1/relationships/candidate\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/activities/1/candidate\"\n                }\n            },\n            \"job\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/activities/1/relationships/job\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/activities/1/job\"\n                }\n            },\n            \"user\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/activities/1/relationships/user\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/activities/1/user\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"21952a48-7f4a-4401-8baf-dcbaea943587"}],"id":"e027c5fa-0735-441a-b227-5d684ad024fe","description":"<h3 id=\"required-scope\">Required scope</h3>\n<p>Admin</p>\n<h3 id=\"attributes\">Attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>code</td>\n<td>string</td>\n<td>Activity type</td>\n</tr>\n<tr>\n<td>created-at</td>\n<td>date</td>\n<td></td>\n</tr>\n<tr>\n<td>data</td>\n<td>string</td>\n<td>Json string with activity data, like note text, todo value etc.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"relations\">Relations</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Relation</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>candidate</td>\n<td>Candidate which the activity concerns</td>\n</tr>\n<tr>\n<td>job</td>\n<td>Job which the activity concerns</td>\n</tr>\n<tr>\n<td>user</td>\n<td>User who creates the activity</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"3e12d1df-d5bd-47c7-a47c-fd860f50992d","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"d64ee02a-1e7f-46a2-ba7e-25f434b3dbb2","type":"text/javascript","exec":[""]}}],"_postman_id":"e027c5fa-0735-441a-b227-5d684ad024fe","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}}},{"name":"Answers","item":[{"name":"List answers","id":"4a83b757-55b8-4e88-81c7-f4c2c5f6e22b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"}],"url":"https://api.teamtailor.com/v1/answers","description":"<p>Use this endpoint to retrieve lists of answers.</p>\n<h3 id=\"example-parameters\">Example parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Default</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>include</td>\n<td>null</td>\n<td>Comma separated list of relations to include in the response. For example <code>candidate,question</code>.</td>\n</tr>\n<tr>\n<td>filter[question]</td>\n<td>null</td>\n<td>Filter list by a question ID</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","answers"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"e397d7ff-9053-4341-b8a7-aba877b1f8b6","name":"List answers","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"}],"url":"https://api.teamtailor.com/v1/answers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 30 Oct 2025 15:02:13 GMT"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Content-Length","value":"13430"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-xss-protection","value":"0"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"strict-origin-when-cross-origin"},{"key":"x-rate-limit-limit","value":"50"},{"key":"x-rate-limit-remaining","value":"49"},{"key":"x-rate-limit-reset","value":"7"},{"key":"x-api-version","value":"20240404"},{"key":"vary","value":"Accept, Origin"},{"key":"x-api-cache","value":"miss"},{"key":"access-control-allow-origin","value":"*"},{"key":"access-control-allow-methods","value":"POST, GET, PUT, DELETE, OPTIONS"},{"key":"access-control-allow-headers","value":"Origin, Content-Type, Accept, Authorization, Token"},{"key":"access-control-max-age","value":"1728000"},{"key":"etag","value":"W/\"5791cb7e3259cb61ee15aa506c07c70b\""},{"key":"cache-control","value":"must-revalidate, private, max-age=0"},{"key":"x-request-id","value":"a9eb7e2b-e4cf-43ab-86df-e399d70486f9"},{"key":"x-runtime","value":"0.055221"},{"key":"x-rack-cache","value":"miss"},{"key":"strict-transport-security","value":"max-age=63072000; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"7\",\n            \"type\": \"answers\",\n            \"links\": {\n                \"authenticated-video-url\": \"https://api.teamtailor.com/v1/answers/7/authenticated-video-url\",\n                \"self\": \"https://api.teamtailor.com/v1/answers/7\"\n            },\n            \"attributes\": {\n                \"answer\": [\n                    \"Yellow\"\n                ],\n                \"boolean\": null,\n                \"choices\": [\n                    3\n                ],\n                \"created-at\": \"2015-02-12T14:20:38.445+01:00\",  \n                \"data\": null,\n                \"date\": null,\n                \"number\": null,\n                \"question-type\": \"choice\",\n                \"range\": null,\n                \"text\": null,\n                \"updated-at\": \"2015-02-12T14:20:38.445+01:00\",\n                \"video-token\": \"\"\n            },\n            \"relationships\": {\n                \"question\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/answers/7/relationships/question\",\n                        \"related\": \"https://api.teamtailor.com/v1/answers/7/question\"\n                    }\n                },\n                \"candidate\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/answers/7/relationships/candidate\",\n                        \"related\": \"https://api.teamtailor.com/v1/answers/7/candidate\"\n                    }\n                },\n                \"picked-question\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/answers/7/relationships/picked-question\",\n                        \"related\": \"https://api.teamtailor.com/v1/answers/7/picked-question\"\n                    }\n                },\n                \"upload\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/answers/7/relationships/upload\",\n                        \"related\": \"https://api.teamtailor.com/v1/answers/7/upload\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"8\",\n            \"type\": \"answers\",\n            \"links\": {\n                \"authenticated-video-url\": \"https://api.teamtailor.com/v1/answers/8/authenticated-video-url\",\n                \"self\": \"https://api.teamtailor.com/v1/answers/8\"\n            },\n            \"attributes\": {\n                \"answer\": [\n                    \"At night\"\n                ],\n                \"boolean\": null,\n                \"choices\": [\n                    3\n                ],\n                \"created-at\": \"2015-02-12T14:20:38.447+01:00\",\n                \"data\": null,\n                \"date\": null,\n                \"number\": null,\n                \"question-type\": \"choice\",\n                \"range\": null,\n                \"text\": null,\n                \"updated-at\": \"2015-02-12T14:20:38.447+01:00\",\n                \"video-token\": \"\"\n            },\n            \"relationships\": {\n                \"question\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/answers/8/relationships/question\",\n                        \"related\": \"https://api.teamtailor.com/v1/answers/8/question\"\n                    }\n                },\n                \"candidate\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/answers/8/relationships/candidate\",\n                        \"related\": \"https://api.teamtailor.com/v1/answers/8/candidate\"\n                    }\n                },\n                \"picked-question\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/answers/8/relationships/picked-question\",\n                        \"related\": \"https://api.teamtailor.com/v1/answers/8/picked-question\"\n                    }\n                },\n                \"upload\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/answers/8/relationships/upload\",\n                        \"related\": \"https://api.teamtailor.com/v1/answers/8/upload\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"10\",\n            \"type\": \"answers\",\n            \"links\": {\n                \"authenticated-video-url\": \"https://api.teamtailor.com/v1/answers/10/authenticated-video-url\",\n                \"self\": \"https://api.teamtailor.com/v1/answers/10\"\n            },\n            \"attributes\": {\n                \"answer\": \"Om nom nom!\",\n                \"boolean\": null,\n                \"choices\": [],\n                \"created-at\": \"2015-02-12T14:20:38.452+01:00\",\n                \"data\": null,\n                \"date\": null,\n                \"number\": null,\n                \"question-type\": \"text\",\n                \"range\": null,\n                \"text\": \"Om nom nom!\",\n                \"updated-at\": \"2015-02-12T14:20:38.452+01:00\",\n                \"video-token\": \"\"\n            },\n            \"relationships\": {\n                \"question\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/answers/10/relationships/question\",\n                        \"related\": \"https://api.teamtailor.com/v1/answers/10/question\"\n                    }\n                },\n                \"candidate\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/answers/10/relationships/candidate\",\n                        \"related\": \"https://api.teamtailor.com/v1/answers/10/candidate\"\n                    }\n                },\n                \"picked-question\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/answers/10/relationships/picked-question\",\n                        \"related\": \"https://api.teamtailor.com/v1/answers/10/picked-question\"\n                    }\n                },\n                \"upload\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/answers/10/relationships/upload\",\n                        \"related\": \"https://api.teamtailor.com/v1/answers/10/upload\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"14\",\n            \"type\": \"answers\",\n            \"links\": {\n                \"authenticated-video-url\": \"https://api.teamtailor.com/v1/answers/14/authenticated-video-url\",\n                \"self\": \"https://api.teamtailor.com/v1/answers/14\"\n            },\n            \"attributes\": {\n                \"answer\": [\n                    \"At night\"\n                ],\n                \"boolean\": null,\n                \"choices\": [\n                    3\n                ],\n                \"created-at\": \"2015-02-12T14:51:41.374+01:00\",\n                \"data\": null,\n                \"date\": null,\n                \"number\": null,\n                \"question-type\": \"choice\",\n                \"range\": null,\n                \"text\": null,\n                \"updated-at\": \"2015-02-12T14:51:41.374+01:00\",\n                \"video-token\": \"\"\n            },\n            \"relationships\": {\n                \"question\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/answers/14/relationships/question\",\n                        \"related\": \"https://api.teamtailor.com/v1/answers/14/question\"\n                    }\n                },\n                \"candidate\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/answers/14/relationships/candidate\",\n                        \"related\": \"https://api.teamtailor.com/v1/answers/14/candidate\"\n                    }\n                },\n                \"picked-question\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/answers/14/relationships/picked-question\",\n                        \"related\": \"https://api.teamtailor.com/v1/answers/14/picked-question\"\n                    }\n                },\n                \"upload\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/answers/14/relationships/upload\",\n                        \"related\": \"https://api.teamtailor.com/v1/answers/14/upload\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"16\",\n            \"type\": \"answers\",\n            \"links\": {\n                \"authenticated-video-url\": \"https://api.teamtailor.com/v1/answers/16/authenticated-video-url\",\n                \"self\": \"https://api.teamtailor.com/v1/answers/16\"\n            },\n            \"attributes\": {\n                \"answer\": \"JAG TÅL INTE SKITEN\",\n                \"boolean\": null,\n                \"choices\": [],\n                \"created-at\": \"2015-02-12T14:51:41.379+01:00\",\n                \"data\": null,\n                \"date\": null,\n                \"number\": null,\n                \"question-type\": \"text\",\n                \"range\": null,\n                \"text\": \"JAG TÅL INTE SKITEN\",\n                \"updated-at\": \"2015-02-12T14:51:41.379+01:00\",\n                \"video-token\": \"\"\n            },\n            \"relationships\": {\n                \"question\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/answers/16/relationships/question\",\n                        \"related\": \"https://api.teamtailor.com/v1/answers/16/question\"\n                    }\n                },\n                \"candidate\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/answers/16/relationships/candidate\",\n                        \"related\": \"https://api.teamtailor.com/v1/answers/16/candidate\"\n                    }\n                },\n                \"picked-question\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/answers/16/relationships/picked-question\",\n                        \"related\": \"https://api.teamtailor.com/v1/answers/16/picked-question\"\n                    }\n                },\n                \"upload\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/answers/16/relationships/upload\",\n                        \"related\": \"https://api.teamtailor.com/v1/answers/16/upload\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"18\",\n            \"type\": \"answers\",\n            \"links\": {\n                \"authenticated-video-url\": \"https://api.teamtailor.com/v1/answers/18/authenticated-video-url\",\n                \"self\": \"https://api.teamtailor.com/v1/answers/18\"\n            },\n            \"attributes\": {\n                \"answer\": [\n                    \"Red\"\n                ],\n                \"boolean\": null,\n                \"choices\": [\n                    2\n                ],\n                \"created-at\": \"2015-02-12T14:53:16.960+01:00\",\n                \"data\": null,\n                \"date\": null,\n                \"number\": null,\n                \"question-type\": \"choice\",\n                \"range\": null,\n                \"text\": null,\n                \"updated-at\": \"2015-02-12T14:53:16.960+01:00\",\n                \"video-token\": \"\"\n            },\n            \"relationships\": {\n                \"question\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/answers/18/relationships/question\",\n                        \"related\": \"https://api.teamtailor.com/v1/answers/18/question\"\n                    }\n                },\n                \"candidate\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/answers/18/relationships/candidate\",\n                        \"related\": \"https://api.teamtailor.com/v1/answers/18/candidate\"\n                    }\n                },\n                \"picked-question\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/answers/18/relationships/picked-question\",\n                        \"related\": \"https://api.teamtailor.com/v1/answers/18/picked-question\"\n                    }\n                },\n                \"upload\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/answers/18/relationships/upload\",\n                        \"related\": \"https://api.teamtailor.com/v1/answers/18/upload\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"19\",\n            \"type\": \"answers\",\n            \"links\": {\n                \"authenticated-video-url\": \"https://api.teamtailor.com/v1/answers/19/authenticated-video-url\",\n                \"self\": \"https://api.teamtailor.com/v1/answers/19\"\n            },\n            \"attributes\": {\n                \"answer\": [\n                    \"For lunch\"\n                ],\n                \"boolean\": null,\n                \"choices\": [\n                    2\n                ],\n                \"created-at\": \"2015-02-12T14:53:16.962+01:00\",\n                \"data\": null,\n                \"date\": null,\n                \"number\": null,\n                \"question-type\": \"choice\",\n                \"range\": null,\n                \"text\": null,\n                \"updated-at\": \"2015-02-12T14:53:16.962+01:00\",\n                \"video-token\": \"\"\n            },\n            \"relationships\": {\n                \"question\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/answers/19/relationships/question\",\n                        \"related\": \"https://api.teamtailor.com/v1/answers/19/question\"\n                    }\n                },\n                \"candidate\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/answers/19/relationships/candidate\",\n                        \"related\": \"https://api.teamtailor.com/v1/answers/19/candidate\"\n                    }\n                },\n                \"picked-question\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/answers/19/relationships/picked-question\",\n                        \"related\": \"https://api.teamtailor.com/v1/answers/19/picked-question\"\n                    }\n                },\n                \"upload\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/answers/19/relationships/upload\",\n                        \"related\": \"https://api.teamtailor.com/v1/answers/19/upload\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"21\",\n            \"type\": \"answers\",\n            \"links\": {\n                \"authenticated-video-url\": \"https://api.teamtailor.com/v1/answers/21/authenticated-video-url\",\n                \"self\": \"https://api.teamtailor.com/v1/answers/21\"\n            },\n            \"attributes\": {\n                \"answer\": \"As part of fruit tastings, to describe the flavour of apples and it is extremely difficult. I can describe the overall taste of an apple – its juiciness, sweetness, crispness and crunch. Beyond describing the skin as tasting a bit like plant leaves I have nothing to offer.\\r\\n\\r\\nIf you walked into a green grocers and each apple had a list of descriptors from floral to caramel, from citrus to savoury, then you might be a bit surprised. Curious, but probably extremely skeptical. Some of us might be encouraged by this to try different apples, to play along with the new fun game and see what we tasted. I’d wager most people would write the vendor off as pretentious or just borderline insane. Apples taste like apples.\\r\\n\\r\\nI’m not saying we should stop describing coffee – and I’m not saying that coffee isn’t more complex than an apple when it comes to flavours (though cider tasters/apple-focused flavorists may disagree). I just think it is worth remembering, from time to time, just how alien the idea of a flavour descriptor can be.\",\n                \"boolean\": null,\n                \"choices\": [],\n                \"created-at\": \"2015-02-12T14:53:16.966+01:00\",\n                \"data\": null,\n                \"date\": null,\n                \"number\": null,\n                \"question-type\": \"text\",\n                \"range\": null,\n                \"text\": \"As part of fruit tastings, to describe the flavour of apples and it is extremely difficult. I can describe the overall taste of an apple – its juiciness, sweetness, crispness and crunch. Beyond describing the skin as tasting a bit like plant leaves I have nothing to offer.\\r\\n\\r\\nIf you walked into a green grocers and each apple had a list of descriptors from floral to caramel, from citrus to savoury, then you might be a bit surprised. Curious, but probably extremely skeptical. Some of us might be encouraged by this to try different apples, to play along with the new fun game and see what we tasted. I’d wager most people would write the vendor off as pretentious or just borderline insane. Apples taste like apples.\\r\\n\\r\\nI’m not saying we should stop describing coffee – and I’m not saying that coffee isn’t more complex than an apple when it comes to flavours (though cider tasters/apple-focused flavorists may disagree). I just think it is worth remembering, from time to time, just how alien the idea of a flavour descriptor can be.\",\n                \"updated-at\": \"2015-02-12T14:53:16.966+01:00\",\n                \"video-token\": \"\"\n            },\n            \"relationships\": {\n                \"question\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/answers/21/relationships/question\",\n                        \"related\": \"https://api.teamtailor.com/v1/answers/21/question\"\n                    }\n                },\n                \"candidate\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/answers/21/relationships/candidate\",\n                        \"related\": \"https://api.teamtailor.com/v1/answers/21/candidate\"\n                    }\n                },\n                \"picked-question\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/answers/21/relationships/picked-question\",\n                        \"related\": \"https://api.teamtailor.com/v1/answers/21/picked-question\"\n                    }\n                },\n                \"upload\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/answers/21/relationships/upload\",\n                        \"related\": \"https://api.teamtailor.com/v1/answers/21/upload\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"31518\",\n            \"type\": \"answers\",\n            \"links\": {\n                \"authenticated-video-url\": \"https://api.teamtailor.com/v1/answers/31518/authenticated-video-url\",\n                \"self\": \"https://api.teamtailor.com/v1/answers/31518\"\n            },\n            \"attributes\": {\n                \"answer\": [\n                    \"Red\"\n                ],\n                \"boolean\": null,\n                \"choices\": [\n                    2\n                ],\n                \"created-at\": \"2015-10-01T09:31:39.527+02:00\",\n                \"data\": null,\n                \"date\": null,\n                \"number\": null,\n                \"question-type\": \"choice\",\n                \"range\": null,\n                \"text\": null,\n                \"updated-at\": \"2015-10-01T09:31:39.527+02:00\",\n                \"video-token\": \"\"\n            },\n            \"relationships\": {\n                \"question\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/answers/31518/relationships/question\",\n                        \"related\": \"https://api.teamtailor.com/v1/answers/31518/question\"\n                    }\n                },\n                \"candidate\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/answers/31518/relationships/candidate\",\n                        \"related\": \"https://api.teamtailor.com/v1/answers/31518/candidate\"\n                    }\n                },\n                \"picked-question\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/answers/31518/relationships/picked-question\",\n                        \"related\": \"https://api.teamtailor.com/v1/answers/31518/picked-question\"\n                    }\n                },\n                \"upload\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/answers/31518/relationships/upload\",\n                        \"related\": \"https://api.teamtailor.com/v1/answers/31518/upload\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"31519\",\n            \"type\": \"answers\",\n            \"links\": {\n                \"authenticated-video-url\": \"https://api.teamtailor.com/v1/answers/31519/authenticated-video-url\",\n                \"self\": \"https://api.teamtailor.com/v1/answers/31519\"\n            },\n            \"attributes\": {\n                \"answer\": [\n                    \"For lunch\"\n                ],\n                \"boolean\": null,\n                \"choices\": [\n                    2\n                ],\n                \"created-at\": \"2015-10-01T09:31:39.528+02:00\",\n                \"data\": null,\n                \"date\": null,\n                \"number\": null,\n                \"question-type\": \"choice\",\n                \"range\": null,\n                \"text\": null,\n                \"updated-at\": \"2015-10-01T09:31:39.528+02:00\",\n                \"video-token\": \"\"\n            },\n            \"relationships\": {\n                \"question\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/answers/31519/relationships/question\",\n                        \"related\": \"https://api.teamtailor.com/v1/answers/31519/question\"\n                    }\n                },\n                \"candidate\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/answers/31519/relationships/candidate\",\n                        \"related\": \"https://api.teamtailor.com/v1/answers/31519/candidate\"\n                    }\n                },\n                \"picked-question\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/answers/31519/relationships/picked-question\",\n                        \"related\": \"https://api.teamtailor.com/v1/answers/31519/picked-question\"\n                    }\n                },\n                \"upload\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/answers/31519/relationships/upload\",\n                        \"related\": \"https://api.teamtailor.com/v1/answers/31519/upload\"\n                    }\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"record-count\": 3124,\n        \"page-count\": 313\n    },\n    \"links\": {\n        \"next\": \"https://api.teamtailor.com/v1/answers?page%5Bafter%5D=MzE1MTk&page%5Bsize%5D=10\"\n    }\n}"}],"_postman_id":"4a83b757-55b8-4e88-81c7-f4c2c5f6e22b"},{"name":"Show answer","id":"143b4bb3-b022-4aca-8f77-2417d4795272","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/answers/1","description":"<p>Use this endpoint to retrieve a single answer.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","answers","1"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"143b4bb3-b022-4aca-8f77-2417d4795272"},{"name":"Create Answer","id":"67f76aef-699b-439b-a82c-80179e268946","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"data\": {\n    \"type\": \"answers\",\n    \"attributes\": {\n      \"choices\": [\n        3,\n        4\n      ]\n    },\n    \"relationships\": {\n      \"candidate\": {\n        \"data\": {\n          \"id\": \"1\",\n          \"type\": \"candidates\"\n        }\n      },\n      \"question\": {\n        \"data\": {\n          \"id\": \"1\",\n          \"type\": \"questions\"\n        }\n      }\n    }\n  }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/answers","description":"<p>Create a new Answer.</p>\n<aside>\n  The relations <code>question</code> and <code>candidate</code> are required to be able to create a new answer.\n</aside>\n\n<aside>\n  If the candidate already has answered the question, the answer will be updated.\n</aside>\n\n<aside>\n  It is not possible to create <code>file</code> or <code>video</code> answer via API.\n</aside>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","answers"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"3c6773f0-d7dc-4925-9613-34fe316ebfca","name":"Create Answer","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"data\": {\n    \"type\": \"answers\",\n    \"attributes\": {\n      \"choices\": [\n        3,\n        4\n      ]\n    },\n    \"relationships\": {\n      \"candidate\": {\n        \"data\": {\n          \"id\": \"1\",\n          \"type\": \"candidates\"\n        }\n      },\n      \"question\": {\n        \"data\": {\n          \"id\": \"1\",\n          \"type\": \"questions\"\n        }\n      }\n    }\n  }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/answers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"7\",\n        \"type\": \"answers\",\n        \"links\": {\n            \"authenticated-video-url\": \"https://api.teamtailor.localhost/v1/answers/7/authenticated-video-url\",\n            \"self\": \"https://api.teamtailor.localhost/v1/answers/7\"\n        },\n        \"attributes\": {\n            \"boolean\": null,\n            \"choices\": [\n                3,\n                4\n            ],\n            \"updated-at\": \"2020-12-14T14:37:10.156+01:00\",\n            \"range\": null,\n            \"text\": null,\n            \"video-token\": \"\"\n        },\n        \"relationships\": {\n            \"question\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/answers/7/relationships/question\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/answers/7/question\"\n                }\n            },\n            \"candidate\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/answers/7/relationships/candidate\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/answers/7/candidate\"\n                }\n            },\n            \"upload\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/answers/7/relationships/upload\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/answers/7/upload\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"67f76aef-699b-439b-a82c-80179e268946"},{"name":"Get authenticated video URL","id":"3542e58f-f4fc-4554-b276-f2cf804cbc94","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-API-Version","value":"20240404","type":"text"}],"url":"https://api.teamtailor.com/v1/answers/1/authenticated-video-url","description":"<p>GET request to retrieve the authenticated video URL for a specific video answer.</p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<ul>\n<li><code>answer_id</code> (path) : The ID of the answer. (Must be a video answer)</li>\n</ul>\n<h3 id=\"response\">Response</h3>\n<p>JSON object with <code>authenticated-video-url</code> and <code>usage-expiration-time</code> keys.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","answers","1","authenticated-video-url"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"69dd011d-4bba-44ab-b8a6-da37332465b9","name":"Get authenticated video URL","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-API-Version","value":"20240404","type":"text"}],"url":"https://api.teamtailor.com/v1/answers/1/authenticated-video-url"},"_postman_previewlanguage":null,"header":[{"key":"Content-Type","value":"application/json; charset=utf-8","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"authenticated-video-url\": \"https://video-cdn.host.com/videos/r1d59694344bff5f10f31184d6342ce8/video.mp4?client_auth=9fb008a6d48dee09ee896c7a7b6fc1176e194557445c088147a7a7732aeac955f9f794826e405a33dba3b6091455016eeee6af72fc8b0d262035daffaf548a2075a2981397f8d999ba1a38481bc4d9aab01235c6d5df4bf484a912f1b33754704543e78c74d4619a6f49ab5f77a8e6f4a1883c2c6b14d8af384a4c45b7e810dd1f7d470f1723f503e93cb635b8cfa32f9210da43c4e3c088a73e4fe025cb031ab86e1a02ba0da9928d34b4c4df5951b196d5824a7696473ee7e5271d77b46a343d4503f3e7b76eb22c9f74d767c28ec9492168493effd78cff2fe8caf54b501d870e37893580c39b38e28f1cc06ce48b19bc391e57a448de3618daa71133d12b48c14c40c75bffeccc033dedd2865e1c684cd657dfa66ff4dd0926f5da64f54b9f6311679fbf0338f0c551dc98c2fb59074fb93dc3856a84&i07af2jp98rvoctt26y5egy3r1e02f953aa66981b6f91023277fba32=r15e538e6696c40478e6e01c85d684ad\",\n    \"usage-expiration-time\": 7200\n}"}],"_postman_id":"3542e58f-f4fc-4554-b276-f2cf804cbc94"}],"id":"bc7522c7-6c6f-4e49-b8e9-737669b4fd8f","description":"<h3 id=\"required-scope\">Required scope</h3>\n<p>Admin</p>\n<h3 id=\"attributes\">Attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>boolean</td>\n<td>boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>choices</td>\n<td>array</td>\n<td></td>\n</tr>\n<tr>\n<td>updated-at</td>\n<td>date</td>\n<td></td>\n</tr>\n<tr>\n<td>range</td>\n<td>integer</td>\n<td></td>\n</tr>\n<tr>\n<td>text</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>video-token</td>\n<td>string</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"relations\">Relations</h3>\n<p>The <code>answer</code> object always has a relation to a <code>question</code> and a <code>candidate</code></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Relation</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>question</td>\n<td></td>\n</tr>\n<tr>\n<td>candidate</td>\n<td></td>\n</tr>\n<tr>\n<td>upload</td>\n<td>If the answer is a file answer</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"9002bbbc-3811-4bf2-9f54-8e7a73d41a3a","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"50fb2a53-19e2-46a9-97cb-a674a6ed0268","type":"text/javascript","exec":[""]}}],"_postman_id":"bc7522c7-6c6f-4e49-b8e9-737669b4fd8f","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}}},{"name":"Audit Events","item":[{"name":"List audit events","id":"7eaf149a-560d-44c4-9bf1-acbc7e983c01","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"}],"url":"https://api.teamtailor.com/v1/audit-events","description":"<h2 id=\"list-audit-events\">List Audit Events</h2>\n<p>Use this endpoint to retrieve lists of audit events.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","audit-events"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"89090cfd-276f-47a1-9c1e-5fdaab327c77","name":"List audit events","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"}],"url":"https://api.teamtailor.com/v1/audit-events"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": [],\n    \"meta\": {\n        \"record-count\": 0,\n        \"page-count\": 0\n    },\n    \"links\": {\n        \"first\": \"https://api.teamtailor.localhost/v1/audit-events?page%5Bnumber%5D=1&page%5Bsize%5D=10\",\n        \"last\": \"https://api.teamtailor.localhost/v1/audit-events?page%5Bnumber%5D=1&page%5Bsize%5D=10\"\n    }\n}"}],"_postman_id":"7eaf149a-560d-44c4-9bf1-acbc7e983c01"},{"name":"Show audit event","id":"a7220a4e-1469-45ae-be2a-db302f17989f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"}],"url":"https://api.teamtailor.com/v1/audit-events/1","description":"<h2 id=\"show-an-audit-event\">Show an Audit Event</h2>\n<p>Use this endpoint to retrieve a specific audit event.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","audit-events","1"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"a4cd3582-3b0a-4f17-91eb-a5b89b4de4f7","name":"Show audit event","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"}],"url":"https://api.teamtailor.com/v1/audit-events/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"1\",\n        \"type\": \"audit-events\",\n        \"links\": {\n            \"self\": \"https://api.teamtailor.localhost/v1/audit-events/1\"\n        },\n        \"attributes\": {\n            \"action\": \"create\",\n            \"actor-id\": null,\n            \"actor-label\": \"System\",\n            \"actor-type\": null,\n            \"description\": null,\n            \"ip-address\": null,\n            \"source-id\": 1,\n            \"source-label\": null,\n            \"source-type\": \"audit-log\",\n            \"timestamp\": \"2020-12-14T16:50:59.846+01:00\"\n        }\n    }\n}"}],"_postman_id":"a7220a4e-1469-45ae-be2a-db302f17989f"}],"id":"303091ad-fc06-446a-b3a5-213b7a75cd8f","description":"<h3 id=\"required-scope\">Required scope</h3>\n<p>Admin</p>\n<h3 id=\"attributes\">Attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>action</td>\n<td>string</td>\n<td>Action performed</td>\n</tr>\n<tr>\n<td>actor-id</td>\n<td>integer</td>\n<td>Actor id</td>\n</tr>\n<tr>\n<td>actor-label</td>\n<td>string</td>\n<td>Actor name</td>\n</tr>\n<tr>\n<td>actor-type</td>\n<td>string</td>\n<td>Actor type</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>Description of the action</td>\n</tr>\n<tr>\n<td>ip-address</td>\n<td>string</td>\n<td>IP where the event was triggered from</td>\n</tr>\n<tr>\n<td>source-id</td>\n<td>integer</td>\n<td>Source id</td>\n</tr>\n<tr>\n<td>source-label</td>\n<td>string</td>\n<td>Depends on <code>source-type</code>.<br /> - <code>candidate</code>: name or email <br /> - <code>job</code>: job title <br /> - <code>nurture-campaign</code>: name <br /> - <code>user</code>: email <br /> - <code>audit-log</code>: <code>null</code></td>\n</tr>\n<tr>\n<td>source-type</td>\n<td>string</td>\n<td><code>audit-log</code> / <code>candidate</code> / <code>job</code> / <code>nurture-campaign</code> / <code>user</code></td>\n</tr>\n<tr>\n<td>timestamp</td>\n<td>string</td>\n<td>Action datetime</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"299ee4ff-4679-4111-800b-023e9a9e61a1","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"2ca2f164-8559-49ef-bb1d-0e586db2d9b0","type":"text/javascript","exec":[""]}}],"_postman_id":"303091ad-fc06-446a-b3a5-213b7a75cd8f","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}}},{"name":"Candidates","item":[{"name":"List candidates","id":"759f6a0c-5b05-4d9c-b1c8-af80c5d9b620","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","value":"20240404"}],"url":"https://api.teamtailor.com/v1/candidates","description":"<h2 id=\"list-candidates\">List Candidates</h2>\n<h3 id=\"example-parameters\">Example parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Default</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>include</td>\n<td>null</td>\n<td>Comma separated list of relations to include in the response. For example <code>job-applications,department</code>.</td>\n</tr>\n<tr>\n<td>filter[email]</td>\n<td>null</td>\n<td>Filter by email address.</td>\n</tr>\n<tr>\n<td>filter[division]</td>\n<td>null</td>\n<td>Filter by division.</td>\n</tr>\n<tr>\n<td>filter[department]</td>\n<td>null</td>\n<td>Filter by department.</td>\n</tr>\n<tr>\n<td>filter[role]</td>\n<td>null</td>\n<td>Filter by role.</td>\n</tr>\n<tr>\n<td>filter[locations]</td>\n<td>null</td>\n<td>Filter by locations.</td>\n</tr>\n<tr>\n<td>filter[regions]</td>\n<td>null</td>\n<td>Filter by regions.</td>\n</tr>\n<tr>\n<td>filter[created-at][from]</td>\n<td>null</td>\n<td>Filter by created-at newer than this date.</td>\n</tr>\n<tr>\n<td>filter[created-at][to]</td>\n<td>null</td>\n<td>Filter by created-at older than this date.</td>\n</tr>\n<tr>\n<td>filter[updated-at][from]</td>\n<td>null</td>\n<td>Filter by updated-at newer than this date.</td>\n</tr>\n<tr>\n<td>filter[updated-at][to]</td>\n<td>null</td>\n<td>Filter by updated-at older than this date.</td>\n</tr>\n<tr>\n<td>filter[connected]</td>\n<td>null</td>\n<td><em>true</em> or <em>false</em> Filter candidates who has connected.</td>\n</tr>\n<tr>\n<td>filter[phone]</td>\n<td>null</td>\n<td>Filter by phone (6-14) characters, can include <code>+</code>.</td>\n</tr>\n<tr>\n<td>sort</td>\n<td>id</td>\n<td>Sort list by any of the candidate attributes. Use <code>-id</code> to sort by id descending.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","candidates"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"8792a486-882c-4f85-83e8-c0e1fb466b40","name":"List candidates","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"}],"url":"https://api.teamtailor.com/v1/candidates"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"1\",\n            \"type\": \"candidates\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/candidates/1\"\n            },\n            \"attributes\": {\n                \"connected\": false,\n                \"created-at\": \"2020-10-30T10:33:15.637+01:00\",\n                \"email\": \"applicant1@example.com\",\n                \"facebook-id\": null,\n                \"first-name\": \"Amos\",\n                \"internal\": false,\n                \"last-name\": \"Marvin\",\n                \"linkedin-uid\": null,\n                \"linkedin-url\": null,\n                \"original-resume\": null,\n                \"phone\": null,\n                \"picture\": null,\n                \"pitch\": null,\n                \"referring-site\": null,\n                \"referring-url\": null,\n                \"referred\": false,\n                \"resume\": null,\n                \"sourced\": false,\n                \"unsubscribed\": false,\n                \"updated-at\": \"2020-12-14T14:37:10.201+01:00\",\n                \"facebook-profile\": null,\n                \"linkedin-profile\": null,\n                \"tags\": []\n            },\n            \"relationships\": {\n                \"activities\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/1/relationships/activities\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/1/activities\"\n                    }\n                },\n                \"division\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/1/relationships/division\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/1/division\"\n                    }\n                },\n                \"department\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/1/relationships/department\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/1/department\"\n                    }\n                },\n                \"role\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/1/relationships/role\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/1/role\"\n                    }\n                },\n                \"regions\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/1/relationships/regions\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/1/regions\"\n                    }\n                },\n                \"job-applications\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/1/relationships/job-applications\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/1/job-applications\"\n                    }\n                },\n                \"questions\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/1/relationships/questions\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/1/questions\"\n                    }\n                },\n                \"answers\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/1/relationships/answers\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/1/answers\"\n                    }\n                },\n                \"locations\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/1/relationships/locations\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/1/locations\"\n                    }\n                },\n                \"uploads\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/1/relationships/uploads\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/1/uploads\"\n                    }\n                },\n                \"custom-field-values\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/1/relationships/custom-field-values\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/1/custom-field-values\"\n                    }\n                },\n                \"partner-results\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/1/relationships/partner-results\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/1/partner-results\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"2\",\n            \"type\": \"candidates\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/candidates/2\"\n            },\n            \"attributes\": {\n                \"connected\": false,\n                \"created-at\": \"2020-10-30T10:33:15.672+01:00\",\n                \"email\": \"applicant2@example.com\",\n                \"facebook-id\": null,\n                \"first-name\": \"Randy\",\n                \"internal\": false,\n                \"last-name\": \"Hyatt\",\n                \"linkedin-uid\": null,\n                \"linkedin-url\": null,\n                \"original-resume\": null,\n                \"phone\": null,\n                \"picture\": null,\n                \"pitch\": null,\n                \"referring-site\": null,\n                \"referring-url\": null,\n                \"referred\": false,\n                \"resume\": null,\n                \"sourced\": false,\n                \"unsubscribed\": false,\n                \"updated-at\": \"2020-10-30T10:33:15.672+01:00\",\n                \"facebook-profile\": null,\n                \"linkedin-profile\": null,\n                \"tags\": []\n            },\n            \"relationships\": {\n                \"activities\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/2/relationships/activities\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/2/activities\"\n                    }\n                },\n                \"division\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/2/relationships/division\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/2/division\"\n                    }\n                },\n                \"department\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/2/relationships/department\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/2/department\"\n                    }\n                },\n                \"role\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/2/relationships/role\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/2/role\"\n                    }\n                },\n                \"regions\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/2/relationships/regions\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/2/regions\"\n                    }\n                },\n                \"job-applications\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/2/relationships/job-applications\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/2/job-applications\"\n                    }\n                },\n                \"questions\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/2/relationships/questions\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/2/questions\"\n                    }\n                },\n                \"answers\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/2/relationships/answers\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/2/answers\"\n                    }\n                },\n                \"locations\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/2/relationships/locations\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/2/locations\"\n                    }\n                },\n                \"uploads\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/2/relationships/uploads\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/2/uploads\"\n                    }\n                },\n                \"custom-field-values\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/2/relationships/custom-field-values\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/2/custom-field-values\"\n                    }\n                },\n                \"partner-results\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/2/relationships/partner-results\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/2/partner-results\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"3\",\n            \"type\": \"candidates\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/candidates/3\"\n            },\n            \"attributes\": {\n                \"connected\": false,\n                \"created-at\": \"2020-10-30T10:33:15.776+01:00\",\n                \"email\": \"applicant3@example.com\",\n                \"facebook-id\": null,\n                \"first-name\": \"Cody\",\n                \"internal\": false,\n                \"last-name\": \"Rau\",\n                \"linkedin-uid\": null,\n                \"linkedin-url\": null,\n                \"original-resume\": null,\n                \"phone\": null,\n                \"picture\": null,\n                \"pitch\": null,\n                \"referring-site\": null,\n                \"referring-url\": null,\n                \"referred\": false,\n                \"resume\": null,\n                \"sourced\": false,\n                \"unsubscribed\": false,\n                \"updated-at\": \"2020-10-30T10:33:15.776+01:00\",\n                \"facebook-profile\": null,\n                \"linkedin-profile\": null,\n                \"tags\": []\n            },\n            \"relationships\": {\n                \"activities\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/3/relationships/activities\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/3/activities\"\n                    }\n                },\n                \"division\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/3/relationships/division\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/3/division\"\n                    }\n                },\n                \"department\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/3/relationships/department\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/3/department\"\n                    }\n                },\n                \"role\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/3/relationships/role\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/3/role\"\n                    }\n                },\n                \"regions\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/3/relationships/regions\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/3/regions\"\n                    }\n                },\n                \"job-applications\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/3/relationships/job-applications\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/3/job-applications\"\n                    }\n                },\n                \"questions\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/3/relationships/questions\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/3/questions\"\n                    }\n                },\n                \"answers\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/3/relationships/answers\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/3/answers\"\n                    }\n                },\n                \"locations\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/3/relationships/locations\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/3/locations\"\n                    }\n                },\n                \"uploads\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/3/relationships/uploads\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/3/uploads\"\n                    }\n                },\n                \"custom-field-values\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/3/relationships/custom-field-values\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/3/custom-field-values\"\n                    }\n                },\n                \"partner-results\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/3/relationships/partner-results\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/3/partner-results\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"4\",\n            \"type\": \"candidates\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/candidates/4\"\n            },\n            \"attributes\": {\n                \"connected\": false,\n                \"created-at\": \"2020-10-30T10:33:15.870+01:00\",\n                \"email\": \"applicant4@example.com\",\n                \"facebook-id\": null,\n                \"first-name\": \"Dewey\",\n                \"internal\": false,\n                \"last-name\": \"Tromp\",\n                \"linkedin-uid\": null,\n                \"linkedin-url\": null,\n                \"original-resume\": null,\n                \"phone\": null,\n                \"picture\": null,\n                \"pitch\": null,\n                \"referring-site\": null,\n                \"referring-url\": null,\n                \"referred\": false,\n                \"resume\": null,\n                \"sourced\": false,\n                \"unsubscribed\": false,\n                \"updated-at\": \"2020-10-30T10:33:15.870+01:00\",\n                \"facebook-profile\": null,\n                \"linkedin-profile\": null,\n                \"tags\": []\n            },\n            \"relationships\": {\n                \"activities\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/4/relationships/activities\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/4/activities\"\n                    }\n                },\n                \"division\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/4/relationships/division\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/4/division\"\n                    }\n                },\n                \"department\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/4/relationships/department\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/4/department\"\n                    }\n                },\n                \"role\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/4/relationships/role\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/4/role\"\n                    }\n                },\n                \"regions\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/4/relationships/regions\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/4/regions\"\n                    }\n                },\n                \"job-applications\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/4/relationships/job-applications\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/4/job-applications\"\n                    }\n                },\n                \"questions\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/4/relationships/questions\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/4/questions\"\n                    }\n                },\n                \"answers\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/4/relationships/answers\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/4/answers\"\n                    }\n                },\n                \"locations\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/4/relationships/locations\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/4/locations\"\n                    }\n                },\n                \"uploads\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/4/relationships/uploads\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/4/uploads\"\n                    }\n                },\n                \"custom-field-values\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/4/relationships/custom-field-values\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/4/custom-field-values\"\n                    }\n                },\n                \"partner-results\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/4/relationships/partner-results\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/4/partner-results\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"5\",\n            \"type\": \"candidates\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/candidates/5\"\n            },\n            \"attributes\": {\n                \"connected\": false,\n                \"created-at\": \"2020-10-30T10:33:15.971+01:00\",\n                \"email\": \"applicant5@example.com\",\n                \"facebook-id\": null,\n                \"first-name\": \"Leandro\",\n                \"internal\": false,\n                \"last-name\": \"Huel\",\n                \"linkedin-uid\": null,\n                \"linkedin-url\": null,\n                \"original-resume\": null,\n                \"phone\": null,\n                \"picture\": null,\n                \"pitch\": null,\n                \"referring-site\": null,\n                \"referring-url\": null,\n                \"referred\": false,\n                \"resume\": null,\n                \"sourced\": false,\n                \"unsubscribed\": false,\n                \"updated-at\": \"2020-10-30T10:33:15.971+01:00\",\n                \"facebook-profile\": null,\n                \"linkedin-profile\": null,\n                \"tags\": []\n            },\n            \"relationships\": {\n                \"activities\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/5/relationships/activities\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/5/activities\"\n                    }\n                },\n                \"division\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/5/relationships/division\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/5/division\"\n                    }\n                },\n                \"department\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/5/relationships/department\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/5/department\"\n                    }\n                },\n                \"role\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/5/relationships/role\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/5/role\"\n                    }\n                },\n                \"regions\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/5/relationships/regions\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/5/regions\"\n                    }\n                },\n                \"job-applications\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/5/relationships/job-applications\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/5/job-applications\"\n                    }\n                },\n                \"questions\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/5/relationships/questions\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/5/questions\"\n                    }\n                },\n                \"answers\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/5/relationships/answers\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/5/answers\"\n                    }\n                },\n                \"locations\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/5/relationships/locations\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/5/locations\"\n                    }\n                },\n                \"uploads\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/5/relationships/uploads\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/5/uploads\"\n                    }\n                },\n                \"custom-field-values\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/5/relationships/custom-field-values\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/5/custom-field-values\"\n                    }\n                },\n                \"partner-results\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/5/relationships/partner-results\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/5/partner-results\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"6\",\n            \"type\": \"candidates\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/candidates/6\"\n            },\n            \"attributes\": {\n                \"connected\": false,\n                \"created-at\": \"2020-10-30T10:33:16.062+01:00\",\n                \"email\": \"applicant6@example.com\",\n                \"facebook-id\": null,\n                \"first-name\": \"Colby\",\n                \"internal\": false,\n                \"last-name\": \"Schamberger\",\n                \"linkedin-uid\": null,\n                \"linkedin-url\": null,\n                \"original-resume\": null,\n                \"phone\": null,\n                \"picture\": null,\n                \"pitch\": null,\n                \"referring-site\": null,\n                \"referring-url\": null,\n                \"referred\": false,\n                \"resume\": null,\n                \"sourced\": false,\n                \"unsubscribed\": false,\n                \"updated-at\": \"2020-10-30T10:33:16.062+01:00\",\n                \"facebook-profile\": null,\n                \"linkedin-profile\": null,\n                \"tags\": []\n            },\n            \"relationships\": {\n                \"activities\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/6/relationships/activities\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/6/activities\"\n                    }\n                },\n                \"division\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/6/relationships/division\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/6/division\"\n                    }\n                },\n                \"department\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/6/relationships/department\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/6/department\"\n                    }\n                },\n                \"role\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/6/relationships/role\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/6/role\"\n                    }\n                },\n                \"regions\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/6/relationships/regions\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/6/regions\"\n                    }\n                },\n                \"job-applications\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/6/relationships/job-applications\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/6/job-applications\"\n                    }\n                },\n                \"questions\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/6/relationships/questions\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/6/questions\"\n                    }\n                },\n                \"answers\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/6/relationships/answers\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/6/answers\"\n                    }\n                },\n                \"locations\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/6/relationships/locations\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/6/locations\"\n                    }\n                },\n                \"uploads\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/6/relationships/uploads\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/6/uploads\"\n                    }\n                },\n                \"custom-field-values\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/6/relationships/custom-field-values\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/6/custom-field-values\"\n                    }\n                },\n                \"partner-results\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/6/relationships/partner-results\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/6/partner-results\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"7\",\n            \"type\": \"candidates\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/candidates/7\"\n            },\n            \"attributes\": {\n                \"connected\": false,\n                \"created-at\": \"2020-10-30T10:33:16.159+01:00\",\n                \"email\": \"applicant7@example.com\",\n                \"facebook-id\": null,\n                \"first-name\": \"Vania\",\n                \"internal\": false,\n                \"last-name\": \"Moore\",\n                \"linkedin-uid\": null,\n                \"linkedin-url\": null,\n                \"original-resume\": null,\n                \"phone\": null,\n                \"picture\": null,\n                \"pitch\": null,\n                \"referring-site\": null,\n                \"referring-url\": null,\n                \"referred\": false,\n                \"resume\": null,\n                \"sourced\": false,\n                \"unsubscribed\": false,\n                \"updated-at\": \"2020-10-30T10:33:16.159+01:00\",\n                \"facebook-profile\": null,\n                \"linkedin-profile\": null,\n                \"tags\": []\n            },\n            \"relationships\": {\n                \"activities\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/7/relationships/activities\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/7/activities\"\n                    }\n                },\n                \"division\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/7/relationships/division\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/7/division\"\n                    }\n                },\n                \"department\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/7/relationships/department\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/7/department\"\n                    }\n                },\n                \"role\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/7/relationships/role\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/7/role\"\n                    }\n                },\n                \"regions\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/7/relationships/regions\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/7/regions\"\n                    }\n                },\n                \"job-applications\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/7/relationships/job-applications\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/7/job-applications\"\n                    }\n                },\n                \"questions\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/7/relationships/questions\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/7/questions\"\n                    }\n                },\n                \"answers\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/7/relationships/answers\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/7/answers\"\n                    }\n                },\n                \"locations\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/7/relationships/locations\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/7/locations\"\n                    }\n                },\n                \"uploads\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/7/relationships/uploads\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/7/uploads\"\n                    }\n                },\n                \"custom-field-values\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/7/relationships/custom-field-values\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/7/custom-field-values\"\n                    }\n                },\n                \"partner-results\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/7/relationships/partner-results\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/7/partner-results\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"8\",\n            \"type\": \"candidates\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/candidates/8\"\n            },\n            \"attributes\": {\n                \"connected\": false,\n                \"created-at\": \"2020-10-30T10:33:16.257+01:00\",\n                \"email\": \"applicant8@example.com\",\n                \"facebook-id\": null,\n                \"first-name\": \"Anneliese\",\n                \"internal\": false,\n                \"last-name\": \"Haag\",\n                \"linkedin-uid\": null,\n                \"linkedin-url\": null,\n                \"original-resume\": null,\n                \"phone\": null,\n                \"picture\": null,\n                \"pitch\": null,\n                \"referring-site\": null,\n                \"referring-url\": null,\n                \"referred\": false,\n                \"resume\": null,\n                \"sourced\": false,\n                \"unsubscribed\": false,\n                \"updated-at\": \"2020-10-30T10:33:16.257+01:00\",\n                \"facebook-profile\": null,\n                \"linkedin-profile\": null,\n                \"tags\": []\n            },\n            \"relationships\": {\n                \"activities\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/8/relationships/activities\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/8/activities\"\n                    }\n                },\n                \"division\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/8/relationships/division\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/8/division\"\n                    }\n                },\n                \"department\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/8/relationships/department\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/8/department\"\n                    }\n                },\n                \"role\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/8/relationships/role\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/8/role\"\n                    }\n                },\n                \"regions\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/8/relationships/regions\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/8/regions\"\n                    }\n                },\n                \"job-applications\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/8/relationships/job-applications\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/8/job-applications\"\n                    }\n                },\n                \"questions\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/8/relationships/questions\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/8/questions\"\n                    }\n                },\n                \"answers\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/8/relationships/answers\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/8/answers\"\n                    }\n                },\n                \"locations\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/8/relationships/locations\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/8/locations\"\n                    }\n                },\n                \"uploads\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/8/relationships/uploads\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/8/uploads\"\n                    }\n                },\n                \"custom-field-values\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/8/relationships/custom-field-values\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/8/custom-field-values\"\n                    }\n                },\n                \"partner-results\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/8/relationships/partner-results\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/8/partner-results\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"9\",\n            \"type\": \"candidates\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/candidates/9\"\n            },\n            \"attributes\": {\n                \"connected\": false,\n                \"created-at\": \"2020-10-30T10:33:16.359+01:00\",\n                \"email\": \"applicant9@example.com\",\n                \"facebook-id\": null,\n                \"first-name\": \"Shenika\",\n                \"internal\": false,\n                \"last-name\": \"Stamm\",\n                \"linkedin-uid\": null,\n                \"linkedin-url\": null,\n                \"original-resume\": null,\n                \"phone\": null,\n                \"picture\": null,\n                \"pitch\": null,\n                \"referring-site\": null,\n                \"referring-url\": null,\n                \"referred\": false,\n                \"resume\": null,\n                \"sourced\": false,\n                \"unsubscribed\": false,\n                \"updated-at\": \"2020-10-30T10:33:16.359+01:00\",\n                \"facebook-profile\": null,\n                \"linkedin-profile\": null,\n                \"tags\": []\n            },\n            \"relationships\": {\n                \"activities\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/9/relationships/activities\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/9/activities\"\n                    }\n                },\n                \"division\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/9/relationships/division\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/9/division\"\n                    }\n                },\n                \"department\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/9/relationships/department\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/9/department\"\n                    }\n                },\n                \"role\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/9/relationships/role\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/9/role\"\n                    }\n                },\n                \"regions\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/9/relationships/regions\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/9/regions\"\n                    }\n                },\n                \"job-applications\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/9/relationships/job-applications\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/9/job-applications\"\n                    }\n                },\n                \"questions\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/9/relationships/questions\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/9/questions\"\n                    }\n                },\n                \"answers\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/9/relationships/answers\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/9/answers\"\n                    }\n                },\n                \"locations\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/9/relationships/locations\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/9/locations\"\n                    }\n                },\n                \"uploads\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/9/relationships/uploads\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/9/uploads\"\n                    }\n                },\n                \"custom-field-values\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/9/relationships/custom-field-values\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/9/custom-field-values\"\n                    }\n                },\n                \"partner-results\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/9/relationships/partner-results\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/9/partner-results\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"10\",\n            \"type\": \"candidates\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/candidates/10\"\n            },\n            \"attributes\": {\n                \"connected\": false,\n                \"created-at\": \"2020-10-30T10:33:16.474+01:00\",\n                \"email\": \"applicant10@example.com\",\n                \"facebook-id\": null,\n                \"first-name\": \"Thanh\",\n                \"internal\": false,\n                \"last-name\": \"Rutherford\",\n                \"linkedin-uid\": null,\n                \"linkedin-url\": null,\n                \"original-resume\": null,\n                \"phone\": null,\n                \"picture\": null,\n                \"pitch\": null,\n                \"referring-site\": null,\n                \"referring-url\": null,\n                \"referred\": false,\n                \"resume\": null,\n                \"sourced\": false,\n                \"unsubscribed\": false,\n                \"updated-at\": \"2020-10-30T10:33:16.474+01:00\",\n                \"facebook-profile\": null,\n                \"linkedin-profile\": null,\n                \"tags\": []\n            },\n            \"relationships\": {\n                \"activities\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/10/relationships/activities\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/10/activities\"\n                    }\n                },\n                \"division\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/10/relationships/division\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/10/division\"\n                    }\n                },\n                \"department\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/10/relationships/department\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/10/department\"\n                    }\n                },\n                \"role\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/10/relationships/role\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/10/role\"\n                    }\n                },\n                \"regions\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/10/relationships/regions\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/10/regions\"\n                    }\n                },\n                \"job-applications\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/10/relationships/job-applications\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/10/job-applications\"\n                    }\n                },\n                \"questions\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/10/relationships/questions\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/10/questions\"\n                    }\n                },\n                \"answers\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/10/relationships/answers\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/10/answers\"\n                    }\n                },\n                \"locations\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/10/relationships/locations\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/10/locations\"\n                    }\n                },\n                \"uploads\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/10/relationships/uploads\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/10/uploads\"\n                    }\n                },\n                \"custom-field-values\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/10/relationships/custom-field-values\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/10/custom-field-values\"\n                    }\n                },\n                \"partner-results\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/candidates/10/relationships/partner-results\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/candidates/10/partner-results\"\n                    }\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"record-count\": 418,\n        \"page-count\": 42\n    },\n    \"links\": {\n        \"first\": \"https://api.teamtailor.localhost/v1/candidates?page%5Bnumber%5D=1&page%5Bsize%5D=10\",\n        \"next\": \"https://api.teamtailor.localhost/v1/candidates?page%5Bnumber%5D=2&page%5Bsize%5D=10\",\n        \"last\": \"https://api.teamtailor.localhost/v1/candidates?page%5Bnumber%5D=42&page%5Bsize%5D=10\"\n    }\n}"}],"_postman_id":"759f6a0c-5b05-4d9c-b1c8-af80c5d9b620"},{"name":"Show candidate","id":"1e591a5a-99cc-4d17-aaeb-7744dde0dbb2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"}],"url":"https://api.teamtailor.com/v1/candidates/1","description":"<h2 id=\"show-a-candidate\">Show a Candidate</h2>\n<p>Retrieve a specific candidate.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>The candidate's id.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","candidates","1"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"8a714aa2-752b-4c3e-aa9d-3f89de161b07","name":"Show candidate","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"}],"url":"https://api.teamtailor.com/v1/candidates/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"1\",\n        \"type\": \"candidates\",\n        \"links\": {\n            \"self\": \"https://api.teamtailor.localhost/v1/candidates/1\"\n        },\n        \"attributes\": {\n            \"connected\": false,\n            \"created-at\": \"2020-10-30T10:33:15.637+01:00\",\n            \"email\": \"applicant1@example.com\",\n            \"facebook-id\": null,\n            \"first-name\": \"Amos\",\n            \"internal\": false,\n            \"last-name\": \"Marvin\",\n            \"linkedin-uid\": null,\n            \"linkedin-url\": null,\n            \"original-resume\": null,\n            \"phone\": null,\n            \"picture\": null,\n            \"pitch\": null,\n            \"referring-site\": null,\n            \"referring-url\": null,\n            \"referred\": false,\n            \"resume\": null,\n            \"resume_summary\": null,\n            \"sourced\": false,\n            \"unsubscribed\": false,\n            \"updated-at\": \"2020-12-14T14:37:10.201+01:00\",\n            \"facebook-profile\": null,\n            \"linkedin-profile\": null,\n            \"tags\": []\n        },\n        \"relationships\": {\n            \"activities\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/candidates/1/relationships/activities\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/candidates/1/activities\"\n                }\n            },\n            \"division\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/candidates/1/relationships/division\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/candidates/1/division\"\n                }\n            },\n            \"department\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/candidates/1/relationships/department\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/candidates/1/department\"\n                }\n            },\n            \"role\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/candidates/1/relationships/role\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/candidates/1/role\"\n                }\n            },\n            \"regions\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/candidates/1/relationships/regions\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/candidates/1/regions\"\n                }\n            },\n            \"job-applications\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/candidates/1/relationships/job-applications\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/candidates/1/job-applications\"\n                }\n            },\n            \"questions\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/candidates/1/relationships/questions\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/candidates/1/questions\"\n                }\n            },\n            \"answers\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/candidates/1/relationships/answers\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/candidates/1/answers\"\n                }\n            },\n            \"locations\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/candidates/1/relationships/locations\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/candidates/1/locations\"\n                }\n            },\n            \"uploads\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/candidates/1/relationships/uploads\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/candidates/1/uploads\"\n                }\n            },\n            \"custom-field-values\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/candidates/1/relationships/custom-field-values\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/candidates/1/custom-field-values\"\n                }\n            },\n            \"partner-results\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/candidates/1/relationships/partner-results\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/candidates/1/partner-results\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"1e591a5a-99cc-4d17-aaeb-7744dde0dbb2"},{"name":"Create candidate","id":"8c5ab123-1a53-4e3b-959f-e3d6d6224d71","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"candidates\",\n        \"attributes\": {\n            \"first-name\": \"Jonas\",\n            \"last-name\": \"Brusman\",\n            \"pitch\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\n            \"email\": \"jonas@example.com\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/candidates","description":"<h2 id=\"create-candidate\">Create candidate</h2>\n<p>A unique <code>email</code> is a required attribute unless <code>sourced</code> is set to true.</p>\n<p>Use the <code>merge</code> attribute to merge the candidate attributes in case a candidate with a matching email address already exists.</p>\n<p>To upload a resume, send a publicly available URL in the <code>resume</code> attribute. Teamtailor will download the file and host it after creating the candidate.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","candidates"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"81e652bd-27f8-4b8a-b2a2-badfd76d07e2","name":"Create candidate","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"candidates\",\n        \"attributes\": {\n            \"first-name\": \"Jonas\",\n            \"last-name\": \"Brusman\",\n            \"pitch\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\n            \"email\": \"jonas@example.com\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/candidates"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"447\",\n        \"type\": \"candidates\",\n        \"links\": {\n            \"self\": \"https://api.teamtailor.localhost/v1/candidates/447\"\n        },\n        \"attributes\": {\n            \"connected\": false,\n            \"created-at\": \"2020-12-15T10:36:53.370+01:00\",\n            \"email\": \"jonas@example.com\",\n            \"facebook-id\": null,\n            \"first-name\": \"Jonas\",\n            \"internal\": false,\n            \"last-name\": \"Brusman\",\n            \"linkedin-uid\": null,\n            \"linkedin-url\": null,\n            \"original-resume\": null,\n            \"phone\": null,\n            \"picture\": null,\n            \"pitch\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\",\n            \"referring-site\": null,\n            \"referring-url\": null,\n            \"referred\": false,\n            \"resume\": null,\n            \"sourced\": false,\n            \"unsubscribed\": false,\n            \"updated-at\": \"2020-12-15T10:36:53.370+01:00\",\n            \"facebook-profile\": null,\n            \"linkedin-profile\": null,\n            \"tags\": []\n        },\n        \"relationships\": {\n            \"activities\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/candidates/447/relationships/activities\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/candidates/447/activities\"\n                }\n            },\n            \"division\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/candidates/447/relationships/division\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/candidates/447/division\"\n                }\n            },\n            \"department\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/candidates/447/relationships/department\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/candidates/447/department\"\n                }\n            },\n            \"role\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/candidates/447/relationships/role\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/candidates/447/role\"\n                }\n            },\n            \"regions\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/candidates/447/relationships/regions\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/candidates/447/regions\"\n                }\n            },\n            \"job-applications\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/candidates/447/relationships/job-applications\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/candidates/447/job-applications\"\n                }\n            },\n            \"questions\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/candidates/447/relationships/questions\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/candidates/447/questions\"\n                }\n            },\n            \"answers\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/candidates/447/relationships/answers\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/candidates/447/answers\"\n                }\n            },\n            \"locations\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/candidates/447/relationships/locations\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/candidates/447/locations\"\n                }\n            },\n            \"uploads\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/candidates/447/relationships/uploads\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/candidates/447/uploads\"\n                }\n            },\n            \"custom-field-values\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/candidates/447/relationships/custom-field-values\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/candidates/447/custom-field-values\"\n                }\n            },\n            \"partner-results\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/candidates/447/relationships/partner-results\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/candidates/447/partner-results\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"8c5ab123-1a53-4e3b-959f-e3d6d6224d71"},{"name":"Update candidate","id":"28b9f6cb-72f0-45fa-8f3c-a2004b54e609","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"\n\n{\n  \"data\": {\n    \"id\": \"1\",\n    \"attributes\": {\n      \"first-name\": \"David\"\n    },\n    \"type\": \"candidates\"\n  }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/candidates/1","description":"<h2 id=\"update-candidate\">Update candidate</h2>\n<p>Change a candidates attributes/relationships.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","candidates","1"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"22464803-336f-4340-9f40-6bea953bfb8d","name":"Update candidate","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"\n\n{\n  \"data\": {\n    \"id\": \"1\",\n    \"attributes\": {\n      \"first-name\": \"David\"\n    },\n    \"type\": \"candidates\"\n  }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/candidates/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"1\",\n        \"type\": \"candidates\",\n        \"links\": {\n            \"self\": \"https://api.teamtailor.localhost/v1/candidates/1\"\n        },\n        \"attributes\": {\n            \"connected\": false,\n            \"created-at\": \"2020-10-30T10:33:15.637+01:00\",\n            \"email\": \"applicant1@example.com\",\n            \"facebook-id\": null,\n            \"first-name\": \"David\",\n            \"internal\": false,\n            \"last-name\": \"Marvin\",\n            \"linkedin-uid\": null,\n            \"linkedin-url\": null,\n            \"original-resume\": null,\n            \"phone\": null,\n            \"picture\": null,\n            \"pitch\": null,\n            \"referring-site\": null,\n            \"referring-url\": null,\n            \"referred\": false,\n            \"resume\": null,\n            \"sourced\": false,\n            \"unsubscribed\": false,\n            \"updated-at\": \"2020-12-15T10:38:47.855+01:00\",\n            \"facebook-profile\": null,\n            \"linkedin-profile\": null,\n            \"tags\": []\n        },\n        \"relationships\": {\n            \"activities\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/candidates/1/relationships/activities\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/candidates/1/activities\"\n                }\n            },\n            \"division\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/candidates/1/relationships/division\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/candidates/1/division\"\n                }\n            },\n            \"department\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/candidates/1/relationships/department\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/candidates/1/department\"\n                }\n            },\n            \"role\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/candidates/1/relationships/role\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/candidates/1/role\"\n                }\n            },\n            \"regions\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/candidates/1/relationships/regions\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/candidates/1/regions\"\n                }\n            },\n            \"job-applications\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/candidates/1/relationships/job-applications\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/candidates/1/job-applications\"\n                }\n            },\n            \"questions\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/candidates/1/relationships/questions\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/candidates/1/questions\"\n                }\n            },\n            \"answers\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/candidates/1/relationships/answers\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/candidates/1/answers\"\n                }\n            },\n            \"locations\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/candidates/1/relationships/locations\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/candidates/1/locations\"\n                }\n            },\n            \"uploads\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/candidates/1/relationships/uploads\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/candidates/1/uploads\"\n                }\n            },\n            \"custom-field-values\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/candidates/1/relationships/custom-field-values\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/candidates/1/custom-field-values\"\n                }\n            },\n            \"partner-results\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/candidates/1/relationships/partner-results\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/candidates/1/partner-results\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"28b9f6cb-72f0-45fa-8f3c-a2004b54e609"}],"id":"2f779ec9-9bc7-44d6-ac38-a5ef5c81396d","description":"<h1 id=\"candidates\">Candidates</h1>\n<p>Required scope: Admin</p>\n<p>A candidate is defined by a unqiue email adress. If a candidate don't have any <code>job-applications</code> it can be either <code>sourced</code> or <code>connected</code>.</p>\n<ul>\n<li><p>When <code>sourced</code> the candidate was added to the system by a recruiter.</p>\n</li>\n<li><p>When <code>referred</code> the candidate was added to the system by an employee.</p>\n</li>\n<li><p>When <code>connected</code> the candidate has opted in to recieve new job notifications and has also the option to create a richer and more personal profile.</p>\n</li>\n</ul>\n<h3 id=\"attributes\">Attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>connected</td>\n<td>boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>consent-future-jobs-at</td>\n<td>date</td>\n<td><strong>Read only</strong>, the date candidate gave consent for contacting about future jobs.</td>\n</tr>\n<tr>\n<td>consent-given-future-jobs</td>\n<td>boolean</td>\n<td><strong>Write only</strong>, True if candidate gave consent for contacting about future jobs.</td>\n</tr>\n<tr>\n<td>created-at</td>\n<td>date</td>\n<td></td>\n</tr>\n<tr>\n<td>updated-at</td>\n<td>date</td>\n<td></td>\n</tr>\n<tr>\n<td>email*</td>\n<td>string</td>\n<td>Email to candidate. Always unique.</td>\n</tr>\n<tr>\n<td>facebook-id</td>\n<td>string</td>\n<td>User id if connected with Facebook</td>\n</tr>\n<tr>\n<td>facebook-profile</td>\n<td>string</td>\n<td><strong>Read only</strong>, html version of Facebook profile</td>\n</tr>\n<tr>\n<td>first-name**</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>internal</td>\n<td>boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>last-name**</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>linkedin-profile</td>\n<td>string</td>\n<td><strong>Read only</strong>, html version of LinkedIn profile</td>\n</tr>\n<tr>\n<td>linkedin-uid</td>\n<td>string</td>\n<td>User id if connected with LinkedIn</td>\n</tr>\n<tr>\n<td>linkedin-url</td>\n<td>string</td>\n<td>URL to LinkedIn profile</td>\n</tr>\n<tr>\n<td>merge</td>\n<td>boolean</td>\n<td><strong>Write only</strong> True if the attributes should be merged with an existing candidate, matched by email address.  <br />  <br />To merge with a <code>sourced</code> candidate, the undocumented attribute <code>sourced_at</code> needs to be in the payload.</td>\n</tr>\n<tr>\n<td>original-resume</td>\n<td>string</td>\n<td><strong>Read only</strong> Signed URL to original version of resume, valid for 30 seconds.</td>\n</tr>\n<tr>\n<td>phone</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>picture</td>\n<td>string</td>\n<td>Url to candidate picture</td>\n</tr>\n<tr>\n<td>pitch</td>\n<td>string</td>\n<td>140 character pitch</td>\n</tr>\n<tr>\n<td>referring-site</td>\n<td>string</td>\n<td><strong>Read only</strong>, friendly name parsed from referring-url (i.e. Facebook, Indeed etc)</td>\n</tr>\n<tr>\n<td>referring-url</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>referred</td>\n<td>boolean</td>\n<td><strong>Read only</strong> True if added by an employee.</td>\n</tr>\n<tr>\n<td>resume</td>\n<td>string</td>\n<td>Signed URL to pdf-version of resume, valid for 30 seconds. When creating a candidate, this should be a publicly available URL to a document.</td>\n</tr>\n<tr>\n<td>resume-summary</td>\n<td>string</td>\n<td>Resume summary by Co-pilot</td>\n</tr>\n<tr>\n<td>resume-updated-at</td>\n<td>date</td>\n<td>Date of resume modification</td>\n</tr>\n<tr>\n<td>sourced</td>\n<td>boolean</td>\n<td>True if added by a recruiter without applying</td>\n</tr>\n<tr>\n<td>set-consent-expiration</td>\n<td>boolean</td>\n<td><strong>Write only</strong> True if candidate have given their consent for you to store their personal details. Will set an expiration period according to <a href=\"https://teamtailor.com/app/settings/gdpr\">your data retention settings</a>.</td>\n</tr>\n<tr>\n<td>tags</td>\n<td>array</td>\n<td></td>\n</tr>\n<tr>\n<td>unsubscribed</td>\n<td>boolean</td>\n<td>If true no new job notifications are sent</td>\n</tr>\n<tr>\n<td>send-welcome-message</td>\n<td>boolean</td>\n<td><strong>Create only</strong>, set to true if you want to send the \"Welcome to connect\" email to the candidate. Default: false</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"relations\">Relations</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Relation</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>activities</td>\n<td>Activity log</td>\n</tr>\n<tr>\n<td>division</td>\n<td></td>\n</tr>\n<tr>\n<td>department</td>\n<td></td>\n</tr>\n<tr>\n<td>role</td>\n<td></td>\n</tr>\n<tr>\n<td>job-applications</td>\n<td></td>\n</tr>\n<tr>\n<td>questions</td>\n<td></td>\n</tr>\n<tr>\n<td>answers</td>\n<td></td>\n</tr>\n<tr>\n<td>locations</td>\n<td></td>\n</tr>\n<tr>\n<td>regions</td>\n<td></td>\n</tr>\n<tr>\n<td>uploads</td>\n<td></td>\n</tr>\n<tr>\n<td>custom-field-values</td>\n<td></td>\n</tr>\n<tr>\n<td>partner-results</td>\n<td></td>\n</tr>\n<tr>\n<td>form-answers</td>\n<td></td>\n</tr>\n<tr>\n<td>onboardings</td>\n<td></td>\n</tr>\n<tr>\n<td>interviews</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><p>*suggests that those attributes/relationships are required.</p>\n<p>**suggests that those attributes/relationships are required if <code>candidate.sourced = true</code></p>\n","_postman_id":"2f779ec9-9bc7-44d6-ac38-a5ef5c81396d","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}}},{"name":"Companies","item":[{"name":"Show company","id":"21d90b33-15ef-4306-963f-fd79f20c4538","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/company","description":"<h2 id=\"show-company\">Show company</h2>\n<aside>\n  Use this endpoint without ID to get the Company belonging to the current API key.\n</aside>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","company"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"a87e474b-001b-48d6-99d8-d2c30a49fcb8","name":"Show company","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/company"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"ZPXFT2VMtr8\",\n        \"type\": \"companies\",\n        \"links\": {\n            \"self\": \"https://api.teamtailor.localhost/v1/companies/ZPXFT2VMtr8\"\n        },\n        \"attributes\": {\n            \"locale\": \"en\",\n            \"website\": \"\",\n            \"name\": \"Teamtailor\"\n        },\n        \"relationships\": {\n            \"manager\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/companies/ZPXFT2VMtr8/relationships/manager\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/companies/ZPXFT2VMtr8/manager\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"21d90b33-15ef-4306-963f-fd79f20c4538"},{"name":"Update company","id":"d2568afd-166d-4441-b8b9-700382ede743","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"companies\",\n        \"id\": \"<insert your company uuid>\",\n        \"attributes\": {\n            \"name\": \"Acme Corp\"\n        },\n        \"relationships\": {\n            \"manager\": {\n                \"data\": {\n                    \"type\": \"users\",\n                    \"id\": \"1\"\n                }\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/company","description":"<h2 id=\"show-company\">Show company</h2>\n<aside>\n  Use this endpoint without ID to get the Company belonging to the current API key.\n</aside>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","company"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"84aab3c7-b534-474f-8f0e-06f24313892f","name":"Update company","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"companies\",\n        \"id\": \"<insert your company uuid>\",\n        \"attributes\": {\n            \"name\": \"Acme Corp\"\n        },\n        \"relationships\": {\n            \"manager\": {\n                \"data\": {\n                    \"type\": \"users\",\n                    \"id\": \"1\"\n                }\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/company"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"ZPXFT2VMtr8\",\n        \"type\": \"companies\",\n        \"links\": {\n            \"self\": \"https://api.teamtailor.localhost/v1/companies/ZPXFT2VMtr8\"\n        },\n        \"attributes\": {\n            \"locale\": \"en\",\n            \"website\": \"\",\n            \"name\": \"Acme Corp\"\n        },\n        \"relationships\": {\n            \"manager\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/companies/ZPXFT2VMtr8/relationships/manager\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/companies/ZPXFT2VMtr8/manager\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"d2568afd-166d-4441-b8b9-700382ede743"}],"id":"bd6a19b2-6008-48f5-8469-78db51b5563f","description":"<h1 id=\"companies\">Companies</h1>\n<aside>\n  Required scope: Admin\n</aside>\n\n\n<h3 id=\"attributes\">Attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Company name</td>\n</tr>\n<tr>\n<td>locale</td>\n<td>string</td>\n<td>Career site language. Possible values: ar, cs, da, de, en, es, et, fi, fil, fr, hu, it, ja, ko, lv, ms, nl, no, pl, pt, ro, ru, sv, th, tr, zh-CN</td>\n</tr>\n<tr>\n<td>website</td>\n<td>string</td>\n<td>Company website URL</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"relations\">Relations</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Relation</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>manager</td>\n<td>The Admin user who is assigned <code>manager</code> for this company. Used as default sender of some emails, and as fallback where a user is always needed.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"2a17cfe2-ef4b-43e8-af6a-759b892a7e05","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"6ae07ad8-d246-4b31-81a1-873f96fbae3d","type":"text/javascript","exec":[""]}}],"_postman_id":"bd6a19b2-6008-48f5-8469-78db51b5563f","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}}},{"name":"Custom field value","item":[{"name":"List custom field values","id":"a5be5d7c-37a6-4654-9db3-17cfa42b70b6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/custom-field-values","description":"<h2 id=\"list-custom-field-values\">List Custom Field Values</h2>\n<p>Use this endpoint to retrieve lists of custom fields.</p>\n<h3 id=\"example-parameters\">Example parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>filter[field-type]</td>\n<td>Available values: <code>CustomField::Text</code>, <code>CustomField::Email</code>, <code>CustomField::Url</code>, <code>CustomField::Phone</code>, <code>CustomField::Date</code>, <code>CustomField::Checkbox</code>, <code>CustomField::Number</code>, <code>CustomField::Select</code>, <code>CustomField::MultiSelect</code></td>\n</tr>\n<tr>\n<td>filter[custom-field]</td>\n<td>Filter by a custom field ID</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","custom-field-values"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"fe4f8259-b576-49a2-8d77-af47d3ccd28b","name":"List custom field value","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/custom-field-values"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"1\",\n            \"type\": \"custom-field-values\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/custom-field-values/1\"\n            },\n            \"attributes\": {\n                \"field-type\": \"CustomField::MultiSelect\",\n                \"value\": [\n                    \"1\"\n                ]\n            },\n            \"relationships\": {\n                \"custom-field\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/custom-field-values/1/relationships/custom-field\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/custom-field-values/1/custom-field\"\n                    }\n                },\n                \"owner\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/custom-field-values/1/relationships/owner\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/custom-field-values/1/owner\"\n                    }\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"record-count\": 1,\n        \"page-count\": 1\n    },\n    \"links\": {\n        \"first\": \"https://api.teamtailor.localhost/v1/custom-field-values?page%5Bnumber%5D=1&page%5Bsize%5D=10\",\n        \"last\": \"https://api.teamtailor.localhost/v1/custom-field-values?page%5Bnumber%5D=1&page%5Bsize%5D=10\"\n    }\n}"}],"_postman_id":"a5be5d7c-37a6-4654-9db3-17cfa42b70b6"},{"name":"Show custom field value","id":"f919359e-b2c3-4b3c-8bca-c0bc04aac4c9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/custom-field-values/1","description":"<h2 id=\"show-custom-field-value\">Show custom field value</h2>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","custom-field-values","1"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"0bbc0237-91fa-4581-a495-cb13440c7c04","name":"Show custom field value","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/custom-field-values/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"1\",\n        \"type\": \"custom-field-values\",\n        \"links\": {\n            \"self\": \"https://api.teamtailor.localhost/v1/custom-field-values/1\"\n        },\n        \"attributes\": {\n            \"field-type\": \"CustomField::MultiSelect\",\n            \"value\": [\n                \"1\"\n            ]\n        },\n        \"relationships\": {\n            \"custom-field\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/custom-field-values/1/relationships/custom-field\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/custom-field-values/1/custom-field\"\n                }\n            },\n            \"owner\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/custom-field-values/1/relationships/owner\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/custom-field-values/1/owner\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"f919359e-b2c3-4b3c-8bca-c0bc04aac4c9"},{"name":"Create custom field value","id":"47d61c96-c6f2-4cb8-9df5-4c120177027c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"custom-field-values\",\n        \"attributes\": {\n            \"value\": \"2019-08-28T18:56:53+02:00\"\n        },\n        \"relationships\": {\n            \"custom-field\": {\n                \"data\": {\n                    \"id\": 1,\n                    \"type\": \"custom-fields\"\n                }\n            },\n            \"owner\": {\n                \"data\": {\n                    \"id\": 1,\n                    \"type\": \"candidates\"\n                }\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/custom-field-values","description":"<h2 id=\"create-custom-field-value\">Create Custom Field Value</h2>\n<p>Create a new custom field value.</p>\n<aside>\n  <code>value</code> and <code>relationships</code> are required to be able to save a new custom field value.\n</aside>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","custom-field-values"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"469cc43d-47e5-439e-a8f5-5554cef2e578","name":"Create custom field value","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"custom-field-values\",\n        \"attributes\": {\n            \"value\": \"2019-08-28T18:56:53+02:00\"\n        },\n        \"relationships\": {\n            \"custom-field\": {\n                \"data\": {\n                    \"id\": 1,\n                    \"type\": \"custom-fields\"\n                }\n            },\n            \"owner\": {\n                \"data\": {\n                    \"id\": 1,\n                    \"type\": \"candidates\"\n                }\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/custom-field-values"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"2\",\n        \"type\": \"custom-field-values\",\n        \"links\": {\n            \"self\": \"https://api.teamtailor.localhost/v1/custom-field-values/2\"\n        },\n        \"attributes\": {\n            \"field-type\": \"CustomField::Email\",\n            \"value\": \"2019-08-28T18:56:53+02:00\"\n        },\n        \"relationships\": {\n            \"custom-field\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/custom-field-values/2/relationships/custom-field\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/custom-field-values/2/custom-field\"\n                }\n            },\n            \"owner\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/custom-field-values/2/relationships/owner\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/custom-field-values/2/owner\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"47d61c96-c6f2-4cb8-9df5-4c120177027c"},{"name":"Update custom field value","id":"ba9a9864-6104-4a96-a66e-f5e060c2b5a4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"},{"key":"Content-Type","type":"text","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"id\": 1,\n        \"type\": \"custom-field-values\",\n        \"attributes\": {\n            \"value\": \"user1@teamtailor.localhost\"\n        },\n        \"relationships\": {\n            \"custom-field\": {\n                \"data\": {\n                    \"id\": 1,\n                    \"type\": \"custom-fields\"\n                }\n            },\n            \"owner\": {\n                \"data\": {\n                    \"id\": 1,\n                    \"type\": \"candidates\"\n                }\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/custom-field-values/1","description":"<h2 id=\"update-custom-field-value\">Update custom field value</h2>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","custom-field-values","1"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"96bb5b58-7be3-4f65-908f-da9247fa3e35","name":"Update custom field value","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"},{"key":"Content-Type","type":"text","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"id\": 1,\n        \"type\": \"custom-field-values\",\n        \"attributes\": {\n            \"value\": \"user1@teamtailor.localhost\"\n        },\n        \"relationships\": {\n            \"custom-field\": {\n                \"data\": {\n                    \"id\": 1,\n                    \"type\": \"custom-fields\"\n                }\n            },\n            \"owner\": {\n                \"data\": {\n                    \"id\": 1,\n                    \"type\": \"candidates\"\n                }\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/custom-field-values/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"2\",\n        \"type\": \"custom-field-values\",\n        \"links\": {\n            \"self\": \"https://api.teamtailor.localhost/v1/custom-field-values/2\"\n        },\n        \"attributes\": {\n            \"field-type\": \"CustomField::Email\",\n            \"value\": \"user1@teamtailor.localhost\"\n        },\n        \"relationships\": {\n            \"custom-field\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/custom-field-values/2/relationships/custom-field\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/custom-field-values/2/custom-field\"\n                }\n            },\n            \"owner\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/custom-field-values/2/relationships/owner\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/custom-field-values/2/owner\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"ba9a9864-6104-4a96-a66e-f5e060c2b5a4"}],"id":"45ff8997-b7df-4eb0-8c77-cb289c9b6051","description":"<h1 id=\"custom-field-value\">Custom field value</h1>\n<p>A custom field value represents the relationship between custom field and an owner (a candidate or a job).</p>\n<p>There are a number of custom field types as specified by the <code>field-type</code> attribute.</p>\n<ul>\n<li><p><strong>CustomField::Text</strong>   any kind of text</p>\n</li>\n<li><p><strong>CustomField::Email</strong>  valid email address e.g <code>example@example.com</code></p>\n</li>\n<li><p><strong>CustomField::Url</strong>  valid url e.g <code>https://google.com</code></p>\n</li>\n<li><p><strong>CustomField::Phone</strong> A phone number, can include any values, eg <code>+46 723 3223 123</code></p>\n</li>\n<li><p><strong>CustomField::Date</strong> Date in  ISO 8601 format e.g <code>2019-08-28</code></p>\n</li>\n<li><p><strong>CustomField::Checkbox</strong> <code>true</code> or <code>false</code></p>\n</li>\n<li><p><strong>CustomField::Number</strong> any number</p>\n</li>\n<li><p><strong>CustomField::Select</strong> id for selected <strong>CustomFieldOption</strong></p>\n</li>\n<li><p><strong>CustomField::MultiSelect</strong> array of ids for selected <strong>CustomFieldOption</strong></p>\n</li>\n</ul>\n<h3 id=\"attributes\">Attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>value</td>\n<td>string</td>\n<td>Mandatory. Depending on the type, format may change. Check the available types above</td>\n</tr>\n<tr>\n<td>field-type</td>\n<td>string</td>\n<td>Read only. Tells of which type the custom-field-value is.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"relations\">Relations</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Relation</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>custom_field</td>\n<td>Mandatory. The custom field related to this resource.</td>\n</tr>\n<tr>\n<td>owner</td>\n<td>Mandatory. Owner of the polymorphic relation. The two available owner types are \"candidate\" and \"job\".</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"45ff8997-b7df-4eb0-8c77-cb289c9b6051","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}}},{"name":"Custom fields","item":[{"name":"List custom fields","id":"5ff94bbe-7e64-4952-8aa1-b051732cdf0b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/custom-fields","description":"<h2 id=\"list-custom-fields\">List Custom Fields</h2>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","custom-fields"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"552d59d2-2216-4052-9690-ed8703fc7646","name":"List custom fields","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/custom-fields"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"1\",\n            \"type\": \"custom-fields\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/custom-fields/1\"\n            },\n            \"attributes\": {\n                \"api-name\": \"email\",\n                \"name\": \"email\",\n                \"field-type\": \"CustomField::Email\",\n                \"created-at\": \"2020-11-04T10:16:06.960+01:00\",\n                \"updated-at\": \"2020-11-04T10:16:06.960+01:00\"\n            },\n            \"relationships\": {\n                \"custom-field-values\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/custom-fields/1/relationships/custom-field-values\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/custom-fields/1/custom-field-values\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"2\",\n            \"type\": \"custom-field-selects\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/custom-field-selects/2\"\n            },\n            \"attributes\": {\n                \"api-name\": \"test\",\n                \"name\": \"test\",\n                \"field-type\": \"CustomField::MultiSelect\",\n                \"created-at\": \"2020-12-08T15:15:17.476+01:00\",\n                \"updated-at\": \"2020-12-08T15:15:17.476+01:00\"\n            },\n            \"relationships\": {\n                \"custom-field-values\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/custom-field-selects/2/relationships/custom-field-values\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/custom-field-selects/2/custom-field-values\"\n                    }\n                },\n                \"custom-field-options\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/custom-field-selects/2/relationships/custom-field-options\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/custom-field-selects/2/custom-field-options\"\n                    }\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"record-count\": 2,\n        \"page-count\": 1\n    },\n    \"links\": {\n        \"first\": \"https://api.teamtailor.localhost/v1/custom-fields?page%5Bnumber%5D=1&page%5Bsize%5D=10\",\n        \"last\": \"https://api.teamtailor.localhost/v1/custom-fields?page%5Bnumber%5D=1&page%5Bsize%5D=10\"\n    }\n}"}],"_postman_id":"5ff94bbe-7e64-4952-8aa1-b051732cdf0b"},{"name":"Show custom field","id":"2adc8314-f8cb-4920-8136-206538c70094","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/custom-fields/1","description":"<h2 id=\"show-a-custom-field\">Show a Custom Field</h2>\n<p>Retreive a specific custom field.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>Custom field id.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","custom-fields","1"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"ab16256b-dea2-47f3-994d-bb2de8cdf9c9","name":"Show custom field","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/custom-fields/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"1\",\n        \"type\": \"custom-fields\",\n        \"links\": {\n            \"self\": \"https://api.teamtailor.localhost/v1/custom-fields/1\"\n        },\n        \"attributes\": {\n            \"api-name\": \"email\",\n            \"name\": \"email\",\n            \"field-type\": \"CustomField::Email\",\n            \"created-at\": \"2020-11-04T10:16:06.960+01:00\",\n            \"updated-at\": \"2020-11-04T10:16:06.960+01:00\"\n        },\n        \"relationships\": {\n            \"custom-field-values\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/custom-fields/1/relationships/custom-field-values\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/custom-fields/1/custom-field-values\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"2adc8314-f8cb-4920-8136-206538c70094"},{"name":"Update custom field","id":"09b28c27-a9c9-4fb7-b68e-ef023e2f41bf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"id\": 1,\n        \"type\": \"custom-fields\",\n        \"attributes\": {\n            \"name\": \"Updated name\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/custom-fields/1","description":"<h2 id=\"update-custom-field\">Update Custom Field</h2>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","custom-fields","1"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"e420467e-bec4-4b78-befd-43b68810dceb","name":"Update custom field","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"id\": 1,\n        \"type\": \"custom-fields\",\n        \"attributes\": {\n            \"name\": \"Updated name\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/custom-fields/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"1\",\n        \"type\": \"custom-fields\",\n        \"links\": {\n            \"self\": \"https://api.teamtailor.localhost/v1/custom-fields/1\"\n        },\n        \"attributes\": {\n            \"api-name\": \"email\",\n            \"name\": \"Updated name\",\n            \"field-type\": \"CustomField::Email\",\n            \"created-at\": \"2020-11-04T10:16:06.960+01:00\",\n            \"updated-at\": \"2020-12-15T13:55:41.273+01:00\"\n        },\n        \"relationships\": {\n            \"custom-field-values\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/custom-fields/1/relationships/custom-field-values\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/custom-fields/1/custom-field-values\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"09b28c27-a9c9-4fb7-b68e-ef023e2f41bf"},{"name":"Create custom field","id":"82ce28e0-d731-4191-91a5-d7a03c643f40","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"custom-fields\",\n        \"attributes\": {\n            \"name\": \"Home phone\",\n            \"field-type\": \"CustomField::Phone\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/custom-fields","description":"<h2 id=\"create-custom-field\">Create Custom Field</h2>\n<p>Create a new custom field.</p>\n<aside>\n  <code>name</code> and <code>field-type</code> are required to be able to save a new custom field.\n</aside>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","custom-fields"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"3b775787-ac1d-4a50-9770-61680d5f9817","name":"Create custom field","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"custom-fields\",\n        \"attributes\": {\n            \"name\": \"Home phone\",\n            \"field-type\": \"CustomField::Phone\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/custom-fields"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"3\",\n        \"type\": \"custom-fields\",\n        \"links\": {\n            \"self\": \"https://api.teamtailor.localhost/v1/custom-fields/3\"\n        },\n        \"attributes\": {\n            \"api-name\": \"home-phone\",\n            \"name\": \"Home phone\",\n            \"field-type\": \"CustomField::Phone\",\n            \"created-at\": \"2020-12-15T13:53:27.829+01:00\",\n            \"updated-at\": \"2020-12-15T13:53:27.829+01:00\"\n        },\n        \"relationships\": {\n            \"custom-field-values\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/custom-fields/3/relationships/custom-field-values\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/custom-fields/3/custom-field-values\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"82ce28e0-d731-4191-91a5-d7a03c643f40"}],"id":"792a172e-beac-452d-8440-c06ccc19667d","description":"<h1 id=\"custom-fields\">Custom fields</h1>\n<p>There are a number of custom field types as specified by the <code>field-type</code> attribute.</p>\n<ul>\n<li><p><strong>CustomField::Text</strong>   any kind of text</p>\n</li>\n<li><p><strong>CustomField::Email</strong>  valid email address e.g <code>example@example.com</code></p>\n</li>\n<li><p><strong>CustomField::Url</strong>  valid url e.g <code>https://google.com</code></p>\n</li>\n<li><p><strong>CustomField::Phone</strong> A phone number, can include any values, eg <code>+46 723 3223 123</code></p>\n</li>\n<li><p><strong>CustomField::Date</strong> Date in  ISO 8601 format e.g <code>2019-08-28</code></p>\n</li>\n<li><p><strong>CustomField::Checkbox</strong> <code>true</code> or <code>false</code></p>\n</li>\n<li><p><strong>CustomField::Number</strong> any number</p>\n</li>\n</ul>\n<h3 id=\"attributes\">Attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Mandatory. Name of the custom field.</td>\n</tr>\n<tr>\n<td>api-name</td>\n<td>string</td>\n<td>A lowercase, sanitized version of the name. Useful to use in combination with the <a href=\"https://partner.teamtailor.com\">Webhook Partner API</a>. Optional, but will be set to the sanitized version of the name.</td>\n</tr>\n<tr>\n<td>field-type</td>\n<td>string</td>\n<td>Mandatory. To see available types see description above.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"792a172e-beac-452d-8440-c06ccc19667d","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}}},{"name":"Custom field selects","item":[{"name":"Create custom field selects","id":"09f8a760-bbe8-444f-a2c4-b2a3cb969c56","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"custom-field-selects\",\n        \"attributes\": {\n            \"name\": \"Spoken languages\",\n            \"field-type\": \"CustomField::MultiSelect\",\n            \"select-options\": [\n                \"English\",\n                \"French\",\n                \"German\"\n            ]\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/custom-field-selects","description":"<h2 id=\"create-custom-field-selects\">Create Custom Field Selects</h2>\n<p>Create a new custom field select.</p>\n<h3 id=\"attributes\">Attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Mandatory. Name of the custom field.</td>\n</tr>\n<tr>\n<td>api-name</td>\n<td>string</td>\n<td>A lowercase, sanitized version of the name. Useful to use in combination with the <a href=\"https://partner.teamtailor.com\">Webhook Partner API</a>. Optional, but will be set to the sanitized version of the name.</td>\n</tr>\n<tr>\n<td>field-type</td>\n<td>string</td>\n<td>Mandatory. To see available types see description above.</td>\n</tr>\n<tr>\n<td>select-options</td>\n<td>array</td>\n<td>Contains a list of values (string) to set as options.</td>\n</tr>\n</tbody>\n</table>\n</div><aside>\n  <code>name</code> and <code>field-type</code> are required to be able to save a new custom field select.\n</aside>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","custom-field-selects"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"75acf13f-1f1a-4aa9-86d6-3dbc29774d86","name":"Create custom field selects","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"custom-field-selects\",\n        \"attributes\": {\n            \"name\": \"Spoken languages\",\n            \"field-type\": \"CustomField::MultiSelect\",\n            \"select-options\": [\n                \"English\",\n                \"French\",\n                \"German\"\n            ]\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/custom-field-selects"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"4\",\n        \"type\": \"custom-field-selects\",\n        \"links\": {\n            \"self\": \"https://api.teamtailor.localhost/v1/custom-field-selects/4\"\n        },\n        \"attributes\": {\n            \"api-name\": \"spoken-languages\",\n            \"name\": \"Spoken languages\",\n            \"field-type\": \"CustomField::MultiSelect\",\n            \"created-at\": \"2020-12-15T14:08:28.799+01:00\",\n            \"updated-at\": \"2020-12-15T14:08:28.799+01:00\"\n        },\n        \"relationships\": {\n            \"custom-field-values\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/custom-field-selects/4/relationships/custom-field-values\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/custom-field-selects/4/custom-field-values\"\n                }\n            },\n            \"custom-field-options\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/custom-field-selects/4/relationships/custom-field-options\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/custom-field-selects/4/custom-field-options\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"09f8a760-bbe8-444f-a2c4-b2a3cb969c56"},{"name":"Update custom field selects","id":"0aaa9dcb-5b6c-4da8-a910-218a8f4b4d56","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"id\": 1,\n        \"type\": \"custom-field-selects\",\n        \"attributes\": {\n            \"name\": \"Updated name 2\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/custom-field-selects/1","description":"<h2 id=\"update-custom-field-selects\">Update Custom Field Selects</h2>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","custom-field-selects","1"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"d05eea29-7b16-4699-9ef8-9e16614fe731","name":"Update custom field selects","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"id\": 1,\n        \"type\": \"custom-field-selects\",\n        \"attributes\": {\n            \"name\": \"Updated name 2\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/custom-field-selects/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"4\",\n        \"type\": \"custom-field-selects\",\n        \"links\": {\n            \"self\": \"https://api.teamtailor.localhost/v1/custom-field-selects/4\"\n        },\n        \"attributes\": {\n            \"api-name\": \"spoken-languages\",\n            \"name\": \"Updated name 2\",\n            \"field-type\": \"CustomField::MultiSelect\",\n            \"created-at\": \"2020-12-15T14:08:28.799+01:00\",\n            \"updated-at\": \"2020-12-15T14:58:11.509+01:00\"\n        },\n        \"relationships\": {\n            \"custom-field-values\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/custom-field-selects/4/relationships/custom-field-values\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/custom-field-selects/4/custom-field-values\"\n                }\n            },\n            \"custom-field-options\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/custom-field-selects/4/relationships/custom-field-options\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/custom-field-selects/4/custom-field-options\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"0aaa9dcb-5b6c-4da8-a910-218a8f4b4d56"}],"id":"43e143ea-2512-4945-9896-f0e12d016d4e","description":"<h1 id=\"custom-field-selects\">Custom field selects</h1>\n<p>Custom field selects can be eiter <strong>CustomField::Select</strong> or <strong>CustomField::MultiSelect</strong>.\nThey work similar to <strong>CustomField</strong> except that they have a relationship to <strong>CustomFieldOptions</strong>.</p>\n<h3 id=\"attributes\">Attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Mandatory. Name of the custom field.</td>\n</tr>\n<tr>\n<td>api-name</td>\n<td>string</td>\n<td>A lowercase, sanitized version of the name. Useful to use in combination with the <a href=\"https://partner.teamtailor.com\">Webhook Partner API</a>. Optional, but will be set to the sanitized version of the name.</td>\n</tr>\n<tr>\n<td>field-type</td>\n<td>string</td>\n<td>Mandatory. To see available types see description above.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"43e143ea-2512-4945-9896-f0e12d016d4e","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}}},{"name":"Custom field options","item":[{"name":"List custom field options","id":"fd40c8f7-670b-46f9-9fce-a9ba0b424212","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.teamtailor.com/v1/custom-field-options","description":"<h2 id=\"list-custom-field-options\">List Custom Field Options</h2>\n<p>Use this endpoint to retrieve lists of custom field options for a select or multi select custom field.</p>\n<h3 id=\"example-parameters\">Example parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>filter[custom-field]</td>\n<td>Filter by a custom field ID</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","custom-field-options"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"fd40c8f7-670b-46f9-9fce-a9ba0b424212"},{"name":"Create custom field option","id":"1a7f8c33-f1f7-4ed3-80c5-366b424b7ac7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"},{"key":"Content-Type","type":"text","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"custom-field-options\",\n        \"attributes\": {\n            \"value\": \"Option value\"\n        },\n        \"relationships\": {\n            \"custom-field\": {\n                \"data\": {\n                    \"id\": 1,\n                    \"type\": \"custom-fields\"\n                }\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/custom-field-options","description":"<h2 id=\"create-custom-field-option\">Create Custom Field Option</h2>\n<p>Create a new custom field option.</p>\n<p><code>value</code> and <code>relationships</code> are required to be able to save a new custom field option.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","custom-field-options"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"7fa82646-2330-4a2f-b6ad-2b3f57e29295","name":"Create custom field option","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"},{"key":"Content-Type","type":"text","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"custom-field-options\",\n        \"attributes\": {\n            \"value\": \"Option value\"\n        },\n        \"relationships\": {\n            \"custom-field\": {\n                \"data\": {\n                    \"id\": 1,\n                    \"type\": \"custom-fields\"\n                }\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/custom-field-options"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"6\",\n        \"type\": \"custom-field-options\",\n        \"links\": {\n            \"self\": \"https://api.teamtailor.localhost/v1/custom-field-options/6\"\n        },\n        \"attributes\": {\n            \"value\": \"Option value\"\n        },\n        \"relationships\": {\n            \"custom-field\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/custom-field-options/6/relationships/custom-field\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/custom-field-options/6/custom-field\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"1a7f8c33-f1f7-4ed3-80c5-366b424b7ac7"},{"name":"Update custom field option","id":"5af0a5eb-0428-49e7-bad8-20dd0d3431f2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"},{"key":"Content-Type","type":"text","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\n  \"data\": {\n    \"id\": 1,\n    \"type\": \"custom-field-options\",\n    \"attributes\": {\n      \"value\": \"Updated value\"\n    }\n  }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/custom-field-options/1","description":"<h2 id=\"update-custom-field-option\">Update Custom Field Option</h2>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","custom-field-options","1"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"752a4460-8723-47ca-89eb-c87d6f8990ce","name":"Update custom field option","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"},{"key":"Content-Type","type":"text","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\n  \"data\": {\n    \"id\": 1,\n    \"type\": \"custom-field-options\",\n    \"attributes\": {\n      \"value\": \"Updated value\"\n    }\n  }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/custom-field-options/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"6\",\n        \"type\": \"custom-field-options\",\n        \"links\": {\n            \"self\": \"https://api.teamtailor.localhost/v1/custom-field-options/6\"\n        },\n        \"attributes\": {\n            \"value\": \"Updated value\"\n        },\n        \"relationships\": {\n            \"custom-field\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/custom-field-options/6/relationships/custom-field\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/custom-field-options/6/custom-field\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"5af0a5eb-0428-49e7-bad8-20dd0d3431f2"}],"id":"6be97503-ef7b-49fa-9d3c-1dff04dd06fc","description":"<h1 id=\"custom-field-options\">Custom field options</h1>\n<p>Options are used in combination with <strong>CustomField::Select</strong> and <strong>CustomField::MultiSelect</strong>.\nThe options are the possible values for them.</p>\n<h3 id=\"attributes\">Attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>value</td>\n<td>string</td>\n<td>Mandatory. Value of the option.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"cfdc86e9-0fdd-44ad-9ea9-103ba2353d61","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"3b50cd06-79bc-42c8-ac13-87d44fbef174","type":"text/javascript","exec":[""]}}],"_postman_id":"6be97503-ef7b-49fa-9d3c-1dff04dd06fc","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}}},{"name":"Divisions","item":[{"name":"List divisions","id":"3237eb5d-3634-4527-8fa6-1bdfdda6d204","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"}],"url":"https://api.teamtailor.com/v1/divisions","description":"<h2 id=\"list-divisions\">List divisions</h2>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","divisions"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"953d3727-0327-431b-9661-b8ba75e127ca","name":"List divisions","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"}],"url":"https://api.teamtailor.com/v1/divisions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"1\",\n            \"type\": \"divisions\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/divisions/1\"\n            },\n            \"attributes\": {\n                \"name\": \"Brand One\"\n            },\n            \"relationships\": {\n                \"manager\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/divisions/1/relationships/manager\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/divisions/1/manager\"\n                    }\n                },\n                \"departments\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/divisions/1/relationships/departments\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/divisions/1/departments\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"2\",\n            \"type\": \"divisions\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/divisions/2\"\n            },\n            \"attributes\": {\n                \"name\": \"Brand Two\"\n            },\n            \"relationships\": {\n                \"manager\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/divisions/2/relationships/manager\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/divisions/2/manager\"\n                    }\n                },\n                \"departments\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/divisions/2/relationships/departments\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/divisions/2/departments\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"3\",\n            \"type\": \"divisions\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/divisions/3\"\n            },\n            \"attributes\": {\n                \"name\": \"Brand Three\"\n            },\n            \"relationships\": {\n                \"manager\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/divisions/3/relationships/manager\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/divisions/3/manager\"\n                    }\n                },\n                \"departments\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/divisions/3/relationships/departments\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/divisions/3/departments\"\n                    }\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"texts\": {\n            \"name-singular\": \"division\",\n            \"name-plural\": \"divisions\",\n            \"all\": \"All divisions\"\n        },\n        \"record-count\": 3,\n        \"page-count\": 1\n    }\n}"}],"_postman_id":"3237eb5d-3634-4527-8fa6-1bdfdda6d204"},{"name":"Show division","id":"afbb099d-4433-4db4-980a-a454bedb309f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"}],"url":"https://api.teamtailor.com/v1/divisions/1","description":"<h2 id=\"show-a-division\">Show a Division</h2>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","divisions","1"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"50f69640-eb3b-433e-9a31-0e65b63a50db","name":"Show division","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"}],"url":"https://api.teamtailor.com/v1/divisions/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"1\",\n        \"type\": \"divisions\",\n        \"links\": {\n            \"self\": \"https://api.teamtailor.localhost/v1/divisions/1\"\n        },\n        \"attributes\": {\n            \"name\": \"Brand One\"\n        },\n        \"relationships\": {\n            \"manager\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/divisions/1/relationships/manager\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/divisions/1/manager\"\n                }\n            },\n            \"departments\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/divisions/1/relationships/departments\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/divisions/1/departments\"\n                }\n            }\n        }\n    },\n    \"meta\": {\n        \"texts\": {\n            \"name-singular\": \"division\",\n            \"name-plural\": \"divisions\",\n            \"all\": \"All divisions\"\n        }\n    }\n}"}],"_postman_id":"afbb099d-4433-4db4-980a-a454bedb309f"}],"id":"5c46f829-f1cb-446c-ae59-bdfcb40f1672","description":"<h1 id=\"divisions\">Divisions</h1>\n<h3 id=\"attributes\">Attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>The division's name</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"relations\">Relations</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Relation</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>manager</td>\n<td>The division's manager</td>\n</tr>\n<tr>\n<td>departments</td>\n<td>The division's departments</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"685098fd-48eb-426e-8b25-bf6f2b70ff0b","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"0e91470e-b535-47a6-bf38-b1a676ba5093","type":"text/javascript","exec":[""]}}],"_postman_id":"5c46f829-f1cb-446c-ae59-bdfcb40f1672","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}}},{"name":"Departments","item":[{"name":"List departments","id":"ad4427e0-43ba-4f14-9e98-f4266290be61","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/departments","description":"<h2 id=\"list-departments\">List departments</h2>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","departments"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"e83a941e-06af-455e-8c4d-bc1ad4a197d3","name":"List departments","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"}],"url":"https://api.teamtailor.com/v1/departments"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"1\",\n            \"type\": \"departments\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/departments/1\"\n            },\n            \"attributes\": {\n                \"name\": \"Product Development\"\n            },\n            \"relationships\": {\n                \"manager\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/departments/1/relationships/manager\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/departments/1/manager\"\n                    }\n                },\n                \"division\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/departments/1/relationships/division\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/departments/1/division\"\n                    }\n                },\n                \"roles\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/departments/1/relationships/roles\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/departments/1/roles\"\n                    }\n                },\n                \"teams\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/departments/1/relationships/teams\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/departments/1/teams\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"2\",\n            \"type\": \"departments\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/departments/2\"\n            },\n            \"attributes\": {\n                \"name\": \"Sales\"\n            },\n            \"relationships\": {\n                \"manager\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/departments/2/relationships/manager\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/departments/2/manager\"\n                    }\n                },\n                \"division\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/departments/2/relationships/division\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/departments/2/division\"\n                    }\n                },\n                \"roles\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/departments/2/relationships/roles\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/departments/2/roles\"\n                    }\n                },\n                \"teams\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/departments/2/relationships/teams\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/departments/2/teams\"\n                    }\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"texts\": {\n            \"name-singular\": \"department\",\n            \"name-plural\": \"departments\",\n            \"all\": \"All departments\"\n        },\n        \"record-count\": 2,\n        \"page-count\": 1\n    },\n    \"links\": {\n        \"first\": \"https://api.teamtailor.localhost/v1/departments?page%5Bnumber%5D=1&page%5Bsize%5D=10\",\n        \"last\": \"https://api.teamtailor.localhost/v1/departments?page%5Bnumber%5D=1&page%5Bsize%5D=10\"\n    }\n}"}],"_postman_id":"ad4427e0-43ba-4f14-9e98-f4266290be61"},{"name":"Show department","id":"2d69760e-6b57-4fee-83f0-e6811a8293cc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/departments/1","description":"<h2 id=\"show-a-department\">Show a Department</h2>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","departments","1"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"fe0543eb-12c7-469a-9590-d749fab7bb9c","name":"Show department","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"}],"url":"https://api.teamtailor.com/v1/departments/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"1\",\n        \"type\": \"departments\",\n        \"links\": {\n            \"self\": \"https://api.teamtailor.localhost/v1/departments/1\"\n        },\n        \"attributes\": {\n            \"name\": \"Product Development\"\n        },\n        \"relationships\": {\n            \"manager\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/departments/1/relationships/manager\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/departments/1/manager\"\n                }\n            },\n            \"division\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/departments/1/relationships/division\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/departments/1/division\"\n                }\n            },\n            \"roles\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/departments/1/relationships/roles\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/departments/1/roles\"\n                }\n            },\n            \"teams\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/departments/1/relationships/teams\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/departments/1/teams\"\n                }\n            }\n        }\n    },\n    \"meta\": {\n        \"texts\": {\n            \"name-singular\": \"department\",\n            \"name-plural\": \"departments\",\n            \"all\": \"All departments\"\n        }\n    }\n}"}],"_postman_id":"2d69760e-6b57-4fee-83f0-e6811a8293cc"},{"name":"Update department","id":"444bff67-7a6f-4d3a-8d5e-a52aeed6e7b9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"id\": \"1\",\n        \"type\": \"departments\",\n        \"attributes\": {\n            \"name\": \"Magic\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/departments/1","description":"<h2 id=\"update-department\">Update department</h2>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","departments","1"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"4957657e-c627-4992-8c83-00433e8f909c","name":"Update department","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"id\": \"1\",\n        \"type\": \"departments\",\n        \"attributes\": {\n            \"name\": \"Magic\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/departments/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"1\",\n        \"type\": \"departments\",\n        \"links\": {\n            \"self\": \"https://api.teamtailor.localhost/v1/departments/1\"\n        },\n        \"attributes\": {\n            \"name\": \"Magic\"\n        },\n        \"relationships\": {\n            \"manager\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/departments/1/relationships/manager\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/departments/1/manager\"\n                }\n            },\n            \"division\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/departments/1/relationships/division\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/departments/1/division\"\n                }\n            },\n            \"roles\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/departments/1/relationships/roles\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/departments/1/roles\"\n                }\n            },\n            \"teams\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/departments/1/relationships/teams\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/departments/1/teams\"\n                }\n            }\n        }\n    },\n    \"meta\": {\n        \"texts\": {\n            \"name-singular\": \"department\",\n            \"name-plural\": \"departments\",\n            \"all\": \"All departments\"\n        }\n    }\n}"}],"_postman_id":"444bff67-7a6f-4d3a-8d5e-a52aeed6e7b9"},{"name":"Delete department","id":"71da42de-3656-4dbf-b685-4a3b15f7b243","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/departments/1","description":"<h2 id=\"delete-department\">Delete department</h2>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","departments","1"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"0d9bab30-316f-40f0-98e8-9e160bd3c4e0","name":"Delete department","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/departments/1"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":null,"cookie":[],"responseTime":null,"body":""}],"_postman_id":"71da42de-3656-4dbf-b685-4a3b15f7b243"},{"name":"Create department","id":"6b628f2e-9cf7-47b5-8f9f-4aad6f4338e9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"departments\",\n        \"attributes\": {\n            \"name\": \"Product\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/departments","description":"<h2 id=\"create-department\">Create department</h2>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","departments"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"1a1299cc-44f4-4b42-991d-42cf79903ad0","name":"Create department","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"departments\",\n        \"attributes\": {\n            \"name\": \"Product\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/departments"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"3\",\n        \"type\": \"departments\",\n        \"links\": {\n            \"self\": \"https://api.teamtailor.localhost/v1/departments/3\"\n        },\n        \"attributes\": {\n            \"name\": \"Product\"\n        },\n        \"relationships\": {\n            \"manager\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/departments/3/relationships/manager\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/departments/3/manager\"\n                }\n            },\n            \"division\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/departments/3/relationships/division\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/departments/3/division\"\n                }\n            },\n            \"roles\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/departments/3/relationships/roles\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/departments/3/roles\"\n                }\n            },\n            \"teams\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/departments/3/relationships/teams\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/departments/3/teams\"\n                }\n            }\n        }\n    },\n    \"meta\": {\n        \"texts\": {\n            \"name-singular\": \"department\",\n            \"name-plural\": \"departments\",\n            \"all\": \"All departments\"\n        }\n    }\n}"}],"_postman_id":"6b628f2e-9cf7-47b5-8f9f-4aad6f4338e9"}],"id":"97830188-a759-44ad-89d4-6d9ee64bad8a","description":"<h1 id=\"departments\">Departments</h1>\n<h3 id=\"attributes\">Attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>The department's name</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"relations\">Relations</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Relation</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>manager</td>\n<td>The department's manager</td>\n</tr>\n<tr>\n<td>division</td>\n<td>The division the department belongs to</td>\n</tr>\n<tr>\n<td>roles</td>\n<td>The department's roles</td>\n</tr>\n<tr>\n<td>teams</td>\n<td>The teams this department is part of</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"685098fd-48eb-426e-8b25-bf6f2b70ff0b","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"0e91470e-b535-47a6-bf38-b1a676ba5093","type":"text/javascript","exec":[""]}}],"_postman_id":"97830188-a759-44ad-89d4-6d9ee64bad8a","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}}},{"name":"Forms","item":[{"name":"Get forms","id":"780f2de4-5675-4a3a-8626-7e7ec92dca83","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Api-Version","value":"20240404","type":"text"}],"url":"https://api.teamtailor.com/v1/forms","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>filter (array)</td>\n<td>Supported filters: <code>type</code> and <code>candidates</code>. For example: <code>filter[type]=Survey</code></td>\n</tr>\n<tr>\n<td>include</td>\n<td>Comma separated list of relationships to include in the repsonse. For example <code>include=form-questions.form-answers</code> to list form-questions with their answers.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","forms"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"b6dd6df4-e143-4e4b-b403-7cd4d1fa71cd","name":"List forms","originalRequest":{"method":"GET","header":[{"key":"X-Api-Version","value":"20240404","type":"text"}],"url":"https://api.teamtailor.com/v1/forms"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 01 Apr 2025 11:43:24 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Content-Length","value":"9282"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.27.4"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Rate-Limit-Limit","value":"50"},{"key":"X-Rate-Limit-Remaining","value":"49"},{"key":"X-Rate-Limit-Reset","value":"6"},{"key":"X-Api-Version","value":"20240404"},{"key":"Vary","value":"Accept, Origin"},{"key":"X-Api-Cache","value":"miss"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, PUT, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Origin, Content-Type, Accept, Authorization, Token"},{"key":"Access-Control-Max-Age","value":"1728000"},{"key":"ETag","value":"W/\"b9acf8018aeafa48c9e3c130dac3d06b\""},{"key":"Cache-Control","value":"must-revalidate, private, max-age=0"},{"key":"Content-Security-Policy","value":""},{"key":"X-Request-Id","value":"7ae1070f-486e-4a8b-a763-124f813b0621"},{"key":"X-Runtime","value":"0.039720"},{"key":"X-Rack-Cache","value":"miss"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"1\",\n            \"type\": \"forms\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.com/v1/forms/1\"\n            },\n            \"attributes\": {\n                \"name\": \"Equal Opportunities (UK)\",\n                \"intro-text\": \"The aim of this survey is to ensure that no job applicant or employee receives less favourable treatment because of age, disability, gender reassignment, marriage and civil partnership, pregnancy or maternity, race, religion or belief, sex or sexual orientation.\",\n                \"outro-text\": \"Thank you for taking the time to answer this survey.\",\n                \"outro-title\": \"Thanks!\",\n                \"type\": \"Survey\",\n                \"options\": {},\n                \"open\": null,\n                \"created-at\": \"2021-01-04T23:13:41.233+10:00\",\n                \"updated-at\": \"2024-05-17T18:23:30.368+10:00\"\n            },\n            \"relationships\": {\n                \"form-questions\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/forms/1/relationships/form-questions\",\n                        \"related\": \"https://api.teamtailor.com/v1/forms/1/form-questions\"\n                    }\n                },\n                \"form-answers\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/forms/1/relationships/form-answers\",\n                        \"related\": \"https://api.teamtailor.com/v1/forms/1/form-answers\"\n                    }\n                },\n                \"candidates\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/forms/1/relationships/candidates\",\n                        \"related\": \"https://api.teamtailor.com/v1/forms/1/candidates\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"408\",\n            \"type\": \"forms\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.com/v1/forms/408\"\n            },\n            \"attributes\": {\n                \"name\": \"Welcome to the Product department\",\n                \"intro-text\": \"Some questions to answer before your first day.\",\n                \"outro-text\": null,\n                \"outro-title\": null,\n                \"type\": \"OnboardingForm\",   \n                \"options\": {},\n                \"open\": null,\n                \"created-at\": \"2021-06-04T17:51:59.023+10:00\",\n                \"updated-at\": \"2021-06-04T17:51:59.023+10:00\"\n            },\n            \"relationships\": {\n                \"form-questions\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/forms/408/relationships/form-questions\",\n                        \"related\": \"https://api.teamtailor.com/v1/forms/408/form-questions\"\n                    }\n                },\n                \"form-answers\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/forms/408/relationships/form-answers\",\n                        \"related\": \"https://api.teamtailor.com/v1/forms/408/form-answers\"\n                    }\n                },\n                \"candidates\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/forms/408/relationships/candidates\",\n                        \"related\": \"https://api.teamtailor.com/v1/forms/408/candidates\"\n                    }\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"record-count\": 2,\n        \"page-count\": 1\n    },\n    \"links\": {\n        \"next\": \"https://api.teamtailor.com/v1/forms?page%5Bafter%5D=NTk0OQ&page%5Bsize%5D=10\"\n    }\n}"}],"_postman_id":"780f2de4-5675-4a3a-8626-7e7ec92dca83"},{"name":"Show form","id":"af9f0d16-8407-4348-995b-9e651a11b0e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Api-Version","value":"20240404","type":"text"}],"url":"https://api.teamtailor.com/v1/forms/1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","forms","1"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"a127bd62-0fc6-43db-aee0-e3fb068ed7e7","name":"Get form","originalRequest":{"method":"GET","header":[{"key":"X-Api-Version","value":"20240404","type":"text"}],"url":"https://api.teamtailor.com/v1/forms/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 01 Apr 2025 12:40:28 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Content-Length","value":"1481"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.27.4"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Rate-Limit-Limit","value":"50"},{"key":"X-Rate-Limit-Remaining","value":"49"},{"key":"X-Rate-Limit-Reset","value":"2"},{"key":"X-Api-Version","value":"20240404"},{"key":"Vary","value":"Accept, Origin"},{"key":"X-Api-Cache","value":"miss"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, PUT, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Origin, Content-Type, Accept, Authorization, Token"},{"key":"Access-Control-Max-Age","value":"1728000"},{"key":"ETag","value":"W/\"06767c55712f6a732cb98b2cf469681c\""},{"key":"Cache-Control","value":"must-revalidate, private, max-age=0"},{"key":"Content-Security-Policy","value":""},{"key":"X-Request-Id","value":"528f98eb-58b3-41d4-9846-e4899e68b83c"},{"key":"X-Runtime","value":"0.030467"},{"key":"X-Rack-Cache","value":"miss"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"43170\",\n        \"type\": \"forms\",\n        \"links\": {\n            \"self\": \"https://api.teamtailor.com/v1/forms/43170\"\n        },\n        \"attributes\": {\n            \"name\": \"Equal Opportunities (UK)\",\n            \"intro-text\": \"The aim of this survey is to ensure that no job applicant or employee receives less favourable treatment because of age, disability, gender reassignment, marriage and civil partnership, pregnancy or maternity, race, religion or belief, sex or sexual orientation.\",\n            \"outro-text\": \"Thank you for taking the time to complete this survey. It will help us get better.\",\n            \"outro-title\": \"Thank you!\",\n            \"type\": \"Survey\",\n            \"options\": {},\n            \"open\": null,\n            \"created-at\": \"2022-12-30T01:53:37.615+10:00\",\n            \"updated-at\": \"2024-05-17T18:25:33.380+10:00\"\n        },\n        \"relationships\": {\n            \"form-questions\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.com/v1/forms/43170/relationships/form-questions\",\n                    \"related\": \"https://api.teamtailor.com/v1/forms/43170/form-questions\"\n                }\n            },\n            \"form-answers\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.com/v1/forms/43170/relationships/form-answers\",\n                    \"related\": \"https://api.teamtailor.com/v1/forms/43170/form-answers\"\n                }\n            },\n            \"candidates\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.com/v1/forms/43170/relationships/candidates\",\n                    \"related\": \"https://api.teamtailor.com/v1/forms/43170/candidates\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"af9f0d16-8407-4348-995b-9e651a11b0e5"}],"id":"62df92b7-3b98-447e-aba2-88ea51857872","description":"<h6 id=\"read-only-resource\">Read only resource</h6>\n<p>Forms consists of a collection of form-questions and form-answers. There are many types of forms in Teamtailor, so they can hold different kinds of information. Be sure to filter forms by <code>type</code> if you are looking for a certain type of form.</p>\n<h3 id=\"anonymous-surveys\">Anonymous surveys</h3>\n<p>Anonymous surveys (having <code>open: false</code>) will return form-answers without candidate information, and form-questions with less than 10 answers will not return any form-answers.</p>\n<h4 id=\"attributes\">Attributes</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>The form title.</td>\n</tr>\n<tr>\n<td>form-type</td>\n<td>string (\"Survey\", \"OnboardingForm\", \"JobOfferForm\", \"JobOfferTemplate\", \"ReferenceTemplate\", \"ReferenceForm\")</td>\n<td>The type of form, supported values listed in the type column.</td>\n</tr>\n<tr>\n<td>intro-text</td>\n<td>string</td>\n<td>Text displayed before answering the form.</td>\n</tr>\n<tr>\n<td>outro-title</td>\n<td>string</td>\n<td>Headline displayed after answering the form.</td>\n</tr>\n<tr>\n<td>outro-text</td>\n<td>string</td>\n<td>Text displayed after answering the form.</td>\n</tr>\n<tr>\n<td>options</td>\n<td>object</td>\n<td>Custom options for email subject/body.</td>\n</tr>\n<tr>\n<td>open</td>\n<td>boolean</td>\n<td><code>true</code> or <code>false</code> if the form answers are anonymous or not.</td>\n</tr>\n<tr>\n<td>created-at</td>\n<td>date</td>\n<td></td>\n</tr>\n<tr>\n<td>updated-at</td>\n<td>date</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"relationships\">Relationships</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Relation</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>form-questions</td>\n<td>The questions for the form.</td>\n</tr>\n<tr>\n<td>form-answers</td>\n<td>The answers to the form-questions.</td>\n</tr>\n<tr>\n<td>candidates</td>\n<td>The candidates invited to answer the form.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"62df92b7-3b98-447e-aba2-88ea51857872","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}}},{"name":"Form questions","item":[{"name":"Get form questions","id":"b06b444a-6300-47d4-802c-2ac63749f05d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Api-Version","value":"20240404","type":"text"}],"url":"https://api.teamtailor.com/v1/form-questions","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>filter</td>\n<td>Supported filters: <code>form</code> and <code>candidates</code>.</td>\n</tr>\n<tr>\n<td>include</td>\n<td>Comma separated list of relationships to include in the response. To include answers and candidate data use <code>include=form-answers.candidate</code></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","form-questions"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"c4f1078f-bc33-4bdd-9c88-3ce5eadc0e5d","name":"Example","originalRequest":{"method":"GET","header":[{"key":"X-Api-Version","value":"20240404","type":"text"}],"url":{"raw":"https://api.teamtailor.com/v1/form-questions?filter[form]=67637","protocol":"https","host":["api.teamtailor.com"],"path":["v1","form-questions"],"query":[{"key":"filter[form]","value":"67637"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 01 Apr 2025 12:50:37 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Content-Length","value":"7365"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.27.4"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Rate-Limit-Limit","value":"50"},{"key":"X-Rate-Limit-Remaining","value":"49"},{"key":"X-Rate-Limit-Reset","value":"3"},{"key":"X-Api-Version","value":"20240404"},{"key":"Vary","value":"Accept, Origin"},{"key":"X-Api-Cache","value":"miss"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, PUT, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Origin, Content-Type, Accept, Authorization, Token"},{"key":"Access-Control-Max-Age","value":"1728000"},{"key":"ETag","value":"W/\"1e3faf2f8c9bf6375c069143b30aac56\""},{"key":"Cache-Control","value":"must-revalidate, private, max-age=0"},{"key":"Content-Security-Policy","value":""},{"key":"X-Request-Id","value":"844dd76d-2793-4764-8414-b65a1193160a"},{"key":"X-Runtime","value":"0.083020"},{"key":"X-Rack-Cache","value":"miss"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"573922\",\n            \"type\": \"form-questions\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.com/v1/form-questions/573922\"\n            },\n            \"attributes\": {\n                \"text\": \"What industry do you currently work in?\",\n                \"type\": \"text\",\n                \"schema\": {\n                    \"alternatives\": []\n                },\n                \"is-required\": false,\n                \"created-at\": \"2023-04-14T23:50:52.688+10:00\",\n                \"updated-at\": \"2023-04-20T23:01:13.085+10:00\"\n            },\n            \"relationships\": {\n                \"form\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/form-questions/573922/relationships/form\",\n                        \"related\": \"https://api.teamtailor.com/v1/form-questions/573922/form\"\n                    }\n                },\n                \"form-answers\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/form-questions/573922/relationships/form-answers\",\n                        \"related\": \"https://api.teamtailor.com/v1/form-questions/573922/form-answers\"\n                    }\n                },\n                \"candidates\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/form-questions/573922/relationships/candidates\",\n                        \"related\": \"https://api.teamtailor.com/v1/form-questions/573922/candidates\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"573923\",\n            \"type\": \"form-questions\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.com/v1/form-questions/573923\"\n            },\n            \"attributes\": {\n                \"text\": \"What is your job role for that company?\",\n                \"type\": \"text\",\n                \"schema\": {\n                    \"alternatives\": []\n                },\n                \"is-required\": false,\n                \"created-at\": \"2023-04-14T23:50:52.689+10:00\",\n                \"updated-at\": \"2023-04-20T23:01:13.082+10:00\"\n            },\n            \"relationships\": {\n                \"form\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/form-questions/573923/relationships/form\",\n                        \"related\": \"https://api.teamtailor.com/v1/form-questions/573923/form\"\n                    }\n                },\n                \"form-answers\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/form-questions/573923/relationships/form-answers\",\n                        \"related\": \"https://api.teamtailor.com/v1/form-questions/573923/form-answers\"\n                    }\n                },\n                \"candidates\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/form-questions/573923/relationships/candidates\",\n                        \"related\": \"https://api.teamtailor.com/v1/form-questions/573923/candidates\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"573924\",\n            \"type\": \"form-questions\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.com/v1/form-questions/573924\"\n            },\n            \"attributes\": {\n                \"text\": \"Do you currently use Teamtailor from a recruiting perspective?\",\n                \"type\": \"choice\",\n                \"schema\": {\n                    \"other\": {\n                        \"title\": \"Other...\"\n                    },\n                    \"alternatives\": [\n                        {\n                            \"id\": \"ff8bff40-dac9-11ed-ad13-2d07a201fa6b\",\n                            \"title\": \"Yes, I'm a Teamtailor user\"\n                        },\n                        {\n                            \"id\": \"049388a0-daca-11ed-ad13-2d07a201fa6b\",\n                            \"title\": \"No, I dont use Teamtailor\"\n                        }\n                    ]\n                },\n                \"is-required\": false,\n                \"created-at\": \"2023-04-14T23:50:52.692+10:00\",\n                \"updated-at\": \"2023-04-14T23:50:52.692+10:00\"\n            },\n            \"relationships\": {\n                \"form\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/form-questions/573924/relationships/form\",\n                        \"related\": \"https://api.teamtailor.com/v1/form-questions/573924/form\"\n                    }\n                },\n                \"form-answers\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/form-questions/573924/relationships/form-answers\",\n                        \"related\": \"https://api.teamtailor.com/v1/form-questions/573924/form-answers\"\n                    }\n                },\n                \"candidates\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/form-questions/573924/relationships/candidates\",\n                        \"related\": \"https://api.teamtailor.com/v1/form-questions/573924/candidates\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"573925\",\n            \"type\": \"form-questions\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.com/v1/form-questions/573925\"\n            },\n            \"attributes\": {\n                \"text\": \"Do you like long paragraph text questions?\",\n                \"type\": \"textarea\",\n                \"schema\": {\n                    \"alternatives\": []\n                },\n                \"is-required\": false,\n                \"created-at\": \"2023-04-14T23:50:52.693+10:00\",\n                \"updated-at\": \"2023-04-20T23:01:13.080+10:00\"\n            },\n            \"relationships\": {\n                \"form\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/form-questions/573925/relationships/form\",\n                        \"related\": \"https://api.teamtailor.com/v1/form-questions/573925/form\"\n                    }\n                },\n                \"form-answers\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/form-questions/573925/relationships/form-answers\",\n                        \"related\": \"https://api.teamtailor.com/v1/form-questions/573925/form-answers\"\n                    }\n                },\n                \"candidates\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/form-questions/573925/relationships/candidates\",\n                        \"related\": \"https://api.teamtailor.com/v1/form-questions/573925/candidates\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"573926\",\n            \"type\": \"form-questions\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.com/v1/form-questions/573926\"\n            },\n            \"attributes\": {\n                \"text\": \"What things do you look at when first screening a candidate?\",\n                \"type\": \"checkbox\",\n                \"schema\": {\n                    \"show_if\": {\n                        \"value\": \"ff8bff40-dac9-11ed-ad13-2d07a201fa6b\",\n                        \"ref_uuid\": \"ff8bd830-dac9-11ed-ad13-2d07a201fa6b\"\n                    },\n                    \"alternatives\": [\n                        {\n                            \"id\": \"d01ce670-dac9-11ed-ad13-2d07a201fa6b\",\n                            \"title\": \"CV/resume\"\n                        },\n                        {\n                            \"id\": \"e4772a90-dac9-11ed-ad13-2d07a201fa6b\",\n                            \"title\": \"LinkedIn profile\"\n                        },\n                        {\n                            \"id\": \"e8f0cbd0-dac9-11ed-ad13-2d07a201fa6b\",\n                            \"title\": \"Pitch\"\n                        },\n                        {\n                            \"id\": \"eac27e90-dac9-11ed-ad13-2d07a201fa6b\",\n                            \"title\": \"Contact information\"\n                        },\n                        {\n                            \"id\": \"edb1d650-dac9-11ed-ad13-2d07a201fa6b\",\n                            \"title\": \"Answers to questions\"\n                        }\n                    ]\n                },\n                \"is-required\": false,\n                \"created-at\": \"2023-04-14T23:50:52.695+10:00\",\n                \"updated-at\": \"2023-04-14T23:50:52.695+10:00\"\n            },\n            \"relationships\": {\n                \"form\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/form-questions/573926/relationships/form\",\n                        \"related\": \"https://api.teamtailor.com/v1/form-questions/573926/form\"\n                    }\n                },\n                \"form-answers\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/form-questions/573926/relationships/form-answers\",\n                        \"related\": \"https://api.teamtailor.com/v1/form-questions/573926/form-answers\"\n                    }\n                },\n                \"candidates\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/form-questions/573926/relationships/candidates\",\n                        \"related\": \"https://api.teamtailor.com/v1/form-questions/573926/candidates\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"573927\",\n            \"type\": \"form-questions\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.com/v1/form-questions/573927\"\n            },\n            \"attributes\": {\n                \"text\": \"How do you currently manage a candidate? How do you communicate, schedule an interview, prepare for the interview, rate the candidate after an interview, collaborate with others in the hiring team etc.?\",\n                \"type\": \"textarea\",\n                \"schema\": {\n                    \"show_if\": {\n                        \"value\": \"049388a0-daca-11ed-ad13-2d07a201fa6b\",\n                        \"ref_uuid\": \"ff8bd830-dac9-11ed-ad13-2d07a201fa6b\"\n                    },\n                    \"alternatives\": []\n                },\n                \"is-required\": false,\n                \"created-at\": \"2023-04-14T23:50:52.696+10:00\",\n                \"updated-at\": \"2023-04-20T23:01:13.077+10:00\"\n            },\n            \"relationships\": {\n                \"form\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/form-questions/573927/relationships/form\",\n                        \"related\": \"https://api.teamtailor.com/v1/form-questions/573927/form\"\n                    }\n                },\n                \"form-answers\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/form-questions/573927/relationships/form-answers\",\n                        \"related\": \"https://api.teamtailor.com/v1/form-questions/573927/form-answers\"\n                    }\n                },\n                \"candidates\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/form-questions/573927/relationships/candidates\",\n                        \"related\": \"https://api.teamtailor.com/v1/form-questions/573927/candidates\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"573928\",\n            \"type\": \"form-questions\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.com/v1/form-questions/573928\"\n            },\n            \"attributes\": {\n                \"text\": \"How good was this survey?\",\n                \"type\": \"scale\",\n                \"schema\": {\n                    \"end_label\": \"Very good\",\n                    \"alternatives\": [],\n                    \"maximum_value\": 5,\n                    \"beginning_label\": \"Very bad\"\n                },\n                \"is-required\": false,\n                \"created-at\": \"2023-04-14T23:50:52.697+10:00\",\n                \"updated-at\": \"2023-04-20T23:01:13.058+10:00\"\n            },\n            \"relationships\": {\n                \"form\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/form-questions/573928/relationships/form\",\n                        \"related\": \"https://api.teamtailor.com/v1/form-questions/573928/form\"\n                    }\n                },\n                \"form-answers\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/form-questions/573928/relationships/form-answers\",\n                        \"related\": \"https://api.teamtailor.com/v1/form-questions/573928/form-answers\"\n                    }\n                },\n                \"candidates\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/form-questions/573928/relationships/candidates\",\n                        \"related\": \"https://api.teamtailor.com/v1/form-questions/573928/candidates\"\n                    }\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"record-count\": 7,\n        \"page-count\": 1\n    }\n}"}],"_postman_id":"b06b444a-6300-47d4-802c-2ac63749f05d"},{"name":"Show form question","id":"71aaeb6d-8e43-403f-94e3-376aeb0b4f35","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Api-Version","value":"20240404","type":"text"}],"url":"https://api.teamtailor.com/v1/form-questions/573924","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","form-questions","573924"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"127084f9-d145-41fa-b994-3e348eda43ac","name":"Example","originalRequest":{"method":"GET","header":[{"key":"X-Api-Version","value":"20240404","type":"text"}],"url":"https://api.teamtailor.com/v1/form-questions/573924"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 01 Apr 2025 13:12:44 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Content-Length","value":"1118"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.27.4"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Rate-Limit-Limit","value":"50"},{"key":"X-Rate-Limit-Remaining","value":"49"},{"key":"X-Rate-Limit-Reset","value":"6"},{"key":"X-Api-Version","value":"20240404"},{"key":"Vary","value":"Accept, Origin"},{"key":"X-Api-Cache","value":"miss"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, PUT, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Origin, Content-Type, Accept, Authorization, Token"},{"key":"Access-Control-Max-Age","value":"1728000"},{"key":"ETag","value":"W/\"2dcbd0f9612a433f6595707d1edb5d87\""},{"key":"Cache-Control","value":"must-revalidate, private, max-age=0"},{"key":"Content-Security-Policy","value":""},{"key":"X-Request-Id","value":"3a45ea9f-d84b-434d-83e3-757f7636dd39"},{"key":"X-Runtime","value":"0.039113"},{"key":"X-Rack-Cache","value":"miss"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"573924\",\n        \"type\": \"form-questions\",\n        \"links\": {\n            \"self\": \"https://api.teamtailor.com/v1/form-questions/573924\"\n        },\n        \"attributes\": {\n            \"text\": \"Do you currently use Teamtailor from a recruiting perspective?\",\n            \"type\": \"choice\",\n            \"schema\": {\n                \"other\": {\n                    \"title\": \"Other...\"\n                },\n                \"alternatives\": [\n                    {\n                        \"id\": \"ff8bff40-dac9-11ed-ad13-2d07a201fa6b\",\n                        \"title\": \"Yes, I'm a Teamtailor user\"\n                    },\n                    {\n                        \"id\": \"049388a0-daca-11ed-ad13-2d07a201fa6b\",\n                        \"title\": \"No, I dont use Teamtailor\"\n                    }\n                ]\n            },\n            \"is-required\": false,\n            \"created-at\": \"2023-04-14T23:50:52.692+10:00\",\n            \"updated-at\": \"2023-04-14T23:50:52.692+10:00\"\n        },\n        \"relationships\": {\n            \"form\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.com/v1/form-questions/573924/relationships/form\",\n                    \"related\": \"https://api.teamtailor.com/v1/form-questions/573924/form\"\n                }\n            },\n            \"form-answers\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.com/v1/form-questions/573924/relationships/form-answers\",\n                    \"related\": \"https://api.teamtailor.com/v1/form-questions/573924/form-answers\"\n                }\n            },\n            \"candidates\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.com/v1/form-questions/573924/relationships/candidates\",\n                    \"related\": \"https://api.teamtailor.com/v1/form-questions/573924/candidates\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"71aaeb6d-8e43-403f-94e3-376aeb0b4f35"}],"id":"4e8d9aaf-951e-41aa-af03-a30979fdf08c","description":"<h4 id=\"attributes\">Attributes</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>form-question-type</td>\n<td>string (\"Boolean\", \"Checkbox\", \"Choice\", \"Date\", \"Number\", \"Range\", \"Scale\", \"Text\", \"TextArea\")</td>\n<td>The question type.</td>\n</tr>\n<tr>\n<td>text</td>\n<td>string</td>\n<td>The question title.</td>\n</tr>\n<tr>\n<td>schema</td>\n<td>object</td>\n<td>Structure holding alternatives for multiple choice questions.</td>\n</tr>\n<tr>\n<td>is-required</td>\n<td>boolean</td>\n<td><code>true</code> if the question is mandatory.</td>\n</tr>\n<tr>\n<td>created-at</td>\n<td>date</td>\n<td></td>\n</tr>\n<tr>\n<td>updated-at</td>\n<td>date</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"relationships\">Relationships</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Relationship</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>form</td>\n<td>The form the question belongs to.</td>\n</tr>\n<tr>\n<td>form-answers</td>\n<td>All the answers to the question.</td>\n</tr>\n<tr>\n<td>candidates</td>\n<td>The candidates who responded to the question.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"4e8d9aaf-951e-41aa-af03-a30979fdf08c","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}}},{"name":"Form answers","item":[{"name":"Get form answers","id":"a4871578-746d-4171-b722-59684e9a66da","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Api-Version","value":"20240404","type":"text"}],"url":"https://api.teamtailor.com/v1/form-answers?filter[candidate]=57296474","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>filter</td>\n<td>Supported filters: <code>form-question</code></td>\n</tr>\n<tr>\n<td>include</td>\n<td>Comma separated list of relationships to include in the response, for example <code>include=form-question</code></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","form-answers"],"host":["api.teamtailor.com"],"query":[{"key":"filter[candidate]","value":"57296474"}],"variable":[]}},"response":[{"id":"a9d5fde8-5047-4c19-b089-757196d233d7","name":"Example","originalRequest":{"method":"GET","header":[{"key":"X-Api-Version","value":"20240404","type":"text"}],"url":{"raw":"https://api.teamtailor.com/v1/form-answers?include=form-question","protocol":"https","host":["api.teamtailor.com"],"path":["v1","form-answers"],"query":[{"key":"include","value":"form-question"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 01 Apr 2025 13:51:38 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Content-Length","value":"849"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.27.4"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Rate-Limit-Limit","value":"50"},{"key":"X-Rate-Limit-Remaining","value":"49"},{"key":"X-Rate-Limit-Reset","value":"2"},{"key":"X-Api-Version","value":"20240404"},{"key":"Vary","value":"Accept, Origin"},{"key":"X-Api-Cache","value":"miss"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, PUT, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Origin, Content-Type, Accept, Authorization, Token"},{"key":"Access-Control-Max-Age","value":"1728000"},{"key":"ETag","value":"W/\"77e6a931ee6e2a3238a6207ecdd69b7b\""},{"key":"Cache-Control","value":"must-revalidate, private, max-age=0"},{"key":"Content-Security-Policy","value":""},{"key":"X-Request-Id","value":"37f5f713-03c9-4c59-84ad-54a66416edb1"},{"key":"X-Runtime","value":"0.044280"},{"key":"X-Rack-Cache","value":"miss"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"18280637\",\n            \"type\": \"form-answers\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.com/v1/form-answers/18280637\"\n            },\n            \"attributes\": {\n                \"text-value\": null,\n                \"numeric-value\": null,\n                \"array-value\": [\n                    \"dfebf3f0-0efe-11f0-b1de-e59d0ffdc205\",\n                    \"e17ec8f0-0efe-11f0-b1de-e59d0ffdc205\"\n                ],\n                \"date-value\": null,\n                \"formatted-value\": \"Banana, Orange\",\n                \"created-at\": \"2025-04-01T23:46:25.880+10:00\",\n                \"updated-at\": \"2025-04-01T23:46:25.880+10:00\"\n            },\n            \"relationships\": {\n                \"form-question\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/form-answers/18280637/relationships/form-question\",\n                        \"related\": \"https://api.teamtailor.com/v1/form-answers/18280637/form-question\"\n                    },\n                    \"data\": {\n                        \"type\": \"form-questions\",\n                        \"id\": \"3133165\"\n                    }\n                },\n                \"candidate\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/form-answers/18280637/relationships/candidate\",\n                        \"related\": \"https://api.teamtailor.com/v1/form-answers/18280637/candidate\"\n                    }\n                }\n            }\n        }\n    ],\n    \"included\": [\n        {\n            \"id\": \"3133165\",\n            \"type\": \"form-questions\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.com/v1/form-questions/3133165\"\n            },\n            \"attributes\": {\n                \"text\": \"What fruits do you prefer?\",\n                \"type\": \"checkbox\",\n                \"schema\": {\n                    \"alternatives\": [\n                        {\n                            \"id\": \"d8bd92f1-0efe-11f0-b1de-e59d0ffdc205\",\n                            \"title\": \"Apple\"\n                        },\n                        {\n                            \"id\": \"dfebf3f0-0efe-11f0-b1de-e59d0ffdc205\",\n                            \"title\": \"Banana\"\n                        },\n                        {\n                            \"id\": \"e17ec8f0-0efe-11f0-b1de-e59d0ffdc205\",\n                            \"title\": \"Orange\"\n                        },\n                        {\n                            \"id\": \"e3288150-0efe-11f0-b1de-e59d0ffdc205\",\n                            \"title\": \"Kiwi\"\n                        }\n                    ]\n                },\n                \"is-required\": false,\n                \"created-at\": \"2025-04-01T23:40:42.759+10:00\",\n                \"updated-at\": \"2025-04-01T23:40:42.759+10:00\"\n            },\n            \"relationships\": {\n                \"form\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/form-questions/3133165/relationships/form\",\n                        \"related\": \"https://api.teamtailor.com/v1/form-questions/3133165/form\"\n                    }\n                },\n                \"form-answers\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/form-questions/3133165/relationships/form-answers\",\n                        \"related\": \"https://api.teamtailor.com/v1/form-questions/3133165/form-answers\"\n                    }\n                },\n                \"candidates\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/form-questions/3133165/relationships/candidates\",\n                        \"related\": \"https://api.teamtailor.com/v1/form-questions/3133165/candidates\"\n                    }\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"record-count\": 1,\n        \"page-count\": 1\n    }\n}"}],"_postman_id":"a4871578-746d-4171-b722-59684e9a66da"},{"name":"Show form answers","id":"f3692640-adfc-4f9d-a737-14af543238fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Api-Version","value":"20240404","type":"text"}],"url":"https://api.teamtailor.com/v1/form-answers/18280637","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","form-answers","18280637"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"df8831ee-a886-487d-a918-f9e924e232a5","name":"Example","originalRequest":{"method":"GET","header":[{"key":"X-Api-Version","value":"20240404","type":"text"}],"url":{"raw":"https://api.teamtailor.com/v1/form-answers?include=form-question","protocol":"https","host":["api.teamtailor.com"],"path":["v1","form-answers"],"query":[{"key":"include","value":"form-question"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 01 Apr 2025 13:51:38 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Content-Length","value":"849"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.27.4"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Rate-Limit-Limit","value":"50"},{"key":"X-Rate-Limit-Remaining","value":"49"},{"key":"X-Rate-Limit-Reset","value":"2"},{"key":"X-Api-Version","value":"20240404"},{"key":"Vary","value":"Accept, Origin"},{"key":"X-Api-Cache","value":"miss"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, PUT, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Origin, Content-Type, Accept, Authorization, Token"},{"key":"Access-Control-Max-Age","value":"1728000"},{"key":"ETag","value":"W/\"77e6a931ee6e2a3238a6207ecdd69b7b\""},{"key":"Cache-Control","value":"must-revalidate, private, max-age=0"},{"key":"Content-Security-Policy","value":""},{"key":"X-Request-Id","value":"37f5f713-03c9-4c59-84ad-54a66416edb1"},{"key":"X-Runtime","value":"0.044280"},{"key":"X-Rack-Cache","value":"miss"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"18280637\",\n            \"type\": \"form-answers\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.com/v1/form-answers/18280637\"\n            },\n            \"attributes\": {\n                \"text-value\": null,\n                \"numeric-value\": null,\n                \"array-value\": [\n                    \"dfebf3f0-0efe-11f0-b1de-e59d0ffdc205\",\n                    \"e17ec8f0-0efe-11f0-b1de-e59d0ffdc205\"\n                ],\n                \"date-value\": null,\n                \"formatted-value\": \"Banana, Orange\",\n                \"created-at\": \"2025-04-01T23:46:25.880+10:00\",\n                \"updated-at\": \"2025-04-01T23:46:25.880+10:00\"\n            },\n            \"relationships\": {\n                \"form-question\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/form-answers/18280637/relationships/form-question\",\n                        \"related\": \"https://api.teamtailor.com/v1/form-answers/18280637/form-question\"\n                    },\n                    \"data\": {\n                        \"type\": \"form-questions\",\n                        \"id\": \"3133165\"\n                    }\n                },\n                \"candidate\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/form-answers/18280637/relationships/candidate\",\n                        \"related\": \"https://api.teamtailor.com/v1/form-answers/18280637/candidate\"\n                    }\n                }\n            }\n        }\n    ],\n    \"included\": [\n        {\n            \"id\": \"3133165\",\n            \"type\": \"form-questions\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.com/v1/form-questions/3133165\"\n            },\n            \"attributes\": {\n                \"text\": \"What fruits do you prefer?\",\n                \"type\": \"checkbox\",\n                \"schema\": {\n                    \"alternatives\": [\n                        {\n                            \"id\": \"d8bd92f1-0efe-11f0-b1de-e59d0ffdc205\",\n                            \"title\": \"Apple\"\n                        },\n                        {\n                            \"id\": \"dfebf3f0-0efe-11f0-b1de-e59d0ffdc205\",\n                            \"title\": \"Banana\"\n                        },\n                        {\n                            \"id\": \"e17ec8f0-0efe-11f0-b1de-e59d0ffdc205\",\n                            \"title\": \"Orange\"\n                        },\n                        {\n                            \"id\": \"e3288150-0efe-11f0-b1de-e59d0ffdc205\",\n                            \"title\": \"Kiwi\"\n                        }\n                    ]\n                },\n                \"is-required\": false,\n                \"created-at\": \"2025-04-01T23:40:42.759+10:00\",\n                \"updated-at\": \"2025-04-01T23:40:42.759+10:00\"\n            },\n            \"relationships\": {\n                \"form\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/form-questions/3133165/relationships/form\",\n                        \"related\": \"https://api.teamtailor.com/v1/form-questions/3133165/form\"\n                    }\n                },\n                \"form-answers\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/form-questions/3133165/relationships/form-answers\",\n                        \"related\": \"https://api.teamtailor.com/v1/form-questions/3133165/form-answers\"\n                    }\n                },\n                \"candidates\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/form-questions/3133165/relationships/candidates\",\n                        \"related\": \"https://api.teamtailor.com/v1/form-questions/3133165/candidates\"\n                    }\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"record-count\": 1,\n        \"page-count\": 1\n    }\n}"}],"_postman_id":"f3692640-adfc-4f9d-a737-14af543238fa"}],"id":"c4778d98-6661-4231-b857-672794fc1241","description":"<h4 id=\"attributes\">Attributes</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>text-value</td>\n<td>string</td>\n<td>The answer for text questions.</td>\n</tr>\n<tr>\n<td>numeric-value</td>\n<td>number</td>\n<td>The answer for number questions.</td>\n</tr>\n<tr>\n<td>array-value</td>\n<td>array</td>\n<td>For multiple choice questions this will hold the id's of the picked alternatives.</td>\n</tr>\n<tr>\n<td>date-value</td>\n<td>date</td>\n<td>The answer for date questions.</td>\n</tr>\n<tr>\n<td>formatted-value</td>\n<td>string</td>\n<td>Human readable form of the answer, will be present for all types of questions.</td>\n</tr>\n<tr>\n<td>created-at</td>\n<td>date</td>\n<td></td>\n</tr>\n<tr>\n<td>updated-at</td>\n<td>date</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"relationships\">Relationships</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Relationship</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>form-question</td>\n<td>The question for the answer</td>\n</tr>\n<tr>\n<td>candidate</td>\n<td>The candidate responding to the question. Will be empty for anonymous forms.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"c4778d98-6661-4231-b857-672794fc1241","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}}},{"name":"Interviews","item":[{"name":"List Interviews","id":"fb801ae1-f1cd-4edb-8116-74afab2d3c3d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"}],"url":"https://api.teamtailor.com/v1/interviews","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","interviews"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"08899437-34e5-42c6-a079-82aba40539e1","name":"List Interviews","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"}],"url":"https://api.teamtailor.com/v1/interviews"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"1\",\n            \"type\": \"interviews\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/interviews/1\"\n            },\n            \"attributes\": {\n                \"created-at\": \"2025-05-07T20:01:42.951+02:00\",\n                \"note\": \"Distinctio est expedita quod.\",\n                \"status\": \"published\"\n            },\n            \"relationships\": {\n                \"candidate\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/interviews/1/relationships/candidate\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/interviews/1/candidate\"\n                    }\n                },\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/interviews/1/relationships/user\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/interviews/1/user\"\n                    }\n                },\n                \"job\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/interviews/1/relationships/job\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/interviews/1/job\"\n                    }\n                },\n                \"scorecard-scores\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/interviews/1/relationships/scorecard-scores\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/interviews/1/scorecard-scores\"\n                    }\n                },\n                \"answers\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/interviews/1/relationships/answers\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/interviews/1/answers\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"2\",\n            \"type\": \"interviews\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/interviews/2\"\n            },\n            \"attributes\": {\n                \"created-at\": \"2025-05-14T02:12:15.299+02:00\",\n                \"note\": null,\n                \"status\": \"published\"\n            },\n            \"relationships\": {\n                \"candidate\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/interviews/2/relationships/candidate\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/interviews/2/candidate\"\n                    }\n                },\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/interviews/2/relationships/user\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/interviews/2/user\"\n                    }\n                },\n                \"job\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/interviews/2/relationships/job\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/interviews/2/job\"\n                    }\n                },\n                \"scorecard-scores\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/interviews/2/relationships/scorecard-scores\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/interviews/2/scorecard-scores\"\n                    }\n                },\n                \"answers\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/interviews/2/relationships/answers\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/interviews/2/answers\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"3\",\n            \"type\": \"interviews\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/interviews/3\"\n            },\n            \"attributes\": {\n                \"created-at\": \"2025-05-09T15:59:27.935+02:00\",\n                \"note\": null,\n                \"status\": \"published\"\n            },\n            \"relationships\": {\n                \"candidate\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/interviews/3/relationships/candidate\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/interviews/3/candidate\"\n                    }\n                },\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/interviews/3/relationships/user\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/interviews/3/user\"\n                    }\n                },\n                \"job\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/interviews/3/relationships/job\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/interviews/3/job\"\n                    }\n                },\n                \"scorecard-scores\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/interviews/3/relationships/scorecard-scores\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/interviews/3/scorecard-scores\"\n                    }\n                },\n                \"answers\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/interviews/3/relationships/answers\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/interviews/3/answers\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"4\",\n            \"type\": \"interviews\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/interviews/4\"\n            },\n            \"attributes\": {\n                \"created-at\": \"2025-05-14T10:31:23.062+02:00\",\n                \"note\": \"Quidem veniam voluptas in.\",\n                \"status\": \"published\"\n            },\n            \"relationships\": {\n                \"candidate\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/interviews/4/relationships/candidate\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/interviews/4/candidate\"\n                    }\n                },\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/interviews/4/relationships/user\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/interviews/4/user\"\n                    }\n                },\n                \"job\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/interviews/4/relationships/job\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/interviews/4/job\"\n                    }\n                },\n                \"scorecard-scores\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/interviews/4/relationships/scorecard-scores\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/interviews/4/scorecard-scores\"\n                    }\n                },\n                \"answers\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/interviews/4/relationships/answers\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/interviews/4/answers\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"5\",\n            \"type\": \"interviews\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/interviews/5\"\n            },\n            \"attributes\": {\n                \"created-at\": \"2025-05-14T17:56:53.182+02:00\",\n                \"note\": null,\n                \"status\": \"published\"\n            },\n            \"relationships\": {\n                \"candidate\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/interviews/5/relationships/candidate\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/interviews/5/candidate\"\n                    }\n                },\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/interviews/5/relationships/user\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/interviews/5/user\"\n                    }\n                },\n                \"job\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/interviews/5/relationships/job\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/interviews/5/job\"\n                    }\n                },\n                \"scorecard-scores\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/interviews/5/relationships/scorecard-scores\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/interviews/5/scorecard-scores\"\n                    }\n                },\n                \"answers\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/interviews/5/relationships/answers\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/interviews/5/answers\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"6\",\n            \"type\": \"interviews\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/interviews/6\"\n            },\n            \"attributes\": {\n                \"created-at\": \"2025-05-14T10:36:56.048+02:00\",\n                \"note\": null,\n                \"status\": \"published\"\n            },\n            \"relationships\": {\n                \"candidate\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/interviews/6/relationships/candidate\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/interviews/6/candidate\"\n                    }\n                },\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/interviews/6/relationships/user\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/interviews/6/user\"\n                    }\n                },\n                \"job\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/interviews/6/relationships/job\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/interviews/6/job\"\n                    }\n                },\n                \"scorecard-scores\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/interviews/6/relationships/scorecard-scores\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/interviews/6/scorecard-scores\"\n                    }\n                },\n                \"answers\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/interviews/6/relationships/answers\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/interviews/6/answers\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"7\",\n            \"type\": \"interviews\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/interviews/7\"\n            },\n            \"attributes\": {\n                \"created-at\": \"2025-05-11T10:43:13.060+02:00\",\n                \"note\": \"Asperiores dignissimos ut voluptatum.\",\n                \"status\": \"published\"\n            },\n            \"relationships\": {\n                \"candidate\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/interviews/7/relationships/candidate\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/interviews/7/candidate\"\n                    }\n                },\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/interviews/7/relationships/user\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/interviews/7/user\"\n                    }\n                },\n                \"job\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/interviews/7/relationships/job\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/interviews/7/job\"\n                    }\n                },\n                \"scorecard-scores\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/interviews/7/relationships/scorecard-scores\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/interviews/7/scorecard-scores\"\n                    }\n                },\n                \"answers\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/interviews/7/relationships/answers\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/interviews/7/answers\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"8\",\n            \"type\": \"interviews\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/interviews/8\"\n            },\n            \"attributes\": {\n                \"created-at\": \"2025-05-15T01:29:27.237+02:00\",\n                \"note\": \"Sunt dolores et ab.\",\n                \"status\": \"published\"\n            },\n            \"relationships\": {\n                \"candidate\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/interviews/8/relationships/candidate\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/interviews/8/candidate\"\n                    }\n                },\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/interviews/8/relationships/user\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/interviews/8/user\"\n                    }\n                },\n                \"job\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/interviews/8/relationships/job\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/interviews/8/job\"\n                    }\n                },\n                \"scorecard-scores\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/interviews/8/relationships/scorecard-scores\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/interviews/8/scorecard-scores\"\n                    }\n                },\n                \"answers\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/interviews/8/relationships/answers\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/interviews/8/answers\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"9\",\n            \"type\": \"interviews\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/interviews/9\"\n            },\n            \"attributes\": {\n                \"created-at\": \"2025-05-13T00:32:18.969+02:00\",\n                \"note\": \"Enim ab et est.\",\n                \"status\": \"published\"\n            },\n            \"relationships\": {\n                \"candidate\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/interviews/9/relationships/candidate\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/interviews/9/candidate\"\n                    }\n                },\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/interviews/9/relationships/user\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/interviews/9/user\"\n                    }\n                },\n                \"job\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/interviews/9/relationships/job\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/interviews/9/job\"\n                    }\n                },\n                \"scorecard-scores\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/interviews/9/relationships/scorecard-scores\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/interviews/9/scorecard-scores\"\n                    }\n                },\n                \"answers\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/interviews/9/relationships/answers\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/interviews/9/answers\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"10\",\n            \"type\": \"interviews\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/interviews/10\"\n            },\n            \"attributes\": {\n                \"created-at\": \"2025-05-13T19:17:53.477+02:00\",\n                \"note\": \"Et libero odit exercitationem.\",\n                \"status\": \"published\"\n            },\n            \"relationships\": {\n                \"candidate\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/interviews/10/relationships/candidate\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/interviews/10/candidate\"\n                    }\n                },\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/interviews/10/relationships/user\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/interviews/10/user\"\n                    }\n                },\n                \"job\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/interviews/10/relationships/job\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/interviews/10/job\"\n                    }\n                },\n                \"scorecard-scores\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/interviews/10/relationships/scorecard-scores\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/interviews/10/scorecard-scores\"\n                    }\n                },\n                \"answers\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/interviews/10/relationships/answers\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/interviews/10/answers\"\n                    }\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"record-count\": 20,\n        \"page-count\": 2\n    },\n    \"links\": {\n        \"next\": \"https://api.teamtailor.localhost/v1/interviews?page%5Bafter%5D=MTA&page%5Bsize%5D=10\"\n    }\n}"}],"_postman_id":"fb801ae1-f1cd-4edb-8116-74afab2d3c3d"},{"name":"Show Interview","id":"af1482f2-4f7e-4e30-8c9f-aad7960bff18","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"}],"url":"https://api.teamtailor.com/v1/interviews/","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","interviews",""],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"90edec51-d56e-46be-8042-73ac8a4e3de9","name":"Show Interview","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"}],"url":"https://api.teamtailor.com/v1/interviews/"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"1\",\n        \"type\": \"interviews\",\n        \"links\": {\n            \"self\": \"https://api.teamtailor.localhost/v1/interviews/1\"\n        },\n        \"attributes\": {\n            \"created-at\": \"2025-05-07T20:01:42.951+02:00\",\n            \"note\": \"Distinctio est expedita quod.\",\n            \"status\": \"published\"\n        },\n        \"relationships\": {\n            \"candidate\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/interviews/1/relationships/candidate\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/interviews/1/candidate\"\n                }\n            },\n            \"user\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/interviews/1/relationships/user\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/interviews/1/user\"\n                }\n            },\n            \"job\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/interviews/1/relationships/job\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/interviews/1/job\"\n                }\n            },\n            \"scorecard-scores\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/interviews/1/relationships/scorecard-scores\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/interviews/1/scorecard-scores\"\n                }\n            },\n            \"answers\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/interviews/1/relationships/answers\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/interviews/1/answers\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"af1482f2-4f7e-4e30-8c9f-aad7960bff18"}],"id":"29fad77a-fbf6-4829-8393-64a55bc163a7","description":"<h1 id=\"interviews\">Interviews</h1>\n<p><strong>Read-only</strong> API.</p>\n<h3 id=\"attributes\">Attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>created-at</td>\n<td>datetime</td>\n<td>Date and time of Interview creation</td>\n</tr>\n<tr>\n<td>note</td>\n<td>string</td>\n<td>Notes from interview</td>\n</tr>\n<tr>\n<td>status</td>\n<td>enum (\"published\"/\"draft\")</td>\n<td>Status of interview</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"relations\">Relations</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Relation</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>answers</td>\n<td>interview answers</td>\n</tr>\n<tr>\n<td>candidate</td>\n<td>candidate's interview</td>\n</tr>\n<tr>\n<td>job</td>\n<td>job's interview</td>\n</tr>\n<tr>\n<td>scorecard-scores</td>\n<td>interview's scorecard scores</td>\n</tr>\n<tr>\n<td>user</td>\n<td>interview feedback user</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"29fad77a-fbf6-4829-8393-64a55bc163a7","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}}},{"name":"Jobs","item":[{"name":"List jobs","id":"a0351972-8394-4646-95f0-56a4c4e3886d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"}],"url":"https://api.teamtailor.com/v1/jobs","description":"<h2 id=\"list-jobs\">List Jobs</h2>\n<p>Use this endpoint to retrieve lists of jobs.</p>\n<h3 id=\"example-parameters\">Example parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Default</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>include</td>\n<td>null</td>\n<td>Comma separated list of relations to include in the response. For example <code>department,role</code>.</td>\n</tr>\n<tr>\n<td>filter[status]</td>\n<td>published</td>\n<td>Filter by job status. Available statuses: <code>published</code>, <code>unlisted</code>, <code>archived</code>, <code>draft</code>, <code>scheduled</code> and <code>all</code>. See <a href=\"#permissions\">Permissions</a> for more info.</td>\n</tr>\n<tr>\n<td>filter[feed]</td>\n<td>public</td>\n<td>Filter by <code>public</code> and/or <code>internal</code> jobs. See <a href=\"#permissions\">Permissions</a> for more info.</td>\n</tr>\n<tr>\n<td>filter[division]</td>\n<td>null</td>\n<td>Filter by division id.</td>\n</tr>\n<tr>\n<td>filter[department]</td>\n<td>null</td>\n<td>Filter by department id.</td>\n</tr>\n<tr>\n<td>filter[role]</td>\n<td>null</td>\n<td>Filter by role id.</td>\n</tr>\n<tr>\n<td>filter[location]</td>\n<td>null</td>\n<td>Filter by location id. <strong>Removed</strong>, use <code>filter[locations]</code> instead.</td>\n</tr>\n<tr>\n<td>filter[locations]</td>\n<td>null</td>\n<td>Filter by location id.</td>\n</tr>\n<tr>\n<td>filter[regions]</td>\n<td>null</td>\n<td>Filter by region id.</td>\n</tr>\n<tr>\n<td>filter[tags]</td>\n<td>null</td>\n<td>Filter by tags.</td>\n</tr>\n<tr>\n<td>filter[remote-status]</td>\n<td>null</td>\n<td>Filter by remote status. Available remote statuses: <code>none</code>, <code>temporary</code>, <code>hybrid</code>, <code>fully</code></td>\n</tr>\n<tr>\n<td>filter[created-at][from]</td>\n<td>null</td>\n<td>Filter by created-at older than this date.</td>\n</tr>\n<tr>\n<td>filter[created-at][to]</td>\n<td>null</td>\n<td>Filter by created-at newer than this date.</td>\n</tr>\n<tr>\n<td>filter[updated-at][from]</td>\n<td>null</td>\n<td>Filter by updated-at older than this date.</td>\n</tr>\n<tr>\n<td>filter[updated-at][to]</td>\n<td>null</td>\n<td>Filter by updated-at newer than this date.</td>\n</tr>\n<tr>\n<td>sort</td>\n<td>-pinned,date</td>\n<td>Default sorting based on pinned status and publish date</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","jobs"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"f728605a-efa7-4385-96e8-d9738451fc7e","name":"List jobs","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"}],"url":"https://api.teamtailor.com/v1/jobs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"23\",\n            \"type\": \"jobs\",\n            \"links\": {\n                \"careersite-job-url\": \"https://career.teamtailor.localhost/jobs/23-farming-designer\",\n                \"careersite-job-apply-url\": \"https://career.teamtailor.localhost/jobs/23-farming-designer/applications/new\",\n                \"careersite-job-apply-iframe-url\": \"https://career.teamtailor.localhost/jobs/23-farming-designer/applications/new?iframe=true\",\n                \"self\": \"https://api.teamtailor.localhost/v1/jobs/23\"\n            },\n            \"attributes\": {\n                \"apply-button-text\": \"\",\n                \"body\": \"<p> </p><h2>Enim facere dolor.</h2><p>Comburo confido omnis. Corporis deficio comis. Amicitia degusto dolore.</p>\",\n                \"end-date\": null,\n                \"human-status\": \"published\",\n                \"internal\": false,\n                \"picture\": null,\n                \"pinned\": false,\n                \"start-date\": null,\n                \"status\": \"open\",\n                \"language-code\": \"en\",\n                \"tags\": [],\n                \"title\": \"Farming Designer\",\n                \"internal-name\": \"Farming Designer in Stockholm\",\n                \"pitch\": \"\",\n                \"external-application-url\": \"\",\n                \"name-requirement\": \"optional\",\n                \"resume-requirement\": \"optional\",\n                \"cover-letter-requirement\": \"optional\",\n                \"phone-requirement\": \"optional\",\n                \"created-at\": \"2020-10-30T10:39:13.772+01:00\",\n                \"updated-at\": \"2020-11-01T10:39:13.772+01:00\",\n                \"sharing-image-layout\": \"default\",\n                \"mailbox\": \"job-30c048e6-bca8-458e-9b87-47a2017d013f@inbound.teamtailor.com\",\n                \"remote-status\": \"none\",\n                \"template-name\": null\n            },\n            \"relationships\": {\n                \"activities\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/23/relationships/activities\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/23/activities\"\n                    }\n                },\n                \"division\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/23/relationships/divisions\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/23/division\"\n                    }\n                },\n                \"department\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/23/relationships/department\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/23/department\"\n                    }\n                },\n                \"role\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/23/relationships/role\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/23/role\"\n                    }\n                },\n                \"location\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/23/relationships/location\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/23/location\"\n                    }\n                },\n                \"locations\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/23/relationships/locations\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/23/locations\"\n                    }\n                },\n                \"regions\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/23/relationships/regions\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/23/regions\"\n                    }\n                },\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/23/relationships/user\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/23/user\"\n                    }\n                },\n                \"questions\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/23/relationships/questions\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/23/questions\"\n                    }\n                },\n                \"candidates\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/23/relationships/candidates\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/23/candidates\"\n                    }\n                },\n                \"stages\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/23/relationships/stages\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/23/stages\"\n                    }\n                },\n                \"colleagues\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/23/relationships/colleagues\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/23/colleagues\"\n                    }\n                },\n                \"team-memberships\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/23/relationships/team-memberships\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/23/team-memberships\"\n                    }\n                },\n                \"picked-questions\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/23/relationships/picked-questions\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/23/picked-questions\"\n                    }\n                },\n                \"requisition\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/23/relationships/requisition\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/23/requisition\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"22\",\n            \"type\": \"jobs\",\n            \"links\": {\n                \"careersite-job-url\": \"https://career.teamtailor.localhost/jobs/22-forward-agent\",\n                \"careersite-job-apply-url\": \"https://career.teamtailor.localhost/jobs/22-forward-agent/applications/new\",\n                \"careersite-job-apply-iframe-url\": \"https://career.teamtailor.localhost/jobs/22-forward-agent/applications/new?iframe=true\",\n                \"self\": \"https://api.teamtailor.localhost/v1/jobs/22\"\n            },\n            \"attributes\": {\n                \"apply-button-text\": null,\n                \"body\": \"<p>Cometes benigne deprimo. Virgo sunt amicitia. Deprimo comminor ex.</p><h2>Quia qui sed quos.</h2><p>Consectetur voluptas agnitio. Vorax acies voveo. Earum molestias ut.</p>\",\n                \"end-date\": null,\n                \"human-status\": \"published\",\n                \"internal\": false,\n                \"picture\": null,\n                \"pinned\": false,\n                \"start-date\": null,\n                \"status\": \"open\",\n                \"tags\": [\n                    \"Farming\"\n                ],\n                \"title\": \"Forward Agent\",\n                \"pitch\": null,\n                \"external-application-url\": null,\n                \"name-requirement\": \"optional\",\n                \"resume-requirement\": \"optional\",\n                \"cover-letter-requirement\": \"optional\",\n                \"phone-requirement\": \"optional\",\n                \"created-at\": \"2020-10-30T10:33:10.556+01:00\",\n                \"updated-at\": \"2020-11-01T10:33:10.556+01:00\",\n                \"sharing-image-layout\": \"default\",\n                \"mailbox\": \"job-bc49bdb9-726d-42c3-a28e-fe62345a2cf2@inbound.teamtailor.com\",\n                \"remote-status\": \"none\",\n                \"template-name\": null\n            },\n            \"relationships\": {\n                \"activities\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/22/relationships/activities\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/22/activities\"\n                    }\n                },\n                \"division\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/22/relationships/division\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/22/division\"\n                    }\n                },\n                \"department\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/22/relationships/department\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/22/department\"\n                    }\n                },\n                \"role\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/22/relationships/role\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/22/role\"\n                    }\n                },\n                \"location\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/22/relationships/location\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/22/location\"\n                    }\n                },\n                \"locations\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/22/relationships/locations\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/22/locations\"\n                    }\n                },\n                \"regions\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/22/relationships/regions\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/22/regions\"\n                    }\n                },\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/22/relationships/user\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/22/user\"\n                    }\n                },\n                \"questions\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/22/relationships/questions\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/22/questions\"\n                    }\n                },\n                \"candidates\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/22/relationships/candidates\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/22/candidates\"\n                    }\n                },\n                \"stages\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/22/relationships/stages\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/22/stages\"\n                    }\n                },\n                \"colleagues\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/22/relationships/colleagues\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/22/colleagues\"\n                    }\n                },\n                \"team-memberships\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/22/relationships/team-memberships\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/22/team-memberships\"\n                    }\n                },\n                \"picked-questions\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/22/relationships/picked-questions\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/22/picked-questions\"\n                    }\n                },\n                \"requisition\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/22/relationships/requisition\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/22/requisition\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"21\",\n            \"type\": \"jobs\",\n            \"links\": {\n                \"careersite-job-url\": \"https://career.teamtailor.localhost/jobs/21-forward-specialist\",\n                \"careersite-job-apply-url\": \"https://career.teamtailor.localhost/jobs/21-forward-specialist/applications/new\",\n                \"careersite-job-apply-iframe-url\": \"https://career.teamtailor.localhost/jobs/21-forward-specialist/applications/new?iframe=true\",\n                \"self\": \"https://api.teamtailor.localhost/v1/jobs/21\"\n            },\n            \"attributes\": {\n                \"apply-button-text\": \"\",\n                \"body\": \"<p>Apto appello auctus. Angulus asporto comitatus. Dolore audax inventore.</p><p>Tribuo et asporto. Conatus ustulo coepi. Qui natus thesis.</p><h2>Non ad nostrum.</h2><p>Derideo tandem cruentus. Blanditiis debeo caelum. Coepi cotidie aegre.</p><p>Valens nihil adultus. Vigilo derideo credo. Ventosus artificiose summisse.</p>\",\n                \"end-date\": null,\n                \"human-status\": \"published\",\n                \"internal\": false,\n                \"picture\": null,\n                \"pinned\": false,\n                \"start-date\": null,\n                \"status\": \"open\",\n                \"tags\": [],\n                \"title\": \"Forward Specialist\",\n                \"pitch\": \"\",\n                \"external-application-url\": \"\",\n                \"name-requirement\": \"optional\",\n                \"resume-requirement\": \"optional\",\n                \"cover-letter-requirement\": \"optional\",\n                \"phone-requirement\": \"optional\",\n                \"created-at\": \"2020-10-30T10:33:09.023+01:00\",\n                \"updated-at\": \"2020-10-30T10:33:09.023+01:00\",\n                \"sharing-image-layout\": \"default\",\n                \"mailbox\": \"job-e2bf1265-bce7-4f79-869e-bde256edf5af@inbound.teamtailor.com\",\n                \"remote-status\": \"none\",\n                \"template-name\": null\n            },\n            \"relationships\": {\n                \"activities\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/21/relationships/activities\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/21/activities\"\n                    }\n                },\n                \"division\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/21/relationships/division\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/21/division\"\n                    }\n                },\n                \"department\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/21/relationships/department\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/21/department\"\n                    }\n                },\n                \"role\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/21/relationships/role\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/21/role\"\n                    }\n                },\n                \"location\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/21/relationships/location\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/21/location\"\n                    }\n                },\n                \"locations\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/21/relationships/locations\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/21/locations\"\n                    }\n                },\n                \"regions\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/21/relationships/regions\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/21/regions\"\n                    }\n                },\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/21/relationships/user\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/21/user\"\n                    }\n                },\n                \"questions\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/21/relationships/questions\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/21/questions\"\n                    }\n                },\n                \"candidates\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/21/relationships/candidates\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/21/candidates\"\n                    }\n                },\n                \"stages\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/21/relationships/stages\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/21/stages\"\n                    }\n                },\n                \"colleagues\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/21/relationships/colleagues\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/21/colleagues\"\n                    }\n                },\n                \"team-memberships\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/21/relationships/team-memberships\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/21/team-memberships\"\n                    }\n                },\n                \"picked-questions\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/21/relationships/picked-questions\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/21/picked-questions\"\n                    }\n                },\n                \"requisition\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/21/relationships/requisition\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/21/requisition\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"20\",\n            \"type\": \"jobs\",\n            \"links\": {\n                \"careersite-job-url\": \"https://career.teamtailor.localhost/jobs/20-healthcare-officer\",\n                \"careersite-job-apply-url\": \"https://career.teamtailor.localhost/jobs/20-healthcare-officer/applications/new\",\n                \"careersite-job-apply-iframe-url\": \"https://career.teamtailor.localhost/jobs/20-healthcare-officer/applications/new?iframe=true\",\n                \"self\": \"https://api.teamtailor.localhost/v1/jobs/20\"\n            },\n            \"attributes\": {\n                \"apply-button-text\": null,\n                \"body\": \"<p>Nostrum tabgo armarium. Antea dignissimos curis. Saepe peior carus.</p><p>Adsum tutamen adiuvo. Quaerat conatus curis. Reprehenderit comburo alias.</p><p>Coniuratio agnosco eius. Autem custodia temperantia. Magni tum sollers.</p><h2>Ratione ad reprehenderit maxime ducimus quibusdam.</h2><p>Bardus decretum odio. Beatus triginta sumo. Denique ut vergo.</p><p>Appositus sapiente et. Antepono conscendo volva. Cohaero corporis capillus.</p><p>Urbs qui subito. Voluptatem celer thymbra. Desidero temptatio aliqua.</p><p>Totidem similique administratio. Basium vero conscendo. Vesica tristis vociferor.</p>\",\n                \"end-date\": null,\n                \"human-status\": \"published\",\n                \"internal\": false,\n                \"picture\": null,\n                \"pinned\": false,\n                \"start-date\": null,\n                \"status\": \"open\",\n                \"tags\": [],\n                \"title\": \"Healthcare Officer\",\n                \"pitch\": null,\n                \"external-application-url\": null,\n                \"name-requirement\": \"optional\",\n                \"resume-requirement\": \"optional\",\n                \"cover-letter-requirement\": \"optional\",\n                \"phone-requirement\": \"optional\",\n                \"created-at\": \"2020-10-30T10:33:07.539+01:00\",\n                \"updated-at\": \"2020-10-30T10:33:07.539+01:00\",\n                \"sharing-image-layout\": \"default\",\n                \"mailbox\": \"job-8ca2da71-0248-4c6b-9424-b27b01512520@inbound.teamtailor.com\",\n                \"remote-status\": \"none\",\n                \"template-name\": null\n            },\n            \"relationships\": {\n                \"activities\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/20/relationships/activities\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/20/activities\"\n                    }\n                },\n                \"division\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/20/relationships/division\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/20/division\"\n                    }\n                },\n                \"department\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/20/relationships/department\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/20/department\"\n                    }\n                },\n                \"role\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/20/relationships/role\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/20/role\"\n                    }\n                },\n                \"location\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/20/relationships/location\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/20/location\"\n                    }\n                },\n                \"locations\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/20/relationships/locations\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/20/locations\"\n                    }\n                },\n                \"regions\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/20/relationships/regions\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/20/regions\"\n                    }\n                },\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/20/relationships/user\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/20/user\"\n                    }\n                },\n                \"questions\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/20/relationships/questions\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/20/questions\"\n                    }\n                },\n                \"candidates\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/20/relationships/candidates\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/20/candidates\"\n                    }\n                },\n                \"stages\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/20/relationships/stages\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/20/stages\"\n                    }\n                },\n                \"colleagues\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/20/relationships/colleagues\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/20/colleagues\"\n                    }\n                },\n                \"team-memberships\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/20/relationships/team-memberships\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/20/team-memberships\"\n                    }\n                },\n                \"picked-questions\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/20/relationships/picked-questions\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/20/picked-questions\"\n                    }\n                },\n                \"requisition\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/20/relationships/requisition\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/20/requisition\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"19\",\n            \"type\": \"jobs\",\n            \"links\": {\n                \"careersite-job-url\": \"https://career.teamtailor.localhost/jobs/19-direct-manager\",\n                \"careersite-job-apply-url\": \"https://career.teamtailor.localhost/jobs/19-direct-manager/applications/new\",\n                \"careersite-job-apply-iframe-url\": \"https://career.teamtailor.localhost/jobs/19-direct-manager/applications/new?iframe=true\",\n                \"self\": \"https://api.teamtailor.localhost/v1/jobs/19\"\n            },\n            \"attributes\": {\n                \"apply-button-text\": null,\n                \"body\": \"<p>Demulceo atrocitas desino. Tripudio caecus cunabula. Apostolus aestivus crepusculum.</p><p>Demo ulterius delego. Agnosco dicta textus. Caveo caecus tabgo.</p><h2>Et odio dicta voluptatibus architecto.</h2><p>Quia acer auris. Tepidus ara calculus. Pectus caelestis quas.</p><p>Adeptio desino veniam. Qui recusandae terebro. Aliqua casus asperiores.</p>\",\n                \"end-date\": null,\n                \"human-status\": \"published\",\n                \"internal\": false,\n                \"picture\": null,\n                \"pinned\": false,\n                \"start-date\": null,\n                \"status\": \"open\",\n                \"tags\": [\n                    \"Community-Services\"\n                ],\n                \"title\": \"Direct Manager\",\n                \"pitch\": null,\n                \"external-application-url\": null,\n                \"name-requirement\": \"optional\",\n                \"resume-requirement\": \"optional\",\n                \"cover-letter-requirement\": \"optional\",\n                \"phone-requirement\": \"optional\",\n                \"created-at\": \"2020-10-30T10:33:06.021+01:00\",\n                \"updated-at\": \"2020-10-30T10:33:06.021+01:00\",\n                \"sharing-image-layout\": \"default\",\n                \"mailbox\": \"job-3238ae19-4f86-4200-82a5-dc2f29ef760c@inbound.teamtailor.com\",\n                \"remote-status\": \"none\",\n                \"template-name\": null\n            },\n            \"relationships\": {\n                \"activities\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/19/relationships/activities\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/19/activities\"\n                    }\n                },\n                \"division\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/19/relationships/division\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/19/division\"\n                    }\n                },\n                \"department\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/19/relationships/department\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/19/department\"\n                    }\n                },\n                \"role\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/19/relationships/role\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/19/role\"\n                    }\n                },\n                \"location\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/19/relationships/location\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/19/location\"\n                    }\n                },\n                \"locations\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/19/relationships/locations\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/19/locations\"\n                    }\n                },\n                \"regions\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/19/relationships/regions\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/19/regions\"\n                    }\n                },\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/19/relationships/user\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/19/user\"\n                    }\n                },\n                \"questions\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/19/relationships/questions\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/19/questions\"\n                    }\n                },\n                \"candidates\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/19/relationships/candidates\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/19/candidates\"\n                    }\n                },\n                \"stages\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/19/relationships/stages\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/19/stages\"\n                    }\n                },\n                \"colleagues\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/19/relationships/colleagues\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/19/colleagues\"\n                    }\n                },\n                \"team-memberships\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/19/relationships/team-memberships\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/19/team-memberships\"\n                    }\n                },\n                \"picked-questions\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/19/relationships/picked-questions\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/19/picked-questions\"\n                    }\n                },\n                \"requisition\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/19/relationships/requisition\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/19/requisition\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"18\",\n            \"type\": \"jobs\",\n            \"links\": {\n                \"careersite-job-url\": \"https://career.teamtailor.localhost/jobs/18-marketing-architect\",\n                \"careersite-job-apply-url\": \"https://career.teamtailor.localhost/jobs/18-marketing-architect/applications/new\",\n                \"careersite-job-apply-iframe-url\": \"https://career.teamtailor.localhost/jobs/18-marketing-architect/applications/new?iframe=true\",\n                \"self\": \"https://api.teamtailor.localhost/v1/jobs/18\"\n            },\n            \"attributes\": {\n                \"apply-button-text\": null,\n                \"body\": \"<p>Abutor terra terreo. Solum enim terminatio. Calamitas vinum est.</p><p>Sollicito attonbitus aureus. Turbo ut deficio. Vesper congregatio ullus.</p><p>Decens aeneus degero. Avoco auditor temporibus. Collum pariatur sapiente.</p><p>Cicuta debilito suus. Cornu accipio necessitatibus. Inflammatio pectus tutis.</p><h2>Deleniti porro et blanditiis.</h2><p>Thymum arbor credo. Rerum eos cometes. Ago theca xiphias.</p><p>Corpus vespillo absque. Abstergo desparatus verbera. Doloribus cibus verbera.</p><p>Turpis curvo summa. Tabesco aperiam provident. Creator stella concedo.</p><p>Tutis solitudo corrumpo. Caveo decens usus. Delectus brevis thesis.</p>\",\n                \"end-date\": null,\n                \"human-status\": \"published\",\n                \"internal\": false,\n                \"picture\": null,\n                \"pinned\": false,\n                \"start-date\": null,\n                \"status\": \"open\",\n                \"tags\": [],\n                \"title\": \"Marketing Architect\",\n                \"pitch\": null,\n                \"external-application-url\": null,\n                \"name-requirement\": \"optional\",\n                \"resume-requirement\": \"optional\",\n                \"cover-letter-requirement\": \"optional\",\n                \"phone-requirement\": \"optional\",\n                \"created-at\": \"2020-10-30T10:33:04.410+01:00\",\n                \"updated-at\": \"2020-10-30T10:33:04.410+01:00\",\n                \"sharing-image-layout\": \"default\",\n                \"mailbox\": \"job-17d675fb-f0a5-4b41-bb3e-44f2c16611db@inbound.teamtailor.com\",\n                \"remote-status\": \"none\",\n                \"template-name\": null\n            },\n            \"relationships\": {\n                \"activities\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/18/relationships/activities\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/18/activities\"\n                    }\n                },\n                \"division\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/18/relationships/division\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/18/division\"\n                    }\n                },\n                \"department\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/18/relationships/department\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/18/department\"\n                    }\n                },\n                \"role\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/18/relationships/role\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/18/role\"\n                    }\n                },\n                \"location\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/18/relationships/location\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/18/location\"\n                    }\n                },\n                \"locations\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/18/relationships/locations\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/18/locations\"\n                    }\n                },\n                \"regions\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/18/relationships/regions\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/18/regions\"\n                    }\n                },\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/18/relationships/user\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/18/user\"\n                    }\n                },\n                \"questions\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/18/relationships/questions\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/18/questions\"\n                    }\n                },\n                \"candidates\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/18/relationships/candidates\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/18/candidates\"\n                    }\n                },\n                \"stages\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/18/relationships/stages\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/18/stages\"\n                    }\n                },\n                \"colleagues\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/18/relationships/colleagues\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/18/colleagues\"\n                    }\n                },\n                \"team-memberships\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/18/relationships/team-memberships\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/18/team-memberships\"\n                    }\n                },\n                \"picked-questions\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/18/relationships/picked-questions\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/18/picked-questions\"\n                    }\n                },\n                \"requisition\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/18/relationships/requisition\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/18/requisition\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"17\",\n            \"type\": \"jobs\",\n            \"links\": {\n                \"careersite-job-url\": \"https://career.teamtailor.localhost/jobs/17-community-services-specialist\",\n                \"careersite-job-apply-url\": \"https://career.teamtailor.localhost/jobs/17-community-services-specialist/applications/new\",\n                \"careersite-job-apply-iframe-url\": \"https://career.teamtailor.localhost/jobs/17-community-services-specialist/applications/new?iframe=true\",\n                \"self\": \"https://api.teamtailor.localhost/v1/jobs/17\"\n            },\n            \"attributes\": {\n                \"apply-button-text\": null,\n                \"body\": \"<p>Coadunatio collum cimentarius. Aestus creptio arma. Sumo capto ducimus.</p><p>Uterque tollo ipsa. Voco avoco uterque. Decerno exercitationem provident.</p><p>Odio uxor valetudo. Terra tres debitis. Adstringo crudelis credo.</p><p>Aurum vita verecundia. Nobis debitis aliqua. Attollo adinventitias amita.</p><p>Totidem speculum aut. Suus numquam sub. Compono theatrum ea.</p><p>Demens vesco vulpes. Amitto condico pel. Sint curiositas consequatur.</p><p>Vulgus taceo defluo. Demonstro volubilis canis. Eveniet confido voluptas.</p><h2>Voluptatem aut est quia.</h2><p>Decor denique sonitus. Magni calamitas tonsor. Curia templum id.</p><p>Cerno sit aro. Cunae adsum arbor. Calamitas comparo derelinquo.</p><p>Impedit tepidus ex. Officiis demum debitis. Curvus quo et.</p><p>Tempore contego vitae. Deprecator tabula et. Coadunatio curtus vorago.</p><p>Vero pectus caput. Est tenax nihil. Quas corporis facere.</p><p>Timor caterva conitor. Totam omnis ullus. Adduco tabernus suadeo.</p><p>Totus socius sint. Laboriosam ascit centum. Cursim arcus minus.</p><p>Vita sint at. Supplanto ager aer. Voluptatum arguo explicabo.</p>\",\n                \"end-date\": null,\n                \"human-status\": \"published\",\n                \"internal\": false,\n                \"picture\": null,\n                \"pinned\": false,\n                \"start-date\": null,\n                \"status\": \"open\",\n                \"tags\": [],\n                \"title\": \"Community-Services Specialist\",\n                \"pitch\": null,\n                \"external-application-url\": null,\n                \"name-requirement\": \"optional\",\n                \"resume-requirement\": \"optional\",\n                \"cover-letter-requirement\": \"optional\",\n                \"phone-requirement\": \"optional\",\n                \"created-at\": \"2020-10-30T10:33:02.829+01:00\",\n                \"updated-at\": \"2020-10-30T10:33:02.829+01:00\",\n                \"sharing-image-layout\": \"default\",\n                \"mailbox\": \"job-5c13045e-24b3-4ac5-a2e5-560924f5b24c@inbound.teamtailor.com\",\n                \"remote-status\": \"none\",\n                \"template-name\": null\n            },\n            \"relationships\": {\n                \"activities\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/17/relationships/activities\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/17/activities\"\n                    }\n                },\n                \"division\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/17/relationships/division\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/17/division\"\n                    }\n                },\n                \"department\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/17/relationships/department\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/17/department\"\n                    }\n                },\n                \"role\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/17/relationships/role\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/17/role\"\n                    }\n                },\n                \"location\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/17/relationships/location\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/17/location\"\n                    }\n                },\n                \"locations\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/17/relationships/locations\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/17/locations\"\n                    }\n                },\n                \"regions\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/17/relationships/regions\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/17/regions\"\n                    }\n                },\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/17/relationships/user\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/17/user\"\n                    }\n                },\n                \"questions\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/17/relationships/questions\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/17/questions\"\n                    }\n                },\n                \"candidates\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/17/relationships/candidates\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/17/candidates\"\n                    }\n                },\n                \"stages\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/17/relationships/stages\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/17/stages\"\n                    }\n                },\n                \"colleagues\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/17/relationships/colleagues\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/17/colleagues\"\n                    }\n                },\n                \"team-memberships\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/17/relationships/team-memberships\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/17/team-memberships\"\n                    }\n                },\n                \"picked-questions\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/17/relationships/picked-questions\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/17/picked-questions\"\n                    }\n                },\n                \"requisition\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/17/relationships/requisition\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/17/requisition\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"16\",\n            \"type\": \"jobs\",\n            \"links\": {\n                \"careersite-job-url\": \"https://career.teamtailor.localhost/jobs/16-human-mining-coordinator\",\n                \"careersite-job-apply-url\": \"https://career.teamtailor.localhost/jobs/16-human-mining-coordinator/applications/new\",\n                \"careersite-job-apply-iframe-url\": \"https://career.teamtailor.localhost/jobs/16-human-mining-coordinator/applications/new?iframe=true\",\n                \"self\": \"https://api.teamtailor.localhost/v1/jobs/16\"\n            },\n            \"attributes\": {\n                \"apply-button-text\": null,\n                \"body\": \"<p>Deputo aut tenetur. Subseco caritas vomica. Admitto circumvenio testimonium.</p><p>Adduco demergo canonicus. Aliqua aliquam subvenio. Argentum dens degero.</p><p>Allatus defluo velit. Synagoga antepono solus. Dicta teneo coma.</p><p>Voro amplitudo qui. Caries sit strues. Sol vilicus sperno.</p><p>Vomer celebrer ut. Dolor crepusculum saepe. Subnecto triduana amitto.</p><h2>Nam delectus sit.</h2><p>Illo deserunt repellat. Damnatio ulterius coruscus. Voluptatem audax vomer.</p><p>Sunt contigo tredecim. Administratio utroque depopulo. Velit vilis arx.</p><p>Aranea confido dolores. Vulgivagus sapiente advoco. Accusator tersus ab.</p><p>Utique sed vacuus. Unde subnecto arto. Supplanto desparatus recusandae.</p><p>Adimpleo strues patria. Damnatio cubitum cuius. Antea tonsor combibo.</p>\",\n                \"end-date\": null,\n                \"human-status\": \"published\",\n                \"internal\": false,\n                \"picture\": null,\n                \"pinned\": false,\n                \"start-date\": null,\n                \"status\": \"open\",\n                \"tags\": [\n                    \"Advertising\",\n                    \"Part-time\"\n                ],\n                \"title\": \"Human Mining Coordinator\",\n                \"pitch\": null,\n                \"external-application-url\": null,\n                \"name-requirement\": \"optional\",\n                \"resume-requirement\": \"optional\",\n                \"cover-letter-requirement\": \"optional\",\n                \"phone-requirement\": \"optional\",\n                \"created-at\": \"2020-10-30T10:33:01.022+01:00\",\n                \"updated-at\": \"2020-10-30T10:33:01.022+01:00\",\n                \"sharing-image-layout\": \"default\",\n                \"mailbox\": \"job-3c63ea8f-14d0-4164-bc3a-0c5592b6baca@inbound.teamtailor.com\",\n                \"remote-status\": \"none\",\n                \"template-name\": null\n            },\n            \"relationships\": {\n                \"activities\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/16/relationships/activities\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/16/activities\"\n                    }\n                },\n                \"division\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/16/relationships/division\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/16/division\"\n                    }\n                },\n                \"department\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/16/relationships/department\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/16/department\"\n                    }\n                },\n                \"role\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/16/relationships/role\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/16/role\"\n                    }\n                },\n                \"location\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/16/relationships/location\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/16/location\"\n                    }\n                },\n                \"locations\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/16/relationships/locations\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/16/locations\"\n                    }\n                },\n                \"regions\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/16/relationships/regions\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/16/regions\"\n                    }\n                },\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/16/relationships/user\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/16/user\"\n                    }\n                },\n                \"questions\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/16/relationships/questions\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/16/questions\"\n                    }\n                },\n                \"candidates\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/16/relationships/candidates\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/16/candidates\"\n                    }\n                },\n                \"stages\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/16/relationships/stages\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/16/stages\"\n                    }\n                },\n                \"colleagues\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/16/relationships/colleagues\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/16/colleagues\"\n                    }\n                },\n                \"team-memberships\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/16/relationships/team-memberships\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/16/team-memberships\"\n                    }\n                },\n                \"picked-questions\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/16/relationships/picked-questions\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/16/picked-questions\"\n                    }\n                },\n                \"requisition\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/16/relationships/requisition\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/16/requisition\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"15\",\n            \"type\": \"jobs\",\n            \"links\": {\n                \"careersite-job-url\": \"https://career.teamtailor.localhost/jobs/15-dynamic-it-engineer\",\n                \"careersite-job-apply-url\": \"https://career.teamtailor.localhost/jobs/15-dynamic-it-engineer/applications/new\",\n                \"careersite-job-apply-iframe-url\": \"https://career.teamtailor.localhost/jobs/15-dynamic-it-engineer/applications/new?iframe=true\",\n                \"self\": \"https://api.teamtailor.localhost/v1/jobs/15\"\n            },\n            \"attributes\": {\n                \"apply-button-text\": null,\n                \"body\": \"<p>Totidem validus adsuesco. Decet calcar cunabula. Aqua corrumpo alius.</p><p>Ipsa numquam deporto. Crudelis desino claustrum. Usus vorago pel.</p><p>Sunt attollo crux. Animi tego unde. Ancilla demum tui.</p><p>Tam vado laudantium. Temptatio socius turpis. Vapulus virga coruscus.</p><p>Benigne bardus ducimus. Delibero sit defero. Textor sit consequuntur.</p><p>Convoco terminatio odio. Et dignissimos cito. Enim culpa cunae.</p><h2>Est quia at aut.</h2><p>Cupiditate cito subseco. Teres ad tricesimus. Vero brevis conservo.</p><p>Beatae animadverto censura. Eveniet caritas praesentium. Ut decimus ex.</p><p>Curvus triduana timor. Acies baiulus animi. Tremo clamo voro.</p><p>Sono vetus ceno. Aut vita circumvenio. Ademptio occaecati admoveo.</p><p>Ultra spiculum tabula. Denuo dolorem termes. Tollo temeritas tyrannus.</p><p>Magni artificiose despecto. Ullam capitulus xiphias. Votum vulariter derelinquo.</p>\",\n                \"end-date\": null,\n                \"human-status\": \"published\",\n                \"internal\": false,\n                \"picture\": null,\n                \"pinned\": false,\n                \"start-date\": null,\n                \"status\": \"open\",\n                \"tags\": [],\n                \"title\": \"Dynamic IT Engineer\",\n                \"pitch\": null,\n                \"external-application-url\": null,\n                \"name-requirement\": \"optional\",\n                \"resume-requirement\": \"optional\",\n                \"cover-letter-requirement\": \"optional\",\n                \"phone-requirement\": \"optional\",\n                \"created-at\": \"2020-10-30T10:32:59.609+01:00\",\n                \"updated-at\": \"2020-10-30T10:32:59.609+01:00\",\n                \"sharing-image-layout\": \"default\",\n                \"mailbox\": \"job-998716bf-5ed9-42f3-98a7-a765fbeecf28@inbound.teamtailor.com\",\n                \"remote-status\": \"none\",\n                \"template-name\": null\n            },\n            \"relationships\": {\n                \"activities\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/15/relationships/activities\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/15/activities\"\n                    }\n                },\n                \"division\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/15/relationships/division\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/15/division\"\n                    }\n                },\n                \"department\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/15/relationships/department\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/15/department\"\n                    }\n                },\n                \"role\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/15/relationships/role\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/15/role\"\n                    }\n                },\n                \"location\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/15/relationships/location\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/15/location\"\n                    }\n                },\n                \"locations\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/15/relationships/locations\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/15/locations\"\n                    }\n                },\n                \"regions\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/15/relationships/regions\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/15/regions\"\n                    }\n                },\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/15/relationships/user\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/15/user\"\n                    }\n                },\n                \"questions\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/15/relationships/questions\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/15/questions\"\n                    }\n                },\n                \"candidates\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/15/relationships/candidates\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/15/candidates\"\n                    }\n                },\n                \"stages\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/15/relationships/stages\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/15/stages\"\n                    }\n                },\n                \"colleagues\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/15/relationships/colleagues\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/15/colleagues\"\n                    }\n                },\n                \"team-memberships\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/15/relationships/team-memberships\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/15/team-memberships\"\n                    }\n                },\n                \"picked-questions\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/15/relationships/picked-questions\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/15/picked-questions\"\n                    }\n                },\n                \"requisition\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/15/relationships/requisition\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/15/requisition\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"14\",\n            \"type\": \"jobs\",\n            \"links\": {\n                \"careersite-job-url\": \"https://career.teamtailor.localhost/jobs/14-human-it-technician\",\n                \"careersite-job-apply-url\": \"https://career.teamtailor.localhost/jobs/14-human-it-technician/applications/new\",\n                \"careersite-job-apply-iframe-url\": \"https://career.teamtailor.localhost/jobs/14-human-it-technician/applications/new?iframe=true\",\n                \"self\": \"https://api.teamtailor.localhost/v1/jobs/14\"\n            },\n            \"attributes\": {\n                \"apply-button-text\": null,\n                \"body\": \"<p></p><h2>Assumenda nesciunt ad sequi quisquam.</h2><p>Adulescens aut libero. Certe aut despirmatio. Acervus tero est.</p>\",\n                \"end-date\": null,\n                \"human-status\": \"published\",\n                \"internal\": false,\n                \"picture\": null,\n                \"pinned\": false,\n                \"start-date\": null,\n                \"status\": \"open\",\n                \"tags\": [],\n                \"title\": \"Human IT Technician\",\n                \"pitch\": null,\n                \"external-application-url\": null,\n                \"name-requirement\": \"optional\",\n                \"resume-requirement\": \"optional\",\n                \"cover-letter-requirement\": \"optional\",\n                \"phone-requirement\": \"optional\",\n                \"created-at\": \"2020-10-30T10:32:57.790+01:00\",\n                \"updated-at\": \"2020-10-30T10:32:59.609+01:00\",\n                \"sharing-image-layout\": \"default\",\n                \"mailbox\": \"job-c1d5b90f-6742-4acf-a3da-3c40fac7d758@inbound.teamtailor.com\",\n                \"remote-status\": \"none\",\n                \"template-name\": null\n            },\n            \"relationships\": {\n                \"activities\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/14/relationships/activities\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/14/activities\"\n                    }\n                },\n                \"division\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/14/relationships/division\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/14/division\"\n                    }\n                },\n                \"department\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/14/relationships/department\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/14/department\"\n                    }\n                },\n                \"role\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/14/relationships/role\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/14/role\"\n                    }\n                },\n                \"location\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/14/relationships/location\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/14/location\"\n                    }\n                },\n                \"locations\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/14/relationships/locations\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/14/locations\"\n                    }\n                },\n                \"regions\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/14/relationships/regions\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/14/regions\"\n                    }\n                },\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/14/relationships/user\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/14/user\"\n                    }\n                },\n                \"questions\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/14/relationships/questions\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/14/questions\"\n                    }\n                },\n                \"candidates\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/14/relationships/candidates\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/14/candidates\"\n                    }\n                },\n                \"stages\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/14/relationships/stages\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/14/stages\"\n                    }\n                },\n                \"colleagues\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/14/relationships/colleagues\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/14/colleagues\"\n                    }\n                },\n                \"team-memberships\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/14/relationships/team-memberships\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/14/team-memberships\"\n                    }\n                },\n                \"picked-questions\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/14/relationships/picked-questions\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/14/picked-questions\"\n                    }\n                },\n                \"requisition\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/jobs/14/relationships/requisition\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/jobs/14/requisition\"\n                    }\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"texts\": {\n            \"prev\": \"Previous\",\n            \"next\": \"Next\"\n        },\n        \"record-count\": 22,\n        \"page-count\": 3\n    },\n    \"links\": {\n        \"first\": \"https://api.teamtailor.localhost/v1/jobs?page%5Bnumber%5D=1&page%5Bsize%5D=10\",\n        \"next\": \"https://api.teamtailor.localhost/v1/jobs?page%5Bnumber%5D=2&page%5Bsize%5D=10\",\n        \"last\": \"https://api.teamtailor.localhost/v1/jobs?page%5Bnumber%5D=3&page%5Bsize%5D=10\"\n    }\n}"}],"_postman_id":"a0351972-8394-4646-95f0-56a4c4e3886d"},{"name":"Show job","id":"2c2263a8-03bf-456b-9dcf-fea023ab15e6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/jobs/1","description":"<h2 id=\"show-a-job\">Show a Job</h2>\n<p>Retreive a specific job.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>The job's id.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","jobs","1"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"de78e6b5-2117-44ee-9378-39f726d8955e","name":"Show job","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"}],"url":"https://api.teamtailor.com/v1/jobs/1"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"1\",\n        \"type\": \"jobs\",\n        \"links\": {\n            \"careersite-job-url\": \"https://career.teamtailor.localhost/jobs/1-account-manager\",\n            \"careersite-job-apply-url\": \"https://career.teamtailor.localhost/jobs/1-account-manager/applications/new\",\n            \"careersite-job-apply-iframe-url\": \"https://career.teamtailor.localhost/jobs/1-account-manager/applications/new?iframe=true\",\n            \"self\": \"https://api.teamtailor.localhost/v1/jobs/1\"\n        },\n        \"attributes\": {\n            \"apply-button-text\": null,\n            \"body\": \"<p>hello</p>\",\n            \"end-date\": null,\n            \"human-status\": \"published\",\n            \"internal\": false,\n            \"picture\": null,\n            \"pinned\": false,\n            \"start-date\": null,\n            \"status\": \"open\",\n            \"tags\": [],\n            \"title\": \"Account Manager\",\n            \"internal-name\": \"EMEA Account Manager\",\n            \"pitch\": \"Become part of something great!\",\n            \"external-application-url\": null,\n            \"name-requirement\": \"optional\",\n            \"resume-requirement\": \"optional\",\n            \"cover-letter-requirement\": \"optional\",\n            \"phone-requirement\": \"optional\",\n            \"created-at\": \"2020-12-15T17:03:07.113+01:00\",\n            \"updated-at\": \"2020-12-15T17:03:07.113+01:00\",\n            \"sharing-image-layout\": \"default\",\n            \"mailbox\": \"job-24a8e681-57d5-4d05-a715-29b8d0fbf139@inbound.teamtailor.com\",\n            \"remote-status\": \"none\",\n            \"template-name\": null\n        },\n        \"relationships\": {\n            \"activities\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/jobs/1/relationships/activities\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/jobs/1/activities\"\n                }\n            },\n            \"division\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/jobs/1/relationships/division\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/jobs/1/division\"\n                }\n            },\n            \"department\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/jobs/1/relationships/department\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/jobs/1/department\"\n                }\n            },\n            \"role\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/jobs/1/relationships/role\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/jobs/1/role\"\n                }\n            },\n            \"location\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/jobs/1/relationships/location\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/jobs/1/location\"\n                }\n            },\n            \"locations\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/jobs/1/relationships/locations\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/jobs/1/locations\"\n                }\n            },\n            \"regions\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/jobs/1/relationships/regions\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/jobs/1/regions\"\n                }\n            },\n            \"user\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/jobs/1/relationships/user\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/jobs/1/user\"\n                }\n            },\n            \"questions\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/jobs/1/relationships/questions\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/jobs/1/questions\"\n                }\n            },\n            \"candidates\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/jobs/1/relationships/candidates\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/jobs/1/candidates\"\n                }\n            },\n            \"stages\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/jobs/1/relationships/stages\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/jobs/1/stages\"\n                }\n            },\n            \"colleagues\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/jobs/1/relationships/colleagues\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/jobs/1/colleagues\"\n                }\n            },\n            \"team-memberships\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/jobs/1/relationships/team-memberships\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/jobs/1/team-memberships\"\n                }\n            },\n            \"picked-questions\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/jobs/1/relationships/picked-questions\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/jobs/1/picked-questions\"\n                }\n            },\n            \"requisition\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/jobs/1/relationships/requisition\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/jobs/1/requisition\"\n                }\n            }\n        }\n    },\n    \"meta\": {\n        \"texts\": {\n            \"prev\": \"Previous\",\n            \"next\": \"Next\"\n        }\n    }\n}"}],"_postman_id":"2c2263a8-03bf-456b-9dcf-fea023ab15e6"},{"name":"Create job","id":"616cf496-f159-475a-908b-d8b7683d1f46","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"data\": {\n    \"type\": \"jobs\",\n    \"attributes\": {\n      \"title\": \"Account Manager\",\n      \"pitch\": \"Become part of something great!\",\n      \"body\": \"<p>hello</p>\"\n    },\n    \"relationships\": {\n      \"user\": {\n        \"data\": {\n          \"id\": 1,\n          \"type\": \"users\"\n        }\n      },\n      \"department\": {\n        \"data\": {\n          \"id\": 1,\n          \"type\": \"departments\"\n        }\n      },\n      \"locations\": {\n        \"data\": [\n          {\n            \"id\": 1,\n            \"type\": \"locations\"\n          }\n        ]\n      }\n    }\n  }\n}\n"},"url":"https://api.teamtailor.com/v1/jobs","description":"<h2 id=\"create-job\">Create Job</h2>\n<p>Create a new job.</p>\n<aside>\n  <code>user</code>, <code>title</code> and <code>body</code> are required attributes to be able to save a new job.\n</aside>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","jobs"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"c09985ce-6e01-4f89-93fe-7fefaee3a1e5","name":"Create job","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"data\": {\n    \"type\": \"jobs\",\n    \"attributes\": {\n      \"title\": \"Account Manager\",\n      \"pitch\": \"Become part of something great!\",\n      \"body\": \"<p>hello</p>\"\n    },\n    \"relationships\": {\n      \"user\": {\n        \"data\": {\n          \"id\": 1,\n          \"type\": \"users\"\n        }\n      },\n      \"division\": {\n        \"data\": {\n          \"id\": 1,\n          \"type\": \"divisions\"\n        }\n      },\n      \"department\": {\n        \"data\": {\n          \"id\": 1,\n          \"type\": \"departments\"\n        }\n      },\n      \"locations\": {\n        \"data\": [\n          {\n            \"id\": 1,\n            \"type\": \"locations\"\n          }\n        ]\n      }\n    }\n  }\n}\n"},"url":"https://api.teamtailor.com/v1/jobs"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"25\",\n        \"type\": \"jobs\",\n        \"links\": {\n            \"careersite-job-url\": \"https://career.teamtailor.localhost/jobs/25-account-manager\",\n            \"careersite-job-apply-url\": \"https://career.teamtailor.localhost/jobs/25-account-manager/applications/new\",\n            \"careersite-job-apply-iframe-url\": \"https://career.teamtailor.localhost/jobs/25-account-manager/applications/new?iframe=true\",\n            \"self\": \"https://api.teamtailor.localhost/v1/jobs/25\"\n        },\n        \"attributes\": {\n            \"apply-button-text\": null,\n            \"body\": \"<p>hello</p>\",\n            \"end-date\": null,\n            \"human-status\": \"published\",\n            \"internal\": false,\n            \"picture\": null,\n            \"pinned\": false,\n            \"start-date\": null,\n            \"status\": \"open\",\n            \"tags\": [],\n            \"title\": \"Account Manager\",\n            \"internal-name\": \"EMEA Account manager\",\n            \"pitch\": \"Become part of something great!\",\n            \"external-application-url\": null,\n            \"name-requirement\": \"optional\",\n            \"resume-requirement\": \"optional\",\n            \"cover-letter-requirement\": \"optional\",\n            \"phone-requirement\": \"optional\",\n            \"created-at\": \"2020-12-15T17:03:07.113+01:00\",\n            \"updated-at\": \"2020-12-15T17:03:07.113+01:00\",\n            \"sharing-image-layout\": \"default\",\n            \"mailbox\": \"job-24a8e681-57d5-4d05-a715-29b8d0fbf139@inbound.teamtailor.com\",\n            \"remote-status\": \"none\"\n        },\n        \"relationships\": {\n            \"activities\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/jobs/25/relationships/activities\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/jobs/25/activities\"\n                }\n            },\n            \"division\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/jobs/25/relationships/division\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/jobs/25/division\"\n                }\n            },\n            \"department\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/jobs/25/relationships/department\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/jobs/25/department\"\n                }\n            },\n            \"role\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/jobs/25/relationships/role\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/jobs/25/role\"\n                }\n            },\n            \"location\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/jobs/25/relationships/location\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/jobs/25/location\"\n                }\n            },\n            \"locations\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/jobs/25/relationships/locations\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/jobs/25/locations\"\n                }\n            },\n            \"regions\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/jobs/25/relationships/regions\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/jobs/25/regions\"\n                }\n            },\n            \"user\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/jobs/25/relationships/user\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/jobs/25/user\"\n                }\n            },\n            \"questions\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/jobs/25/relationships/questions\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/jobs/25/questions\"\n                }\n            },\n            \"candidates\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/jobs/25/relationships/candidates\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/jobs/25/candidates\"\n                }\n            },\n            \"stages\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/jobs/25/relationships/stages\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/jobs/25/stages\"\n                }\n            },\n            \"colleagues\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/jobs/25/relationships/colleagues\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/jobs/25/colleagues\"\n                }\n            },\n            \"team-memberships\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/jobs/25/relationships/team-memberships\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/jobs/25/team-memberships\"\n                }\n            },\n            \"picked-questions\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/jobs/25/relationships/picked-questions\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/jobs/25/picked-questions\"\n                }\n            },\n            \"requisition\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/jobs/25/relationships/requisition\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/jobs/25/requisition\"\n                }\n            }\n        }\n    },\n    \"meta\": {\n        \"texts\": {\n            \"prev\": \"Previous\",\n            \"next\": \"Next\"\n        }\n    }\n}"}],"_postman_id":"616cf496-f159-475a-908b-d8b7683d1f46"},{"name":"Update job","id":"445ac301-3f89-49e2-9443-679283953e87","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"},{"key":"Content-Type","type":"text","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"id\": \"1\",\n        \"attributes\": {\n            \"title\": \"New Title\",\n            \"status\": \"unlisted\",\n            \"tags\": [\n                \"JavaScript\"\n            ]\n        },\n        \"type\": \"jobs\"\n    }\n}"},"url":"https://api.teamtailor.com/v1/jobs/1","description":"<h2 id=\"update-job\">Update Job</h2>\n<p>Change a job's attributes/relationships.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","jobs","1"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"23ad7cc9-4ce3-44f8-aaa8-b1faaa929cc3","name":"Update job","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"id\": \"1\",\n        \"attributes\": {\n            \"title\": \"New Title\",\n            \"status\": \"unlisted\",\n            \"tags\": [\n                \"JavaScript\"\n            ]\n        },\n        \"type\": \"jobs\"\n    }\n}"},"url":"https://api.teamtailor.com/v1/jobs/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"1\",\n        \"type\": \"jobs\",\n        \"links\": {\n            \"careersite-job-url\": \"https://career.teamtailor.localhost/jobs/1-new-title\",\n            \"careersite-job-apply-url\": \"https://career.teamtailor.localhost/jobs/1-new-title/applications/new?secret=7b4c9c28-4041-4136-ae65-e2a0550550cf\",\n            \"careersite-job-apply-iframe-url\": \"https://career.teamtailor.localhost/jobs/1-new-title/applications/new?iframe=true&secret=7b4c9c28-4041-4136-ae65-e2a0550550cf\",\n            \"self\": \"https://api.teamtailor.localhost/v1/jobs/1\"\n        },\n        \"attributes\": {\n            \"apply-button-text\": null,\n            \"body\": \"\",\n            \"end-date\": null,\n            \"human-status\": \"template\",\n            \"internal\": false,\n            \"picture\": null,\n            \"pinned\": false,\n            \"start-date\": null,\n            \"status\": \"unlisted\",\n            \"tags\": [\n                \"JavaScript\"\n            ],\n            \"title\": \"New Title\",\n            \"pitch\": null,\n            \"external-application-url\": null,\n            \"name-requirement\": \"optional\",\n            \"resume-requirement\": \"optional\",\n            \"cover-letter-requirement\": \"optional\",\n            \"phone-requirement\": \"optional\",\n            \"created-at\": \"2020-10-30T10:32:37.567+01:00\",\n            \"updated-at\": \"2020-10-30T10:32:37.567+01:00\",\n            \"sharing-image-layout\": \"default\",\n            \"mailbox\": \"job-7b4c9c28-4041-4136-ae65-e2a0550550cf@inbound.teamtailor.com\",\n            \"remote-status\": \"none\"\n        },\n        \"relationships\": {\n            \"activities\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/jobs/1/relationships/activities\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/jobs/1/activities\"\n                }\n            },\n            \"division\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/jobs/1/relationships/division\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/jobs/1/division\"\n                }\n            },\n            \"department\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/jobs/1/relationships/department\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/jobs/1/department\"\n                }\n            },\n            \"role\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/jobs/1/relationships/role\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/jobs/1/role\"\n                }\n            },\n            \"location\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/jobs/1/relationships/location\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/jobs/1/location\"\n                }\n            },\n            \"locations\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/jobs/1/relationships/locations\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/jobs/1/locations\"\n                }\n            },\n            \"regions\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/jobs/1/relationships/regions\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/jobs/1/regions\"\n                }\n            },\n            \"user\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/jobs/1/relationships/user\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/jobs/1/user\"\n                }\n            },\n            \"questions\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/jobs/1/relationships/questions\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/jobs/1/questions\"\n                }\n            },\n            \"candidates\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/jobs/1/relationships/candidates\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/jobs/1/candidates\"\n                }\n            },\n            \"stages\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/jobs/1/relationships/stages\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/jobs/1/stages\"\n                }\n            },\n            \"colleagues\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/jobs/1/relationships/colleagues\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/jobs/1/colleagues\"\n                }\n            },\n            \"team-memberships\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/jobs/1/relationships/team-memberships\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/jobs/1/team-memberships\"\n                }\n            },\n            \"picked-questions\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/jobs/1/relationships/picked-questions\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/jobs/1/picked-questions\"\n                }\n            },\n            \"requisition\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/jobs/1/relationships/requisition\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/jobs/1/requisition\"\n                }\n            }\n        }\n    },\n    \"meta\": {\n        \"texts\": {\n            \"prev\": \"Previous\",\n            \"next\": \"Next\"\n        }\n    }\n}"}],"_postman_id":"445ac301-3f89-49e2-9443-679283953e87"}],"id":"afd29ca3-689f-49a2-ba5d-d67f4ac4f757","description":"<p>This object represents the job ad and the job process in Teamtailor. You can retrieve a list or just a single job, update and create new jobs.</p>\n<h3 id=\"attributes\">Attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>title*</td>\n<td>string</td>\n<td>The title of the job ad</td>\n</tr>\n<tr>\n<td>internal-name</td>\n<td>string</td>\n<td>The job internal name</td>\n</tr>\n<tr>\n<td>pitch</td>\n<td>string</td>\n<td>The pitch of the job ad, displayed below the title</td>\n</tr>\n<tr>\n<td>body*</td>\n<td>string</td>\n<td>The ad text, simple html is supported</td>\n</tr>\n<tr>\n<td>apply-button-text</td>\n<td>string</td>\n<td>Custom text for apply button</td>\n</tr>\n<tr>\n<td>created-at</td>\n<td>date</td>\n<td>When job was first created. <strong>Requires admin permission.</strong></td>\n</tr>\n<tr>\n<td>updated-at</td>\n<td>date</td>\n<td>When job was last updated.</td>\n</tr>\n<tr>\n<td>end-date</td>\n<td>date</td>\n<td>The Job ad's expire date</td>\n</tr>\n<tr>\n<td>human-status</td>\n<td>string</td>\n<td>Human readable status of the job, can be one of the following: <code>archived</code>, <code>unlisted</code>, <code>expired</code>, <code>draft</code>, <code>published</code>, <code>scheduled</code> or <code>unsaved</code></td>\n</tr>\n<tr>\n<td>internal</td>\n<td>boolean</td>\n<td>True if internal job</td>\n</tr>\n<tr>\n<td>picture</td>\n<td>object</td>\n<td>Job ad's picture</td>\n</tr>\n<tr>\n<td>pinned</td>\n<td>boolean</td>\n<td><code>true</code> if the job is pinned to the top on the career site</td>\n</tr>\n<tr>\n<td>start-date</td>\n<td>date</td>\n<td>Scheduled date to publish the job ad</td>\n</tr>\n<tr>\n<td>status</td>\n<td>string</td>\n<td>The job's status, can be one of the following: <code>open</code>, <code>draft,</code> <code>archived</code>, <code>unlisted</code> or <code>temp</code></td>\n</tr>\n<tr>\n<td>tags</td>\n<td>array</td>\n<td>Array of string for each tag <strong>Requires admin permission.</strong></td>\n</tr>\n<tr>\n<td>external-application-url</td>\n<td>string</td>\n<td>Optional attribute for where candidates should be linked when applying for the job.</td>\n</tr>\n<tr>\n<td>name-requirement</td>\n<td>string</td>\n<td>Allowed options: <code>off</code>, <code>optional</code>, <code>required</code></td>\n</tr>\n<tr>\n<td>resume_requirement</td>\n<td>string</td>\n<td>Allowed options: <code>off</code>, <code>optional</code>, <code>required</code></td>\n</tr>\n<tr>\n<td>cover-letter-requirement</td>\n<td>string</td>\n<td>Allowed options: <code>off</code>, <code>optional</code>, <code>required</code></td>\n</tr>\n<tr>\n<td>phone-requirement</td>\n<td>string</td>\n<td>Allowed options: <code>off</code>, <code>optional</code>, <code>required</code></td>\n</tr>\n<tr>\n<td>mailbox</td>\n<td>string</td>\n<td>Job email <strong>Read only. Requires admin permission.</strong></td>\n</tr>\n<tr>\n<td>remote-status</td>\n<td>string</td>\n<td>The remote status of the job. Can be one of the following: <code>none</code>, <code>temporary</code>, <code>hybrid</code> or <code>fully</code></td>\n</tr>\n<tr>\n<td>currency</td>\n<td>string</td>\n<td>Ex. <code>SEK</code></td>\n</tr>\n<tr>\n<td>salary-time-unit</td>\n<td>string</td>\n<td>Allowed options: <code>monthly,</code> <code>hourly</code>, <code>yearly</code> , <code>daily</code></td>\n</tr>\n<tr>\n<td>min-salary</td>\n<td>integer</td>\n<td>Regular salary or min when range</td>\n</tr>\n<tr>\n<td>max-salary</td>\n<td>integer</td>\n<td>Pass this value to enable range salary option</td>\n</tr>\n<tr>\n<td>employment-type</td>\n<td>string</td>\n<td>Allowed options: <code>none</code>, <code>fully</code>, <code>part</code>, <code>contract</code>, <code>temporary</code>, <code>apprenticeship</code>, <code>internship</code>, <code>volunteer</code></td>\n</tr>\n<tr>\n<td>employment-level</td>\n<td>string</td>\n<td>Allowed options: <code>none</code>, <code>senior</code>, <code>mid</code>, <code>professionals</code>, <code>technicians</code>, <code>sales</code>, <code>administrative</code>, <code>support</code>, <code>craft</code>, <code>operatives</code>, <code>laborers</code>, <code>service</code></td>\n</tr>\n<tr>\n<td>language-code</td>\n<td>string</td>\n<td>ex 'ex'</td>\n</tr>\n<tr>\n<td>template-id</td>\n<td>integer</td>\n<td>optionally create from template</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"links\">Links</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Link</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>careersite-job-url</td>\n<td>View job on the Career site</td>\n</tr>\n<tr>\n<td>careersite-job-internal-url</td>\n<td>Secret link that will mark applications as internal</td>\n</tr>\n<tr>\n<td>careersite-job-apply-url</td>\n<td>URL to the application form</td>\n</tr>\n<tr>\n<td>careersite-job-apply-iframe-url</td>\n<td>URL for application iframe <code>src</code></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"relations\">Relations</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Relation</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>activities</td>\n<td>Activity log</td>\n</tr>\n<tr>\n<td>user*</td>\n<td>The recruiter</td>\n</tr>\n<tr>\n<td>division</td>\n<td>The division of the job</td>\n</tr>\n<tr>\n<td>department</td>\n<td>The department of the job</td>\n</tr>\n<tr>\n<td>role</td>\n<td>The role of the job</td>\n</tr>\n<tr>\n<td>locations</td>\n<td>Where the job is located</td>\n</tr>\n<tr>\n<td>questions</td>\n<td>The job's questions</td>\n</tr>\n<tr>\n<td>picked-questions</td>\n<td>Relation between job and question</td>\n</tr>\n<tr>\n<td>candidates</td>\n<td>Candidates who have applied to the job</td>\n</tr>\n<tr>\n<td>stages</td>\n<td>The recruitment stages of the job</td>\n</tr>\n<tr>\n<td>team-memberships</td>\n<td>The hiring team memberships</td>\n</tr>\n<tr>\n<td>colleagues</td>\n<td>The <code>users</code> that are displayed as colleagues of the job ad</td>\n</tr>\n<tr>\n<td>regions</td>\n<td>Regions based on where the job is located</td>\n</tr>\n<tr>\n<td>custom-fields</td>\n<td>The job's custom fields</td>\n</tr>\n<tr>\n<td>custom-field-values</td>\n<td>The job's custom field values</td>\n</tr>\n</tbody>\n</table>\n</div><p>*suggests that those attributes/relationships are required unless <code>job.status = 'temp'</code>.</p>\n","event":[{"listen":"prerequest","script":{"id":"11bdf5c1-69ad-44a0-adb9-7c5880a793ca","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"3ac3fe6d-1ad5-41e0-9a27-ac0a0a3d8a0f","type":"text/javascript","exec":[""]}}],"_postman_id":"afd29ca3-689f-49a2-ba5d-d67f4ac4f757","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}}},{"name":"Job applications","item":[{"name":"List job applications","id":"83d13b65-3e47-4ba8-a63d-fe85c94a8f41","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","value":"20240404"}],"url":"https://api.teamtailor.com/v1/job-applications","description":"<h2 id=\"list-job-applications\">List Job applications</h2>\n<p>Use this endpoint to retrieve lists of job applications.</p>\n<h3 id=\"example-parameters\">Example parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Default</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>include</td>\n<td>null</td>\n<td>Comma separated list of relations to include in the response. For example <code>stage,candidate</code>.</td>\n</tr>\n<tr>\n<td>filter[stage-type]</td>\n<td>null</td>\n<td>Filter by current stage type (<code>Inbox</code>, <code>In process</code> or <code>Hired</code>)</td>\n</tr>\n<tr>\n<td>filter[created-at][from]</td>\n<td>null</td>\n<td>Filter by created-at newer than this date.</td>\n</tr>\n<tr>\n<td>filter[created-at][to]</td>\n<td>null</td>\n<td>Filter by created-at older than this date.</td>\n</tr>\n<tr>\n<td>filter[updated-at][from]</td>\n<td>null</td>\n<td>Filter by updated-at newer than this date.</td>\n</tr>\n<tr>\n<td>filter[updated-at][to]</td>\n<td>null</td>\n<td>Filter by updated-at older than this date.</td>\n</tr>\n<tr>\n<td>filter[changed-stage-at][from]</td>\n<td>null</td>\n<td>Filter by changed-stage-at newer than this date.</td>\n</tr>\n<tr>\n<td>filter[changed-stage-at][to]</td>\n<td>null</td>\n<td>Filter by changed-stage-at older than this date.</td>\n</tr>\n<tr>\n<td>sort</td>\n<td>null</td>\n<td>Sort applications, for example <code>-changed_stage_at</code> to sort by latest added to current stage.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","job-applications"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"0c7d77aa-8b01-4e82-bf6e-ea1b0a9cccbf","name":"List job applications","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/job-applications"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"1\",\n            \"type\": \"job-applications\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/job-applications/1\"\n            },\n            \"attributes\": {\n                \"cover-letter\": null,\n                \"created-at\": \"2020-10-30T10:33:45.784+01:00\",\n                \"referring-site\": null,\n                \"referring-url\": null,\n                \"rejected-at\": null,\n                \"sourced\": false,\n                \"updated-at\": \"2020-10-30T10:33:45.784+01:00\",\n                \"row-order\": 0,\n                \"changed-stage-at\": \"2020-10-30T10:33:45.560+01:00\"\n            },\n            \"relationships\": {\n                \"candidate\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/job-applications/1/relationships/candidate\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/job-applications/1/candidate\"\n                    }\n                },\n                \"job\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/job-applications/1/relationships/job\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/job-applications/1/job\"\n                    }\n                },\n                \"stage\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/job-applications/1/relationships/stage\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/job-applications/1/stage\"\n                    }\n                },\n                \"reject-reason\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/job-applications/1/relationships/reject-reason\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/job-applications/1/reject-reason\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"2\",\n            \"type\": \"job-applications\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/job-applications/2\"\n            },\n            \"attributes\": {\n                \"cover-letter\": null,\n                \"created-at\": \"2020-10-30T10:33:46.363+01:00\",\n                \"referring-site\": null,\n                \"referring-url\": null,\n                \"rejected-at\": null,\n                \"sourced\": false,\n                \"updated-at\": \"2020-10-30T10:33:46.363+01:00\",\n                \"row-order\": 0,\n                \"changed-stage-at\": \"2020-10-30T10:33:46.211+01:00\"\n            },\n            \"relationships\": {\n                \"candidate\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/job-applications/2/relationships/candidate\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/job-applications/2/candidate\"\n                    }\n                },\n                \"job\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/job-applications/2/relationships/job\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/job-applications/2/job\"\n                    }\n                },\n                \"stage\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/job-applications/2/relationships/stage\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/job-applications/2/stage\"\n                    }\n                },\n                \"reject-reason\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/job-applications/2/relationships/reject-reason\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/job-applications/2/reject-reason\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"3\",\n            \"type\": \"job-applications\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/job-applications/3\"\n            },\n            \"attributes\": {\n                \"cover-letter\": null,\n                \"created-at\": \"2020-10-30T10:33:46.813+01:00\",\n                \"referring-site\": null,\n                \"referring-url\": null,\n                \"rejected-at\": null,\n                \"sourced\": false,\n                \"updated-at\": \"2020-10-30T10:33:46.813+01:00\",\n                \"row-order\": 5000,\n                \"changed-stage-at\": \"2020-10-30T10:33:46.523+01:00\"\n            },\n            \"relationships\": {\n                \"candidate\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/job-applications/3/relationships/candidate\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/job-applications/3/candidate\"\n                    }\n                },\n                \"job\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/job-applications/3/relationships/job\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/job-applications/3/job\"\n                    }\n                },\n                \"stage\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/job-applications/3/relationships/stage\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/job-applications/3/stage\"\n                    }\n                },\n                \"reject-reason\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/job-applications/3/relationships/reject-reason\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/job-applications/3/reject-reason\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"4\",\n            \"type\": \"job-applications\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/job-applications/4\"\n            },\n            \"attributes\": {\n                \"cover-letter\": null,\n                \"created-at\": \"2020-10-30T10:33:47.418+01:00\",\n                \"referring-site\": null,\n                \"referring-url\": null,\n                \"rejected-at\": null,\n                \"sourced\": false,\n                \"updated-at\": \"2020-10-30T10:33:47.418+01:00\",\n                \"row-order\": 0,\n                \"changed-stage-at\": \"2020-10-30T10:33:47.181+01:00\"\n            },\n            \"relationships\": {\n                \"candidate\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/job-applications/4/relationships/candidate\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/job-applications/4/candidate\"\n                    }\n                },\n                \"job\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/job-applications/4/relationships/job\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/job-applications/4/job\"\n                    }\n                },\n                \"stage\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/job-applications/4/relationships/stage\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/job-applications/4/stage\"\n                    }\n                },\n                \"reject-reason\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/job-applications/4/relationships/reject-reason\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/job-applications/4/reject-reason\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"5\",\n            \"type\": \"job-applications\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/job-applications/5\"\n            },\n            \"attributes\": {\n                \"cover-letter\": null,\n                \"created-at\": \"2020-10-30T10:33:48.004+01:00\",\n                \"referring-site\": null,\n                \"referring-url\": null,\n                \"rejected-at\": null,\n                \"sourced\": false,\n                \"updated-at\": \"2020-10-30T10:33:48.004+01:00\",\n                \"row-order\": 10000,\n                \"changed-stage-at\": \"2020-10-30T10:33:47.760+01:00\"\n            },\n            \"relationships\": {\n                \"candidate\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/job-applications/5/relationships/candidate\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/job-applications/5/candidate\"\n                    }\n                },\n                \"job\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/job-applications/5/relationships/job\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/job-applications/5/job\"\n                    }\n                },\n                \"stage\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/job-applications/5/relationships/stage\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/job-applications/5/stage\"\n                    }\n                },\n                \"reject-reason\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/job-applications/5/relationships/reject-reason\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/job-applications/5/reject-reason\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"6\",\n            \"type\": \"job-applications\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/job-applications/6\"\n            },\n            \"attributes\": {\n                \"cover-letter\": null,\n                \"created-at\": \"2020-10-30T10:33:48.597+01:00\",\n                \"referring-site\": null,\n                \"referring-url\": null,\n                \"rejected-at\": null,\n                \"sourced\": false,\n                \"updated-at\": \"2020-10-30T10:33:48.597+01:00\",\n                \"row-order\": 15000,\n                \"changed-stage-at\": \"2020-10-30T10:33:48.356+01:00\"\n            },\n            \"relationships\": {\n                \"candidate\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/job-applications/6/relationships/candidate\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/job-applications/6/candidate\"\n                    }\n                },\n                \"job\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/job-applications/6/relationships/job\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/job-applications/6/job\"\n                    }\n                },\n                \"stage\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/job-applications/6/relationships/stage\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/job-applications/6/stage\"\n                    }\n                },\n                \"reject-reason\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/job-applications/6/relationships/reject-reason\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/job-applications/6/reject-reason\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"7\",\n            \"type\": \"job-applications\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/job-applications/7\"\n            },\n            \"attributes\": {\n                \"cover-letter\": null,\n                \"created-at\": \"2020-10-30T10:33:49.187+01:00\",\n                \"referring-site\": null,\n                \"referring-url\": null,\n                \"rejected-at\": null,\n                \"sourced\": false,\n                \"updated-at\": \"2020-10-30T10:33:49.187+01:00\",\n                \"row-order\": 0,\n                \"changed-stage-at\": \"2020-10-30T10:33:48.947+01:00\"\n            },\n            \"relationships\": {\n                \"candidate\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/job-applications/7/relationships/candidate\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/job-applications/7/candidate\"\n                    }\n                },\n                \"job\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/job-applications/7/relationships/job\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/job-applications/7/job\"\n                    }\n                },\n                \"stage\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/job-applications/7/relationships/stage\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/job-applications/7/stage\"\n                    }\n                },\n                \"reject-reason\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/job-applications/7/relationships/reject-reason\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/job-applications/7/reject-reason\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"8\",\n            \"type\": \"job-applications\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/job-applications/8\"\n            },\n            \"attributes\": {\n                \"cover-letter\": null,\n                \"created-at\": \"2020-10-30T10:33:49.797+01:00\",\n                \"referring-site\": null,\n                \"referring-url\": null,\n                \"rejected-at\": null,\n                \"sourced\": false,\n                \"updated-at\": \"2020-10-30T10:33:49.797+01:00\",\n                \"row-order\": 5000,\n                \"changed-stage-at\": \"2020-10-30T10:33:49.537+01:00\"\n            },\n            \"relationships\": {\n                \"candidate\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/job-applications/8/relationships/candidate\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/job-applications/8/candidate\"\n                    }\n                },\n                \"job\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/job-applications/8/relationships/job\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/job-applications/8/job\"\n                    }\n                },\n                \"stage\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/job-applications/8/relationships/stage\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/job-applications/8/stage\"\n                    }\n                },\n                \"reject-reason\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/job-applications/8/relationships/reject-reason\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/job-applications/8/reject-reason\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"9\",\n            \"type\": \"job-applications\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/job-applications/9\"\n            },\n            \"attributes\": {\n                \"cover-letter\": null,\n                \"created-at\": \"2020-10-30T10:33:50.392+01:00\",\n                \"referring-site\": null,\n                \"referring-url\": null,\n                \"rejected-at\": null,\n                \"sourced\": false,\n                \"updated-at\": \"2020-10-30T10:33:50.392+01:00\",\n                \"row-order\": 5000,\n                \"changed-stage-at\": \"2020-10-30T10:33:50.085+01:00\"\n            },\n            \"relationships\": {\n                \"candidate\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/job-applications/9/relationships/candidate\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/job-applications/9/candidate\"\n                    }\n                },\n                \"job\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/job-applications/9/relationships/job\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/job-applications/9/job\"\n                    }\n                },\n                \"stage\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/job-applications/9/relationships/stage\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/job-applications/9/stage\"\n                    }\n                },\n                \"reject-reason\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/job-applications/9/relationships/reject-reason\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/job-applications/9/reject-reason\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"10\",\n            \"type\": \"job-applications\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/job-applications/10\"\n            },\n            \"attributes\": {\n                \"cover-letter\": null,\n                \"created-at\": \"2020-10-30T10:33:50.844+01:00\",\n                \"referring-site\": null,\n                \"referring-url\": null,\n                \"rejected-at\": null,\n                \"sourced\": false,\n                \"updated-at\": \"2020-10-30T10:33:50.844+01:00\",\n                \"row-order\": 5000,\n                \"changed-stage-at\": \"2020-10-30T10:33:50.673+01:00\"\n            },\n            \"relationships\": {\n                \"candidate\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/job-applications/10/relationships/candidate\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/job-applications/10/candidate\"\n                    }\n                },\n                \"job\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/job-applications/10/relationships/job\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/job-applications/10/job\"\n                    }\n                },\n                \"stage\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/job-applications/10/relationships/stage\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/job-applications/10/stage\"\n                    }\n                },\n                \"reject-reason\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/job-applications/10/relationships/reject-reason\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/job-applications/10/reject-reason\"\n                    }\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"record-count\": 637,\n        \"page-count\": 64\n    },\n    \"links\": {\n        \"first\": \"https://api.teamtailor.localhost/v1/job-applications?page%5Bnumber%5D=1&page%5Bsize%5D=10\",\n        \"next\": \"https://api.teamtailor.localhost/v1/job-applications?page%5Bnumber%5D=2&page%5Bsize%5D=10\",\n        \"last\": \"https://api.teamtailor.localhost/v1/job-applications?page%5Bnumber%5D=64&page%5Bsize%5D=10\"\n    }\n}"}],"_postman_id":"83d13b65-3e47-4ba8-a63d-fe85c94a8f41"},{"name":"Show job application","id":"3343ce0f-a586-46ad-b7a2-5c6d078b0ac7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/job-applications/1","description":"<h2 id=\"show-a-job-application\">Show a Job application</h2>\n<p>Retreive a specific job application.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>The job application's id.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","job-applications","1"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"47d1c199-34ab-45cd-8ceb-f8553f53da3d","name":"Show job application","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/job-applications/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"1\",\n        \"type\": \"job-applications\",\n        \"links\": {\n            \"self\": \"https://api.teamtailor.localhost/v1/job-applications/1\"\n        },\n        \"attributes\": {\n            \"cover-letter\": null,\n            \"created-at\": \"2020-10-30T10:33:45.784+01:00\",\n            \"referring-site\": null,\n            \"referring-url\": null,\n            \"rejected-at\": null,\n            \"sourced\": false,\n            \"updated-at\": \"2020-10-30T10:33:45.784+01:00\",\n            \"row-order\": 0,\n            \"changed-stage-at\": \"2020-10-30T10:33:45.560+01:00\"\n        },\n        \"relationships\": {\n            \"candidate\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/job-applications/1/relationships/candidate\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/job-applications/1/candidate\"\n                }\n            },\n            \"job\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/job-applications/1/relationships/job\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/job-applications/1/job\"\n                }\n            },\n            \"stage\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/job-applications/1/relationships/stage\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/job-applications/1/stage\"\n                }\n            },\n            \"reject-reason\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/job-applications/1/relationships/reject-reason\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/job-applications/1/reject-reason\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"3343ce0f-a586-46ad-b7a2-5c6d078b0ac7"},{"name":"Create job application","id":"cc2ef938-b0b8-476a-81a1-81dfbe30159a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"data\": {\n    \"type\": \"job-applications\",\n    \"attributes\": {\n      \"cover-letter\": \"Hi, I'm a driven developer looking for new opportunities…\",\n      \"sourced\": true,\n      \"send-user-notifications\": true\n    },\n    \"relationships\": {\n      \"candidate\": {\n        \"data\": {\n          \"id\": 1,\n          \"type\": \"candidates\"\n        }\n      },\n      \"job\": {\n        \"data\": {\n          \"id\": 1,\n          \"type\": \"jobs\"\n        }\n      }\n    }\n  }\n}"},"url":"https://api.teamtailor.com/v1/job-applications","description":"<h2 id=\"create-job-application\">Create Job application</h2>\n<p>Create a new Job application.</p>\n<aside>\n  The relations <code>candidate</code> and <code>job</code> are required to be able to create a new job application.\n</aside>\n\n<p>As a convience method it's also possible to embed an iframe that outputs the job application form. See <a href=\"#embed-application-form\">example</a>.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","job-applications"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"12031abc-722b-4d19-bcf6-20e73642cef7","name":"Create job application","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"data\": {\n    \"type\": \"job-applications\",\n    \"attributes\": {\n      \"cover-letter\": \"Hi, I'm a driven developer looking for new opportunities…\",\n      \"sourced\": true,\n      \"send-user-notifications\": true\n    },\n    \"relationships\": {\n      \"candidate\": {\n        \"data\": {\n          \"id\": 1,\n          \"type\": \"candidates\"\n        }\n      },\n      \"job\": {\n        \"data\": {\n          \"id\": 1,\n          \"type\": \"jobs\"\n        }\n      }\n    }\n  }\n}"},"url":"https://api.teamtailor.com/v1/job-applications"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"640\",\n        \"type\": \"job-applications\",\n        \"links\": {\n            \"self\": \"https://api.teamtailor.localhost/v1/job-applications/640\"\n        },\n        \"attributes\": {\n            \"cover-letter\": \"Hi, I'm a driven developer looking for new opportunities…\",\n            \"created-at\": \"2020-12-16T10:30:59.817+01:00\",\n            \"referring-site\": null,\n            \"referring-url\": null,\n            \"rejected-at\": null,\n            \"sourced\": true,\n            \"updated-at\": \"2020-12-16T10:30:59.817+01:00\",\n            \"row-order\": -5000,\n            \"changed-stage-at\": \"2020-12-16T10:30:59.723+01:00\"\n        },\n        \"relationships\": {\n            \"candidate\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/job-applications/640/relationships/candidate\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/job-applications/640/candidate\"\n                }\n            },\n            \"job\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/job-applications/640/relationships/job\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/job-applications/640/job\"\n                }\n            },\n            \"stage\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/job-applications/640/relationships/stage\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/job-applications/640/stage\"\n                }\n            },\n            \"reject-reason\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/job-applications/640/relationships/reject-reason\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/job-applications/640/reject-reason\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"cc2ef938-b0b8-476a-81a1-81dfbe30159a"},{"name":"Update job application","id":"5ef477fe-45dd-4b3e-9fd7-28625c09806a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"},{"key":"Content-Type","type":"text","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\n  \"data\": {\n    \"id\": 1,\n    \"attributes\": {\n      \"cover-letter\": \"To Whom It May Concern…\"\n    },\n    \"type\": \"job-applications\"\n  }\n}"},"url":"https://api.teamtailor.com/v1/job-applications/1","description":"<h2 id=\"update-job-application\">Update Job application</h2>\n<p>Change a candidates's attributes/relationships.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","job-applications","1"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"2e275273-4e27-446d-9156-905913411f33","name":"Update job application","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"},{"key":"Content-Type","type":"text","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\n  \"data\": {\n    \"id\": 1,\n    \"attributes\": {\n      \"cover-letter\": \"To Whom It May Concern…\"\n    },\n    \"type\": \"job-applications\"\n  }\n}"},"url":"https://api.teamtailor.com/v1/job-applications/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"1\",\n        \"type\": \"job-applications\",\n        \"links\": {\n            \"self\": \"https://api.teamtailor.localhost/v1/job-applications/1\"\n        },\n        \"attributes\": {\n            \"cover-letter\": \"To Whom It May Concern…\",\n            \"created-at\": \"2020-10-30T10:33:45.784+01:00\",\n            \"referring-site\": null,\n            \"referring-url\": null,\n            \"rejected-at\": null,\n            \"sourced\": false,\n            \"updated-at\": \"2020-12-16T10:33:08.969+01:00\",\n            \"row-order\": 0,\n            \"changed-stage-at\": \"2020-10-30T10:33:45.560+01:00\"\n        },\n        \"relationships\": {\n            \"candidate\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/job-applications/1/relationships/candidate\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/job-applications/1/candidate\"\n                }\n            },\n            \"job\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/job-applications/1/relationships/job\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/job-applications/1/job\"\n                }\n            },\n            \"stage\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/job-applications/1/relationships/stage\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/job-applications/1/stage\"\n                }\n            },\n            \"reject-reason\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/job-applications/1/relationships/reject-reason\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/job-applications/1/reject-reason\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"5ef477fe-45dd-4b3e-9fd7-28625c09806a"}],"id":"3a64e9b5-c1d4-4894-8978-2015adf13ec2","description":"<h1 id=\"job-applications\">Job Applications</h1>\n<p>Required scope: Admin</p>\n<p>This object represents the job applications.</p>\n<h3 id=\"attributes\">Attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>created-at</td>\n<td>date</td>\n<td></td>\n</tr>\n<tr>\n<td>cover-letter</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>changed-stage-at</td>\n<td>date</td>\n<td>Date when candidate was added to current stage</td>\n</tr>\n<tr>\n<td>match</td>\n<td>number</td>\n<td>Job match score (0-100)</td>\n</tr>\n<tr>\n<td>updated-at</td>\n<td>date</td>\n<td></td>\n</tr>\n<tr>\n<td>rejected-at</td>\n<td>date</td>\n<td>If set, the candidate has been rejected for this job</td>\n</tr>\n<tr>\n<td>referring-url</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>referring-site</td>\n<td>string</td>\n<td><strong>Read only</strong>, friendly name parsed from referring-url (i.e. Facebook, Indeed etc)</td>\n</tr>\n<tr>\n<td>sourced</td>\n<td>boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>send-default-reply</td>\n<td>boolean</td>\n<td><strong>Create only</strong>, set to true if you want to send the \"Default reply\" email to the candidate. Default: false</td>\n</tr>\n<tr>\n<td>send-user-notifications</td>\n<td>boolean</td>\n<td><strong>Create only</strong>, set to true if you want to send notifications to users. Default: false</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"relations\">Relations</h3>\n<p>The <code>job-application</code> object always has a relation to a <code>candidate</code> and a <code>job</code></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Relation</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>candidate*</td>\n<td></td>\n</tr>\n<tr>\n<td>job</td>\n<td></td>\n</tr>\n<tr>\n<td>stage</td>\n<td>Current stage (i.e Inbox, Reviewing, Hired)</td>\n</tr>\n<tr>\n<td>reject-reason</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><p>*suggests that those attributes/relationships are required.</p>\n","event":[{"listen":"prerequest","script":{"id":"36cb0893-3ccc-48c8-9322-703d53ed35c5","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"b987d4bf-3093-4940-b7bb-4b5da9d43394","type":"text/javascript","exec":[""]}}],"_postman_id":"3a64e9b5-c1d4-4894-8978-2015adf13ec2","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}}},{"name":"Job offers","item":[{"name":"List job offers","id":"81fec73e-4163-4de1-83ac-89a3d243657d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/job-offers","description":"<h2 id=\"list-job-offers\">List Job Offers</h2>\n<p>Use this endpoint to retrieve lists of job offers.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","job-offers"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"8610cebb-2e81-4ece-b6fb-80ca9916577d","name":"List job offers","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"}],"url":"https://api.teamtailor.com/v1/job-offers"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"0ff40f56-09c1-459a-9dd0-b0146890f5a0\",\n            \"type\": \"job-offers\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.com/v1/job-offers/0ff40f56-09c1-459a-9dd0-b0146890f5a0\"\n            },\n            \"attributes\": {\n                \"created-at\": \"2022-04-29T17:51:19.901+02:00\",\n                \"sent-at\": \"2022-04-29T17:52:34.575+02:00\",\n                \"answered-at\": null,\n                \"response\": null,\n                \"status\": \"pending\",\n                \"details\": {\n                    \"acceptance-message\": \"<p>We are excited to work with you! We will contact you soon.</p>\",\n                    \"rejection-message\": \"<p>Sorry for rejecting the offer. We will contact you soon.</p>\",\n                    \"salary\": \"50 000 $/mo\",\n                    \"start-date\": \"2022-04-08\"\n                }\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/job-offers/0ff40f56-09c1-459a-9dd0-b0146890f5a0/relationships/user\",\n                        \"related\": \"https://api.teamtailor.com/v1/job-offers/0ff40f56-09c1-459a-9dd0-b0146890f5a0/user\"\n                    }\n                },\n                \"job-application\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/job-offers/0ff40f56-09c1-459a-9dd0-b0146890f5a0/relationships/job-application\",\n                        \"related\": \"https://api.teamtailor.com/v1/job-offers/0ff40f56-09c1-459a-9dd0-b0146890f5a0/job-application\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"1c434431-86b3-4f10-a1d1-192d7fb8cdf4\",\n            \"type\": \"job-offers\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.com/v1/job-offers/1c434431-86b3-4f10-a1d1-192d7fb8cdf4\"\n            },\n            \"attributes\": {\n                \"created-at\": \"2023-03-08T10:46:54.601+01:00\",\n                \"sent-at\": null,\n                \"answered-at\": null,\n                \"response\": null,\n                \"status\": \"pending\",\n                \"details\": {\n                    \"acceptance_message\": \"<p>We are excited to work with you! We will contact you soon.</p>\",\n                    \"rejection_message\": \"<p>Sorry for rejecting the offer. We will contact you soon.</p>\",\n                    \"salary\": \"62 000 $ / year\",\n                    \"start_date\": \"2023-03-24\"\n                }\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/job-offers/1c434431-86b3-4f10-a1d1-192d7fb8cdf4/relationships/user\",\n                        \"related\": \"https://api.teamtailor.com/v1/job-offers/1c434431-86b3-4f10-a1d1-192d7fb8cdf4/user\"\n                    }\n                },\n                \"job-application\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/job-offers/1c434431-86b3-4f10-a1d1-192d7fb8cdf4/relationships/job-application\",\n                        \"related\": \"https://api.teamtailor.com/v1/job-offers/1c434431-86b3-4f10-a1d1-192d7fb8cdf4/job-application\"\n                    }\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"record-count\": 2,\n        \"page-count\": 1\n    },\n    \"links\": {\n        \"first\": \"https://api.teamtailor.com/v1/job-offers?page%5Bnumber%5D=1&page%5Bsize%5D=10\",\n        \"last\": \"https://api.teamtailor.com/v1/job-offers?page%5Bnumber%5D=1&page%5Bsize%5D=10\"\n    }\n}"}],"_postman_id":"81fec73e-4163-4de1-83ac-89a3d243657d"},{"name":"Show job offer","id":"593280c1-772a-4d29-a3d4-c62b93154253","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/job-offers/1","description":"<h2 id=\"show-a-job-offer\">Show a Job Offer</h2>\n<p>Retreive a specific job offer.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>The job offer's id.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","job-offers","1"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"14c943c8-ab8e-48dc-aa37-b7c519b9e533","name":"Show job offer","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"}],"url":"https://api.teamtailor.com/v1/job-offers/1"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": \"0ff40f56-09c1-459a-9dd0-b0146890f5a0\",\n    \"type\": \"job-offers\",\n    \"links\": {\n      \"self\": \"https://api.teamtailor.com/v1/job-offers/0ff40f56-09c1-459a-9dd0-b0146890f5a0\"\n    },\n    \"attributes\": {\n      \"created-at\": \"2022-04-29T17:51:19.901+02:00\",\n      \"sent-at\": \"2022-04-29T17:52:34.575+02:00\",\n      \"answered-at\": null,\n      \"response\": null,\n      \"status\": \"pending\",\n      \"details\": {\n        \"acceptance-message\": \"<p>We are excited to work with you! We will contact you soon.</p>\",\n        \"rejection-message\": \"<p>Sorry for rejecting the offer. We will contact you soon.</p>\",\n        \"salary\": \"50 000 $/mo\",\n        \"start-date\": \"2022-04-08\"\n      }\n    },\n    \"relationships\": {\n      \"user\": {\n        \"links\": {\n          \"self\": \"https://api.teamtailor.com/v1/job-offers/0ff40f56-09c1-459a-9dd0-b0146890f5a0/relationships/user\",\n          \"related\": \"https://api.teamtailor.com/v1/job-offers/0ff40f56-09c1-459a-9dd0-b0146890f5a0/user\"\n        }\n      },\n      \"job-application\": {\n        \"links\": {\n          \"self\": \"https://api.teamtailor.com/v1/job-offers/0ff40f56-09c1-459a-9dd0-b0146890f5a0/relationships/job-application\",\n          \"related\": \"https://api.teamtailor.com/v1/job-offers/0ff40f56-09c1-459a-9dd0-b0146890f5a0/job-application\"\n        }\n      }\n    }\n  }\n}"}],"_postman_id":"593280c1-772a-4d29-a3d4-c62b93154253"}],"id":"f1284060-34af-4402-abb1-e44b2ebb61bd","description":"<h1 id=\"job-offers\">Job offers</h1>\n<p><strong>Required scope: Admin</strong></p>\n<p>This object represents the job offers. You can retrieve a list or just show a single job offer.</p>\n<h3 id=\"attributes\">Attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>created-at</td>\n<td>date</td>\n<td>The job offer creation date</td>\n</tr>\n<tr>\n<td>sent_at</td>\n<td>date</td>\n<td>The date the job offer was sent to the candidate</td>\n</tr>\n<tr>\n<td>answered_at</td>\n<td>date</td>\n<td>The date the candidate answered the job offer</td>\n</tr>\n<tr>\n<td>response</td>\n<td>string</td>\n<td>The candidate's response to the job offer</td>\n</tr>\n<tr>\n<td>details</td>\n<td>object</td>\n<td>object containing the job offers details (eg. <code>salary</code>, <code>start-date)</code></td>\n</tr>\n<tr>\n<td>status</td>\n<td>string</td>\n<td>The job offer's status can be one of the following: <code>pending</code>, <code>accepted</code> or<code>declined</code></td>\n</tr>\n<tr>\n<td>approval-status</td>\n<td>string</td>\n<td>(Enterprise feature only). The job offer's approval status can be one of the following: <code>pending</code>, <code>approved</code> or<code>rejected</code></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"relations\">Relations</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Relation</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>user</td>\n<td>The user that created the job offer</td>\n</tr>\n<tr>\n<td>job-application</td>\n<td>The job application associated with the job offer</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"f1284060-34af-4402-abb1-e44b2ebb61bd","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}}},{"name":"Locations","item":[{"name":"List locations","id":"dee45997-6519-4532-9445-4b920529cdf9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/locations","description":"<h2 id=\"list-locations\">List locations</h2>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","locations"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"53dc7915-b01e-4999-ae5b-a6bbcaa98ef4","name":"List locations","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/locations"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"1\",\n            \"type\": \"locations\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/locations/1\"\n            },\n            \"attributes\": {\n                \"address\": \"Sankt Paulsgatan 7B\",\n                \"city\": \"Stockholm\",\n                \"country\": \"Sweden\",\n                \"email\": \"stockholm@company.com\",\n                \"headquarters\": true,\n                \"lat\": null,\n                \"long\": null,\n                \"name\": null,\n                \"phone\": \"070-453 21 23\",\n                \"zip\": \"118 46\"\n            },\n            \"relationships\": {\n                \"teams\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/locations/1/relationships/teams\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/locations/1/teams\"\n                    }\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"texts\": {\n            \"all\": \"All locations\"\n        },\n        \"record-count\": 1,\n        \"page-count\": 1\n    },\n    \"links\": {\n        \"first\": \"https://api.teamtailor.localhost/v1/locations?page%5Bnumber%5D=1&page%5Bsize%5D=10\",\n        \"last\": \"https://api.teamtailor.localhost/v1/locations?page%5Bnumber%5D=1&page%5Bsize%5D=10\"\n    }\n}"}],"_postman_id":"dee45997-6519-4532-9445-4b920529cdf9"},{"name":"Show location","id":"9d26f778-d337-4694-b9af-dc98a6724d74","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/locations/1","description":"<h2 id=\"show-a-location\">Show a Location</h2>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","locations","1"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"6812db3a-0135-49db-bad0-17f9557a301c","name":"Show location","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/locations/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"1\",\n        \"type\": \"locations\",\n        \"links\": {\n            \"self\": \"https://api.teamtailor.localhost/v1/locations/1\"\n        },\n        \"attributes\": {\n            \"address\": \"Sankt Paulsgatan 7B\",\n            \"city\": \"Stockholm\",\n            \"country\": \"Sweden\",\n            \"email\": \"stockholm@company.com\",\n            \"headquarters\": true,\n            \"lat\": null,\n            \"long\": null,\n            \"name\": null,\n            \"phone\": \"070-453 21 23\",\n            \"zip\": \"118 46\"\n        },\n        \"relationships\": {\n            \"teams\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/locations/1/relationships/teams\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/locations/1/teams\"\n                }\n            }\n        }\n    },\n    \"meta\": {\n        \"texts\": {\n            \"all\": \"All locations\"\n        }\n    }\n}"}],"_postman_id":"9d26f778-d337-4694-b9af-dc98a6724d74"},{"name":"Update location","id":"8d755f7e-187f-4f6c-9293-776327a18687","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"id\": 1,\n        \"type\": \"locations\",\n        \"attributes\": {\n            \"name\": \"Teamtailor Stockholm\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/locations/1","description":"<h2 id=\"update-location\">Update location</h2>\n<aside>\n  Required scope: Admin\n</aside>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","locations","1"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"e8c687a0-c64e-49a5-bc42-c7f32aad1469","name":"Update location","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"id\": 1,\n        \"type\": \"locations\",\n        \"attributes\": {\n            \"name\": \"Teamtailor Stockholm\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/locations/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"1\",\n        \"type\": \"locations\",\n        \"links\": {\n            \"self\": \"https://api.teamtailor.localhost/v1/locations/1\"\n        },\n        \"attributes\": {\n            \"address\": \"Sankt Paulsgatan 7B\",\n            \"city\": \"Stockholm\",\n            \"country\": \"Sweden\",\n            \"email\": \"stockholm@company.com\",\n            \"headquarters\": true,\n            \"lat\": null,\n            \"long\": null,\n            \"name\": \"Teamtailor Stockholm\",\n            \"phone\": \"070-453 21 23\",\n            \"zip\": \"118 46\"\n        },\n        \"relationships\": {\n            \"teams\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/locations/1/relationships/teams\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/locations/1/teams\"\n                }\n            }\n        }\n    },\n    \"meta\": {\n        \"texts\": {\n            \"all\": \"All locations\"\n        }\n    }\n}"}],"_postman_id":"8d755f7e-187f-4f6c-9293-776327a18687"},{"name":"Delete location","id":"cfcff81e-d338-488c-a30f-b678eff5f19e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/locations/1","description":"<h2 id=\"delete-location\">Delete location</h2>\n<aside>\n  Required scope: Admin\n</aside>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","locations","1"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"58e4b20a-7451-432d-8c8f-f2b04ca2ef8c","name":"Delete location","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/locations/1"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":null,"cookie":[],"responseTime":null,"body":""}],"_postman_id":"cfcff81e-d338-488c-a30f-b678eff5f19e"},{"name":"Create location","id":"ff5f2a1c-1f30-4999-b057-c7e68e86c820","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"locations\",\n        \"attributes\": {\n            \"name\": \"Teamtailor HQ\",\n            \"city\": \"Stockholm\",\n            \"country\": \"Sweden\",\n            \"address\": \"Östgötagatan 16\",\n            \"zip\": \"116 21\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/locations","description":"<h2 id=\"create-location\">Create location</h2>\n<aside>\n  Required scope: Admin\n</aside>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","locations"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"5d3b5b4e-b62b-4920-982c-245177e6acde","name":"Create location","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"locations\",\n        \"attributes\": {\n            \"name\": \"Teamtailor HQ\",\n            \"city\": \"Stockholm\",\n            \"country\": \"Sweden\",\n            \"address\": \"Östgötagatan 16\",\n            \"zip\": \"116 21\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/locations"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"26\",\n        \"type\": \"locations\",\n        \"links\": {\n            \"self\": \"https://api.teamtailor.localhost/v1/locations/26\"\n        },\n        \"attributes\": {\n            \"address\": \"Östgötagatan 16\",\n            \"city\": \"Stockholm\",\n            \"country\": \"Sweden\",\n            \"email\": null,\n            \"headquarters\": false,\n            \"lat\": null,\n            \"long\": null,\n            \"name\": \"Teamtailor HQ\",\n            \"phone\": null,\n            \"zip\": \"116 21\"\n        },\n        \"relationships\": {\n            \"teams\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/locations/26/relationships/teams\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/locations/26/teams\"\n                }\n            }\n        }\n    },\n    \"meta\": {\n        \"texts\": {\n            \"all\": \"All locations\"\n        }\n    }\n}"}],"_postman_id":"ff5f2a1c-1f30-4999-b057-c7e68e86c820"}],"id":"f7b39dfc-375a-4945-a3c5-dc2d087d479e","description":"<h1 id=\"locations\">Locations</h1>\n<h3 id=\"attributes\">Attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>address</td>\n<td>string</td>\n<td>Street address</td>\n</tr>\n<tr>\n<td>city</td>\n<td>string</td>\n<td>City name</td>\n</tr>\n<tr>\n<td>country</td>\n<td>string</td>\n<td>Full name of country, e.g <code>Sweden</code></td>\n</tr>\n<tr>\n<td>email</td>\n<td>string</td>\n<td>Contact e-mail address</td>\n</tr>\n<tr>\n<td>headquarters</td>\n<td>boolean</td>\n<td>True if it's the company's main location. Can only be one headquarter per company</td>\n</tr>\n<tr>\n<td>lat</td>\n<td>string</td>\n<td>Decimal latitude of location, e.g <code>59.33855810000001</code></td>\n</tr>\n<tr>\n<td>long</td>\n<td>string</td>\n<td>Decimal longitude of location, e.g <code>18.0557594</code></td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Specify name if City isn't enough information</td>\n</tr>\n<tr>\n<td>phone</td>\n<td>string</td>\n<td>Contact phone number</td>\n</tr>\n<tr>\n<td>zip</td>\n<td>string</td>\n<td>Postal code</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"9bea5cea-a8ad-4c14-a55b-ba37a8fa127b","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"31e7e7d5-9084-42bb-8441-5735f5ba5b5f","type":"text/javascript","exec":[""]}}],"_postman_id":"f7b39dfc-375a-4945-a3c5-dc2d087d479e","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}}},{"name":"Notes (Comments & Reviews)","item":[{"name":"List notes & reviews","id":"b841a07b-1fc1-4dea-b8a3-9b9a185cb246","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/notes","description":"<h2 id=\"list-notes\">List notes</h2>\n<p>Use this endpoint to retrieve lists of notes.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","notes"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"bf57f2d3-e02b-4486-8d75-ac762085999c","name":"List notes","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"}],"url":"https://api.teamtailor.com/v1/notes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"74\",\n                \"type\": \"notes\",\n                \"links\": {\n                    \"self\": \"/v1/notes/74\"\n                },\n                \"attributes\": {\n                    \"note\": \"test\",\n                    \"created-at\": \"2020-12-10T10:32:41.110+01:00\",\n                    \"created-by-trigger\": false,\n                    \"mentioned-user-ids\": [],\n                    \"private-note\": false,\n                    \"updated-at\": \"2020-12-10T10:32:40.979+01:00\",\n                    \"candidate-id\": 446,\n                    \"user-id\": 4\n                },\n                \"relationships\": {\n                    \"candidate\": {\n                        \"links\": {\n                            \"self\": \"/v1/notes/74/relationships/candidate\",\n                            \"related\": \"/v1/notes/74/candidate\"\n                        }\n                    },\n                    \"user\": {\n                        \"links\": {\n                            \"self\": \"/v1/notes/74/relationships/user\",\n                            \"related\": \"/v1/notes/74/user\"\n                        }\n                    }\n                }\n        }\n    ]\n}"}],"_postman_id":"b841a07b-1fc1-4dea-b8a3-9b9a185cb246"},{"name":"Show note or review","id":"1192b63a-882d-47ac-a374-72ef361ea0f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/notes/1","description":"<h2 id=\"show-a-note\">Show a note</h2>\n<p>Use this endpoint to retrieve a single note.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","notes","1"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"76bb7005-bca6-46f2-8457-a2d2086273dc","name":"Show note","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/notes/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"78\",\n        \"type\": \"notes\",\n        \"links\": {\n            \"self\": \"/v1/notes/78\"\n        },\n        \"attributes\": {\n            \"note\": \"new note for candidate\",\n            \"created-at\": \"2020-12-16T10:50:10.661+01:00\",\n            \"created-by-trigger\": false,\n            \"mentioned-user-ids\": [],\n            \"private-note\": false,\n            \"updated-at\": \"2020-12-16T10:50:10.661+01:00\",\n            \"candidate-id\": 1,\n            \"user-id\": 1\n        },\n        \"relationships\": {\n            \"candidate\": {\n                \"links\": {\n                    \"self\": \"/v1/notes/78/relationships/candidate\",\n                    \"related\": \"/v1/notes/78/candidate\"\n                }\n            },\n            \"user\": {\n                \"links\": {\n                    \"self\": \"/v1/notes/78/relationships/user\",\n                    \"related\": \"/v1/notes/78/user\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"1192b63a-882d-47ac-a374-72ef361ea0f7"},{"name":"Update note","id":"26812641-7cb0-4c66-990c-ba310927c690","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"notes\",\n        \"attributes\": {\n            \"note\": \"Updated note\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/notes/1","description":"<h2 id=\"update-note\">Update note</h2>\n<p>Use this endpoint to update the text of a note.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","notes","1"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"2970cb76-4116-4eb0-91e0-773c296c4bfb","name":"Update note","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"notes\",\n        \"attributes\": {\n            \"note\": \"Updated note\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/notes/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"78\",\n        \"type\": \"notes\",\n        \"links\": {\n            \"self\": \"/v1/notes/78\"\n        },\n        \"attributes\": {\n            \"note\": \"Updated note\",\n            \"created-at\": \"2020-12-16T10:50:10.661+01:00\",\n            \"created-by-trigger\": false,\n            \"mentioned-user-ids\": [],\n            \"private-note\": false,\n            \"updated-at\": \"2020-12-16T10:52:03.184+01:00\",\n            \"candidate-id\": 1,\n            \"user-id\": 1\n        },\n        \"relationships\": {\n            \"candidate\": {\n                \"links\": {\n                    \"self\": \"/v1/notes/78/relationships/candidate\",\n                    \"related\": \"/v1/notes/78/candidate\"\n                }\n            },\n            \"user\": {\n                \"links\": {\n                    \"self\": \"/v1/notes/78/relationships/user\",\n                    \"related\": \"/v1/notes/78/user\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"26812641-7cb0-4c66-990c-ba310927c690"},{"name":"Delete note","id":"470bcf23-5fd2-40ee-950c-7fcb19c23fda","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/notes/1","description":"<h2 id=\"delete-note\">Delete note</h2>\n<p>Use this endpoint to delete a note.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","notes","1"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"8c5b3128-97b1-4326-a446-0a5785a32bef","name":"Delete note","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/notes/1"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":null,"cookie":[],"responseTime":null,"body":""}],"_postman_id":"470bcf23-5fd2-40ee-950c-7fcb19c23fda"},{"name":"Create note or review","id":"2a8cc0c8-657c-47ed-ad34-4efd4d6253b2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"data\": {\n    \"type\": \"notes\",\n    \"attributes\": {\n      \"note\": \"new note for candidate\"\n    },\n    \"relationships\": {\n      \"candidate\": {\n        \"data\": {\n          \"id\": 1,\n          \"type\": \"candidates\"\n        }\n      },\n      \"user\": {\n        \"data\": {\n          \"id\": 1,\n          \"type\": \"users\"\n        }\n      }\n    }\n  }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/notes","description":"<h2 id=\"create-note\">Create Note</h2>\n<p>Use this endpoint to create a new candidate note or review.</p>\n<p>Adding a <code>rating</code> <strong>(integer on a scale from 1 to 5)</strong> to the payload will make the note a candidate review.<br />Adding a <code>job_application</code> in the payload relationship will link the comment or the rating to the specific job application.</p>\n<p>See details on candidate / job application reviews in our <a href=\"https://support.teamtailor.com/en/articles/3508086-review-your-candidates-and-their-job-applications\">dedicated support article on reviews</a>.</p>\n<p>View example requests on the right.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","notes"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"f6f9aaaa-d717-4e52-b05c-1835b961c00e","name":"Create note","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"data\": {\n    \"type\": \"notes\",\n    \"attributes\": {\n      \"note\": \"new note for candidate\"\n    },\n    \"relationships\": {\n      \"candidate\": {\n        \"data\": {\n          \"id\": 1,\n          \"type\": \"candidates\"\n        }\n      },\n      \"user\": {\n        \"data\": {\n          \"id\": 1,\n          \"type\": \"users\"\n        }\n      }\n    }\n  }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/notes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"78\",\n        \"type\": \"notes\",\n        \"links\": {\n            \"self\": \"/v1/notes/78\"\n        },\n        \"attributes\": {\n            \"note\": \"new note for candidate\",\n            \"created-at\": \"2020-12-16T10:50:10.661+01:00\",\n            \"created-by-trigger\": false,\n            \"mentioned-user-ids\": [],\n            \"private-note\": false,\n            \"updated-at\": \"2020-12-16T10:50:10.661+01:00\",\n            \"candidate-id\": 1,\n            \"user-id\": 1\n        },\n        \"relationships\": {\n            \"candidate\": {\n                \"links\": {\n                    \"self\": \"/v1/notes/78/relationships/candidate\",\n                    \"related\": \"/v1/notes/78/candidate\"\n                }\n            },\n            \"user\": {\n                \"links\": {\n                    \"self\": \"/v1/notes/78/relationships/user\",\n                    \"related\": \"/v1/notes/78/user\"\n                }\n            }\n        }\n    }\n}"},{"id":"2bf7f949-b92c-4cf2-982c-f1cc86b14e4a","name":"Create a candidate review","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"data\": {\n    \"type\": \"notes\",\n    \"attributes\": {\n      \"note\": \"new review on a candidate profile\",\n      \"rating\": 5\n    },\n    \"relationships\": {\n      \"candidate\": {\n        \"data\": {\n          \"id\": 1,\n          \"type\": \"candidates\"\n        }\n      },\n      \"user\": {\n        \"data\": {\n          \"id\": 1,\n          \"type\": \"users\"\n        }\n      }\n    }\n  }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/notes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"78\",\n        \"type\": \"notes\",\n        \"links\": {\n            \"self\": \"/v1/notes/78\"\n        },\n        \"attributes\": {\n            \"note\": \"new review on a candidate profile\",\n            \"rating\": 5,\n            \"created-at\": \"2020-12-16T10:50:10.661+01:00\",\n            \"created-by-trigger\": false,\n            \"mentioned-user-ids\": [],\n            \"private-note\": false,\n            \"updated-at\": \"2020-12-16T10:50:10.661+01:00\",\n            \"candidate-id\": 1,\n            \"user-id\": 1\n        },\n        \"relationships\": {\n            \"candidate\": {\n                \"links\": {\n                    \"self\": \"/v1/notes/78/relationships/candidate\",\n                    \"related\": \"/v1/notes/78/candidate\"\n                }\n            },\n            \"user\": {\n                \"links\": {\n                    \"self\": \"/v1/notes/78/relationships/user\",\n                    \"related\": \"/v1/notes/78/user\"\n                }\n            },\n            \"job-application\": {\n                \"links\": {\n                    \"self\": \"/v1/notes/78/relationships/job-application\",\n                    \"related\": \"/v1/notes/78/job-application\"\n                }\n            }\n        }\n    }\n}"},{"id":"3aa8d1aa-1745-47d0-ad6f-d94df198f20c","name":"Create a job application review","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"data\": {\n    \"type\": \"notes\",\n    \"attributes\": {\n      \"note\": \"new review on a job application\",\n      \"rating\": 5\n    },\n    \"relationships\": {\n      \"candidate\": {\n        \"data\": {\n          \"id\": 1,\n          \"type\": \"candidates\"\n        }\n      },\n      \"user\": {\n        \"data\": {\n          \"id\": 1,\n          \"type\": \"users\"\n        }\n      },\n      \"job-application\": {\n        \"data\": {\n          \"id\": 1,\n          \"type\": \"job-applications\"\n        }\n      }\n    }\n  }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/notes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"78\",\n        \"type\": \"notes\",\n        \"links\": {\n            \"self\": \"/v1/notes/78\"\n        },\n        \"attributes\": {\n            \"note\": \"new review on a job application\",\n            \"rating\": 5,\n            \"created-at\": \"2020-12-16T10:50:10.661+01:00\",\n            \"created-by-trigger\": false,\n            \"mentioned-user-ids\": [],\n            \"private-note\": false,\n            \"updated-at\": \"2020-12-16T10:50:10.661+01:00\",\n            \"candidate-id\": 1,\n            \"user-id\": 1,\n            \"job-application-id\": 1\n        },\n        \"relationships\": {\n            \"candidate\": {\n                \"links\": {\n                    \"self\": \"/v1/notes/78/relationships/candidate\",\n                    \"related\": \"/v1/notes/78/candidate\"\n                }\n            },\n            \"user\": {\n                \"links\": {\n                    \"self\": \"/v1/notes/78/relationships/user\",\n                    \"related\": \"/v1/notes/78/user\"\n                }\n            },\n            \"job-application\": {\n                \"links\": {\n                    \"self\": \"/v1/notes/78/relationships/job-application\",\n                    \"related\": \"/v1/notes/78/job-application\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"2a8cc0c8-657c-47ed-ad34-4efd4d6253b2"}],"id":"8c34531b-27d8-4ab7-ae03-11cfd659e38d","description":"<h1 id=\"notes-comments--reviews\">Notes (Comments &amp; Reviews)</h1>\n<p>Notes are as of 2024-03-14 displayed as comments in the application.</p>\n<p>Notes can be either comments, candidate reviews or job application reviews.<br />See the difference in our <a href=\"https://support.teamtailor.com/en/articles/3508086-review-your-candidates-and-their-job-applications\">dedicated support article on reviews</a>.</p>\n<p><em><strong>PS:</strong></em> <em>Updating or Deleting a review is not supported yet</em></p>\n<p>Required scope: Admin</p>\n<h3 id=\"attributes\">Attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>note</td>\n<td>string</td>\n<td>The text content of the comment</td>\n</tr>\n<tr>\n<td>rating</td>\n<td>integer</td>\n<td><em>(optional)</em> - The rating on a <strong>1 - 5 scale</strong> of this candidate.</td>\n</tr>\n<tr>\n<td>user-id</td>\n<td>integer</td>\n<td>The user who made the comment</td>\n</tr>\n<tr>\n<td>candidate-id</td>\n<td>integer</td>\n<td>The candidate who is commented on</td>\n</tr>\n<tr>\n<td>job-application-id</td>\n<td>integer</td>\n<td>The job application the comment or review is linked to</td>\n</tr>\n<tr>\n<td>created-by-trigger</td>\n<td>boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>mentioned-user-ids</td>\n<td>array</td>\n<td></td>\n</tr>\n<tr>\n<td>private-note</td>\n<td>boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>created-at</td>\n<td>datetime</td>\n<td></td>\n</tr>\n<tr>\n<td>updated-at</td>\n<td>datetime</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"relations\">Relations</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Relation</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>candidate</td>\n<td>Candidate who holds the note</td>\n</tr>\n<tr>\n<td>user</td>\n<td>User who created the note</td>\n</tr>\n<tr>\n<td>job-application</td>\n<td>Job Application linked to the note</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"f3622aa5-a47e-4cd9-afd3-2626936a8495","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"d22e66ff-a7a3-4a1d-8ad8-15bdedbb4737","type":"text/javascript","exec":[""]}}],"_postman_id":"8c34531b-27d8-4ab7-ae03-11cfd659e38d","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}}},{"name":"NPS responses","item":[{"name":"List nps responses","id":"6d4535f5-5a4f-48d6-b1af-6be919679009","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"}],"url":"https://api.teamtailor.com/v1/nps-responses","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","nps-responses"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"c3e8aca9-0e89-4b61-96ca-ab080068f627","name":"List nps responses","originalRequest":{"method":"GET","header":[],"url":"https://api.teamtailor.com/v1/nps-responses"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"html","header":[{"key":"Date","value":"Wed, 10 Apr 2024 07:57:23 GMT"},{"key":"Content-Type","value":"text/html"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.25.4"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Cache-Control","value":"no-cache"},{"key":"Content-Security-Policy","value":""},{"key":"X-Request-Id","value":"3372b5cd-b2fd-49ed-a6c8-f5a83ab05773"},{"key":"X-Runtime","value":"0.008975"},{"key":"X-Rack-Cache","value":"miss"},{"key":"Vary","value":"Origin"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"c8ff290d-3c91-4f1d-9f69-0cca181eaf56\",\n            \"type\": \"nps-responses\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.com/v1/nps-responses/c8ff290d-3c91-4f1d-9f69-0cca181eaf56\"\n            },\n            \"attributes\": {\n                \"created-at\": \"2023-12-04T14:46:41.869+01:00\",\n                \"updated-at\": \"2023-12-04T14:46:41.869+01:00\",\n                \"feedback\": \"Clear and open recruitment process.\",\n                \"on-reject\": false,\n                \"score\": 9,\n                \"scored-at\": \"2023-12-04T18:41:39.239+01:00\",\n                \"sent-at\": \"2023-12-04T14:46:41.869+01:00\"\n            },\n            \"relationships\": {\n                \"job-application\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/nps-responses/c8ff290d-3c91-4f1d-9f69-0cca181eaf56/relationships/job-application\",\n                        \"related\": \"https://api.teamtailor.com/v1/nps-responses/c8ff290d-3c91-4f1d-9f69-0cca181eaf56/job-application\"\n                    }\n                },\n                \"candidate\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/nps-responses/c8ff290d-3c91-4f1d-9f69-0cca181eaf56/relationships/candidate\",\n                        \"related\": \"https://api.teamtailor.com/v1/nps-responses/c8ff290d-3c91-4f1d-9f69-0cca181eaf56/candidate\"\n                    }\n                },\n                \"stage\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/nps-responses/c8ff290d-3c91-4f1d-9f69-0cca181eaf56/relationships/stage\",\n                        \"related\": \"https://api.teamtailor.com/v1/nps-responses/c8ff290d-3c91-4f1d-9f69-0cca181eaf56/stage\"\n                    }\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"record-count\": 1,\n        \"page-count\": 1\n    },\n    \"links\": {\n        \"first\": \"https://api.teamtailor.com/v1/nps-responses?page%5Bnumber%5D=1&page%5Bsize%5D=10\",\n        \"last\": \"https://api.teamtailor.com/v1/nps-responses?page%5Bnumber%5D=1&page%5Bsize%5D=10\"\n    }\n}"}],"_postman_id":"6d4535f5-5a4f-48d6-b1af-6be919679009"},{"name":"Show nps response","id":"dd29bf76-976b-41e9-9a21-f795ff56e72d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"}],"url":"https://api.teamtailor.com/v1/nps-response/c8ff290d-3c91-4f1d-9f69-0cca181eaf56","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","nps-response","c8ff290d-3c91-4f1d-9f69-0cca181eaf56"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"3c9f6175-c26a-4493-99ac-387566d9f437","name":"Show nps response","originalRequest":{"method":"GET","header":[],"url":"https://api.teamtailor.com/v1/nps-responses/c8ff290d-3c91-4f1d-9f69-0cca181eaf56"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"html","header":[{"key":"Date","value":"Wed, 10 Apr 2024 07:57:23 GMT"},{"key":"Content-Type","value":"text/html"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.25.4"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Cache-Control","value":"no-cache"},{"key":"Content-Security-Policy","value":""},{"key":"X-Request-Id","value":"3372b5cd-b2fd-49ed-a6c8-f5a83ab05773"},{"key":"X-Runtime","value":"0.008975"},{"key":"X-Rack-Cache","value":"miss"},{"key":"Vary","value":"Origin"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"c8ff290d-3c91-4f1d-9f69-0cca181eaf56\",\n        \"type\": \"nps-responses\",\n        \"links\": {\n            \"self\": \"https://api.teamtailor.com/v1/nps-responses/c8ff290d-3c91-4f1d-9f69-0cca181eaf56\"\n        },\n        \"attributes\": {\n                \"created-at\": \"2023-12-04T14:46:41.869+01:00\",\n                \"updated-at\": \"2023-12-04T14:46:41.869+01:00\",\n                \"feedback\": \"Clear and open recruitment process.\",\n                \"on-reject\": false,\n                \"score\": 9,\n                \"scored-at\": \"2023-12-04T18:41:39.239+01:00\",\n                \"sent-at\": \"2023-12-04T14:46:41.869+01:00\"\n        },\n        \"relationships\": {\n            \"job-application\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.com/v1/nps-responses/c8ff290d-3c91-4f1d-9f69-0cca181eaf56/relationships/job-application\",\n                    \"related\": \"https://api.teamtailor.com/v1/nps-responses/c8ff290d-3c91-4f1d-9f69-0cca181eaf56/job-application\"\n                }\n            },\n            \"candidate\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.com/v1/nps-responses/c8ff290d-3c91-4f1d-9f69-0cca181eaf56/relationships/candidate\",\n                    \"related\": \"https://api.teamtailor.com/v1/nps-responses/c8ff290d-3c91-4f1d-9f69-0cca181eaf56/candidate\"\n                }\n            },\n            \"stage\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.com/v1/nps-responses/c8ff290d-3c91-4f1d-9f69-0cca181eaf56/relationships/stage\",\n                    \"related\": \"https://api.teamtailor.com/v1/nps-responses/c8ff290d-3c91-4f1d-9f69-0cca181eaf56/stage\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"dd29bf76-976b-41e9-9a21-f795ff56e72d"}],"id":"55639fbf-f69a-4981-b775-05522a00f5fb","description":"<h1 id=\"nps-responses\">NPS responses</h1>\n<p>Required scope: Admin</p>\n<p>Read only resource.</p>\n<h3 id=\"attributes\">Attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>created-at</td>\n<td>datetime</td>\n<td></td>\n</tr>\n<tr>\n<td>updated-at</td>\n<td>datetime</td>\n<td></td>\n</tr>\n<tr>\n<td>feedback</td>\n<td>string</td>\n<td>Comment from the candidate</td>\n</tr>\n<tr>\n<td>on-reject</td>\n<td>boolean</td>\n<td><code>true</code> if NPS was sent from a reject stage</td>\n</tr>\n<tr>\n<td>score</td>\n<td>integer</td>\n<td>NPS score between 0-10</td>\n</tr>\n<tr>\n<td>scored-at</td>\n<td>datetime</td>\n<td>When the NPS score was submitted</td>\n</tr>\n<tr>\n<td>sent-at</td>\n<td>datetime</td>\n<td>When the NPS was sent to the candidate</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"relations\">Relations</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Relation</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>job-application</td>\n<td></td>\n</tr>\n<tr>\n<td>candidate</td>\n<td></td>\n</tr>\n<tr>\n<td>stage</td>\n<td>Stage from where the NPS was sent</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"55639fbf-f69a-4981-b775-05522a00f5fb","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}}},{"name":"Onboardings","item":[{"name":"Get onboardings","id":"339585b7-ee85-4c9f-b76a-d297132e56e8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"}],"url":"https://api.teamtailor.com/v1/onboardings","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Parameter</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>include</td>\n<td>Comma separated list of relationships to include in the response. Can include multiple levels of relationships, for example <code>form-answers.form-question</code></td>\n</tr>\n<tr>\n<td>filter (array)</td>\n<td>Allowed filters: candidate, user, department, role, location.  <br />For example <code>filter[department]=123&amp;filter[location]=456</code></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","onboardings"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"18e1624a-fd42-493c-a2f5-8184098a9fb1","name":"List onboardings","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"}],"url":"https://api.teamtailor.com/v1/onboardings"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"Content-Length","value":"19637"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.27.4"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Rate-Limit-Limit","value":"50"},{"key":"X-Rate-Limit-Remaining","value":"49"},{"key":"X-Rate-Limit-Reset","value":"2"},{"key":"X-Api-Version","value":"20240404"},{"key":"X-Api-Cache","value":"hit"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, PUT, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Origin, Content-Type, Accept, Authorization, Token"},{"key":"Access-Control-Max-Age","value":"1728000"},{"key":"ETag","value":"W/\"4fb830234e92473180c6d3524076a829\""},{"key":"Cache-Control","value":"must-revalidate, private, max-age=0"},{"key":"Content-Security-Policy","value":""},{"key":"X-Request-Id","value":"cf31bb12-c20f-40a6-85ee-2a161bedb657"},{"key":"X-Runtime","value":"0.021286"},{"key":"X-Rack-Cache","value":"miss"},{"key":"Vary","value":"Origin"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"12\",\n            \"type\": \"onboardings\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.com/v1/onboardings/12\"\n            },\n            \"attributes\": {\n                \"progress\": 0,\n                \"start-date\": \"2024-12-24\",\n                \"status\": \"active\",\n                \"welcome-message\": \"Welcome aboard John!\\n\\nWe are exited to have you onboard as Product Developer soon.\",\n                \"work-email\": \"john@acmecorp.com\",\n                \"created-at\": \"2024-12-11T20:14:39.839+10:00\",\n                \"updated-at\": \"2024-12-13T22:02:28.033+10:00\"\n            },\n            \"relationships\": {\n                \"candidate\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/onboardings/12/relationships/candidate\",\n                        \"related\": \"https://api.teamtailor.com/v1/onboardings/12/candidate\"\n                    }\n                },\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/onboardings/12/relationships/user\",\n                        \"related\": \"https://api.teamtailor.com/v1/onboardings/12/user\"\n                    }\n                },\n                \"department\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/onboardings/12/relationships/department\",\n                        \"related\": \"https://api.teamtailor.com/v1/onboardings/12/department\"\n                    }\n                },\n                \"role\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/onboardings/12/relationships/role\",\n                        \"related\": \"https://api.teamtailor.com/v1/onboardings/12/role\"\n                    }\n                },\n                \"location\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/onboardings/12/relationships/location\",\n                        \"related\": \"https://api.teamtailor.com/v1/onboardings/12/location\"\n                    }\n                },\n                \"job-application\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/onboardings/12/relationships/job-application\",\n                        \"related\": \"https://api.teamtailor.com/v1/onboardings/12/job-application\"\n                    }\n                },\n                \"forms\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/onboardings/12/relationships/forms\",\n                        \"related\": \"https://api.teamtailor.com/v1/onboardings/12/forms\"\n                    }\n                },\n                \"form-questions\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/onboardings/12/relationships/form-questions\",\n                        \"related\": \"https://api.teamtailor.com/v1/onboardings/12/form-questions\"\n                    }\n                },\n                \"form-answers\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/onboardings/12/relationships/form-answers\",\n                        \"related\": \"https://api.teamtailor.com/v1/onboardings/12/form-answers\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"135\",\n            \"type\": \"onboardings\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.com/v1/onboardings/135\"\n            },\n            \"attributes\": {\n                \"progress\": 42,\n                \"start-date\": \"2025-01-16\",\n                \"status\": \"active\",\n                \"welcome-message\": \"Welcome aboard Lisa!\\n\\nWe are exited to have you onboard as Sales Manager soon.\",\n                \"work-email\": \"lisa@acmecorp.com\",\n                \"created-at\": \"2025-01-08T23:18:27.920+10:00\",\n                \"updated-at\": \"2025-02-18T19:00:00.201+10:00\"\n            },\n            \"relationships\": {\n                \"candidate\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/onboardings/135/relationships/candidate\",\n                        \"related\": \"https://api.teamtailor.com/v1/onboardings/135/candidate\"\n                    }\n                },\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/onboardings/135/relationships/user\",\n                        \"related\": \"https://api.teamtailor.com/v1/onboardings/135/user\"\n                    }\n                },\n                \"department\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/onboardings/135/relationships/department\",\n                        \"related\": \"https://api.teamtailor.com/v1/onboardings/135/department\"\n                    }\n                },\n                \"role\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/onboardings/135/relationships/role\",\n                        \"related\": \"https://api.teamtailor.com/v1/onboardings/135/role\"\n                    }\n                },\n                \"location\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/onboardings/135/relationships/location\",\n                        \"related\": \"https://api.teamtailor.com/v1/onboardings/135/location\"\n                    }\n                },\n                \"job-application\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/onboardings/135/relationships/job-application\",\n                        \"related\": \"https://api.teamtailor.com/v1/onboardings/135/job-application\"\n                    }\n                },\n                \"forms\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/onboardings/135/relationships/forms\",\n                        \"related\": \"https://api.teamtailor.com/v1/onboardings/135/forms\"\n                    }\n                },\n                \"form-questions\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/onboardings/135/relationships/form-questions\",\n                        \"related\": \"https://api.teamtailor.com/v1/onboardings/135/form-questions\"\n                    }\n                },\n                \"form-answers\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/onboardings/135/relationships/form-answers\",\n                        \"related\": \"https://api.teamtailor.com/v1/onboardings/135/form-answers\"\n                    }\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"record-count\": 2,\n        \"page-count\": 1\n    },\n    \"links\": {\n        \"next\": \"https://api.teamtailor.com/v1/onboardings?page%5Bafter%5D=OTcz&page%5Bsize%5D=10\"\n    }\n}"}],"_postman_id":"339585b7-ee85-4c9f-b76a-d297132e56e8"},{"name":"Show onboarding","id":"b7bdedfb-6517-4819-9141-e8349db26dd2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Api-Version","value":"20240404","type":"text"}],"url":"https://api.teamtailor.com/v1/onboardings/12","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","onboardings","12"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"268946cd-d3b5-4599-9b60-6110de812b01","name":"Example","originalRequest":{"method":"GET","header":[{"key":"X-Api-Version","value":"20240404","type":"text"},{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"}],"url":"https://api.teamtailor.com/v1/onboardings/12"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 01 Apr 2025 12:45:51 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Content-Length","value":"1939"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.27.4"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Rate-Limit-Limit","value":"50"},{"key":"X-Rate-Limit-Remaining","value":"49"},{"key":"X-Rate-Limit-Reset","value":"9"},{"key":"X-Api-Version","value":"20240404"},{"key":"X-Api-Cache","value":"hit"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, PUT, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Origin, Content-Type, Accept, Authorization, Token"},{"key":"Access-Control-Max-Age","value":"1728000"},{"key":"ETag","value":"W/\"2ea6ddc96052bd19769c4774065a1f87\""},{"key":"Cache-Control","value":"must-revalidate, private, max-age=0"},{"key":"Content-Security-Policy","value":""},{"key":"X-Request-Id","value":"0d664983-c449-4048-9a7c-af715ff6b13e"},{"key":"X-Runtime","value":"0.025658"},{"key":"X-Rack-Cache","value":"miss"},{"key":"Vary","value":"Origin"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"12\",\n        \"type\": \"onboardings\",\n        \"links\": {\n            \"self\": \"https://api.teamtailor.com/v1/onboardings/12\"\n        },\n        \"attributes\": {\n            \"progress\": 0,\n            \"start-date\": \"2024-12-24\",\n            \"status\": \"active\",\n            \"welcome-message\": \"Welcome aboard test!\\n\\nWe are exited to have you onboard as Product Developer soon.\",\n            \"work-email\": null,\n            \"created-at\": \"2024-12-11T20:14:39.839+10:00\",\n            \"updated-at\": \"2024-12-13T22:02:28.033+10:00\"\n        },\n        \"relationships\": {\n            \"candidate\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.com/v1/onboardings/12/relationships/candidate\",\n                    \"related\": \"https://api.teamtailor.com/v1/onboardings/12/candidate\"\n                }\n            },\n            \"user\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.com/v1/onboardings/12/relationships/user\",\n                    \"related\": \"https://api.teamtailor.com/v1/onboardings/12/user\"\n                }\n            },\n            \"department\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.com/v1/onboardings/12/relationships/department\",\n                    \"related\": \"https://api.teamtailor.com/v1/onboardings/12/department\"\n                }\n            },\n            \"role\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.com/v1/onboardings/12/relationships/role\",\n                    \"related\": \"https://api.teamtailor.com/v1/onboardings/12/role\"\n                }\n            },\n            \"location\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.com/v1/onboardings/12/relationships/location\",\n                    \"related\": \"https://api.teamtailor.com/v1/onboardings/12/location\"\n                }\n            },\n            \"job-application\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.com/v1/onboardings/12/relationships/job-application\",\n                    \"related\": \"https://api.teamtailor.com/v1/onboardings/12/job-application\"\n                }\n            },\n            \"forms\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.com/v1/onboardings/12/relationships/forms\",\n                    \"related\": \"https://api.teamtailor.com/v1/onboardings/12/forms\"\n                }\n            },\n            \"form-questions\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.com/v1/onboardings/12/relationships/form-questions\",\n                    \"related\": \"https://api.teamtailor.com/v1/onboardings/12/form-questions\"\n                }\n            },\n            \"form-answers\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.com/v1/onboardings/12/relationships/form-answers\",\n                    \"related\": \"https://api.teamtailor.com/v1/onboardings/12/form-answers\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"b7bdedfb-6517-4819-9141-e8349db26dd2"}],"id":"e207bdd5-8fd2-40a5-ac40-2abb20857310","description":"<p><em>This resource is only available when using the</em> <a href=\"https://support.teamtailor.com/en/articles/10264836-start-the-onboarding-of-your-new-hires-in-teamtailor\"><i>Onboarding add-on feature</i></a><em>.</em></p>\n<p>This object represents the onboarding progress of a hired candidate. It has a status and progress percentage.</p>\n<p>When an onboarding is started, the candidate will receive forms to fill out according to the templates set up in Teamtailor. Get all the form answers including the questions for an onboarding by including these relations using a request like <code>/?include=form-answers.form-question</code>.</p>\n<h4 id=\"attributes\">Attributes</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Attribute</strong></th>\n<th><strong>Type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>progress</td>\n<td>number (0-100)</td>\n<td><strong>Read only</strong> Percentage of completed onboarding steps</td>\n</tr>\n<tr>\n<td>start-date</td>\n<td>date</td>\n<td>The new employee start date</td>\n</tr>\n<tr>\n<td>status</td>\n<td>string (\"active\", \"completed\", \"archived\")</td>\n<td>Status of the onboarding</td>\n</tr>\n<tr>\n<td>welcome-message</td>\n<td>string</td>\n<td>The welcome message sent as email to the employee</td>\n</tr>\n<tr>\n<td>work-email</td>\n<td>string (email)</td>\n<td>The new employee work email</td>\n</tr>\n<tr>\n<td>created-at</td>\n<td>date</td>\n<td>When the onboarding was created</td>\n</tr>\n<tr>\n<td>updated-at</td>\n<td>date</td>\n<td>When the onboarding was last updated</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"relationships\">Relationships</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Relation</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>candidate</td>\n<td>The candidate being onboarded</td>\n</tr>\n<tr>\n<td>user</td>\n<td>The primary contact or manager</td>\n</tr>\n<tr>\n<td>department</td>\n<td>Department of new employee</td>\n</tr>\n<tr>\n<td>role</td>\n<td>Role of new employee</td>\n</tr>\n<tr>\n<td>location</td>\n<td>Location of new employee</td>\n</tr>\n<tr>\n<td>job-application</td>\n<td>Job application object of new employee</td>\n</tr>\n<tr>\n<td>forms</td>\n<td>Forms sent to new employee to fill out</td>\n</tr>\n<tr>\n<td>form-questions</td>\n<td>Form questions from the forms that were sent</td>\n</tr>\n<tr>\n<td>form-answers</td>\n<td>Answers to the form questions that were sent</td>\n</tr>\n</tbody>\n</table>\n</div><p>Filters</p>\n","_postman_id":"e207bdd5-8fd2-40a5-ac40-2abb20857310","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}}},{"name":"Partner results","item":[{"name":"List partner results","id":"fc9c3e15-23a1-4ac3-a432-91ea2cf5517d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/partner-results","description":"<h2 id=\"list-partner-results\">List Partner Results</h2>\n<h3 id=\"example-parameters\">Example parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Default</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>include</td>\n<td>null</td>\n<td>Comma separated list of relations to include in the response. For example <code>candidate</code>.</td>\n</tr>\n<tr>\n<td>filter[candidate]</td>\n<td>null</td>\n<td>Filter by candidate.</td>\n</tr>\n<tr>\n<td>sort</td>\n<td>id</td>\n<td>Sort list by any of the partner result attributes.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","partner-results"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"d5e58dd8-99be-464f-b91f-593a9a3c5cbb","name":"List partner results","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/partner-results"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"ffffa6f5-85a1-4087-aba1-c78c0fac6da2\",\n            \"type\": \"partner-results\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/partner-results/ffffa6f5-85a1-4087-aba1-c78c0fac6da2\"\n            },\n            \"attributes\": {\n                \"assessment-score\": null,\n                \"attachments\": null,\n                \"created-at\": \"2020-12-09T14:04:28.000+01:00\",\n                \"details\": \"{}\",\n                \"partner-name\": null,\n                \"status\": \"sent\",\n                \"summary\": null,\n                \"url\": null\n            },\n            \"relationships\": {\n                \"candidate\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/partner-results/ffffa6f5-85a1-4087-aba1-c78c0fac6da2/relationships/candidate\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/partner-results/ffffa6f5-85a1-4087-aba1-c78c0fac6da2/candidate\"\n                    }\n                },\n                \"job\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/partner-results/ffffa6f5-85a1-4087-aba1-c78c0fac6da2/relationships/job\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/partner-results/ffffa6f5-85a1-4087-aba1-c78c0fac6da2/job\"\n                    }\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"record-count\": 1,\n        \"page-count\": 1\n    },\n    \"links\": {\n        \"first\": \"https://api.teamtailor.localhost/v1/partner-results?page%5Bnumber%5D=1&page%5Bsize%5D=10\",\n        \"last\": \"https://api.teamtailor.localhost/v1/partner-results?page%5Bnumber%5D=1&page%5Bsize%5D=10\"\n    }\n}"}],"_postman_id":"fc9c3e15-23a1-4ac3-a432-91ea2cf5517d"},{"name":"Show partner result","id":"baf8557b-ca0e-46b6-b1c4-fc516993eb67","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/partner-results/<insert your partner result uuid>","description":"<h2 id=\"show-a-partner-result\">Show a Partner Result</h2>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","partner-results","<insert your partner result uuid>"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"e3a39c82-05cb-4144-a6b7-bc1358e19334","name":"Show partner result","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/partner-results/<insert your partner result uuid>"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"ffffa6f5-85a1-4087-aba1-c78c0fac6da2\",\n        \"type\": \"partner-results\",\n        \"links\": {\n            \"self\": \"https://api.teamtailor.localhost/v1/partner-results/ffffa6f5-85a1-4087-aba1-c78c0fac6da2\"\n        },\n        \"attributes\": {\n            \"assessment-score\": null,\n            \"attachments\": null,\n            \"created-at\": \"2020-12-09T14:04:28.000+01:00\",\n            \"details\": \"{}\",\n            \"partner-name\": null,\n            \"status\": \"sent\",\n            \"summary\": null,\n            \"url\": null\n        },\n        \"relationships\": {\n            \"candidate\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/partner-results/ffffa6f5-85a1-4087-aba1-c78c0fac6da2/relationships/candidate\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/partner-results/ffffa6f5-85a1-4087-aba1-c78c0fac6da2/candidate\"\n                }\n            },\n            \"job\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/partner-results/ffffa6f5-85a1-4087-aba1-c78c0fac6da2/relationships/job\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/partner-results/ffffa6f5-85a1-4087-aba1-c78c0fac6da2/job\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"baf8557b-ca0e-46b6-b1c4-fc516993eb67"}],"id":"864328c7-8018-4960-bb7b-9c7e0091784c","description":"<h1 id=\"partner-results\">Partner Results</h1>\n<aside>\n  Required scope: Admin\n</aside>\n\n<h3 id=\"attributes\">Attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>assessment-score</td>\n<td>integer</td>\n<td>Score value</td>\n</tr>\n<tr>\n<td>attachments</td>\n<td>array</td>\n<td>Array of attachments</td>\n</tr>\n<tr>\n<td>details</td>\n<td>string</td>\n<td>Json string with partner-result details</td>\n</tr>\n<tr>\n<td>partner-name</td>\n<td>string</td>\n<td>Partner name</td>\n</tr>\n<tr>\n<td>status</td>\n<td>string</td>\n<td>Status</td>\n</tr>\n<tr>\n<td>summary</td>\n<td>string</td>\n<td>Summary</td>\n</tr>\n<tr>\n<td>url</td>\n<td>string</td>\n<td>Url</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"relations\">Relations</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Relation</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>candidate</td>\n<td>Candidate which the partner result concerns</td>\n</tr>\n<tr>\n<td>job</td>\n<td>Job the partner result was created from</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"864328c7-8018-4960-bb7b-9c7e0091784c","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}}},{"name":"Picked questions","item":[{"name":"List picked questions","id":"9993ac22-c262-49cf-8d2c-d84019554cc1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/picked-questions","description":"<h2 id=\"list-picked-questions\">List picked questions</h2>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","picked-questions"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"44b70c77-e295-47ea-9c7b-ed37c37b6b24","name":"List picked questions","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/picked-questions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"13\",\n            \"type\": \"picked-questions\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/picked-questions/13\"\n            },\n            \"attributes\": {\n                \"mandatory\": true\n            },\n            \"relationships\": {\n                \"question\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/picked-questions/13/relationships/question\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/picked-questions/13/question\"\n                    }\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"record-count\": 1,\n        \"page-count\": 1\n    },\n    \"links\": {\n        \"first\": \"https://api.teamtailor.localhost/v1/picked-questions?page%5Bnumber%5D=1&page%5Bsize%5D=10\",\n        \"last\": \"https://api.teamtailor.localhost/v1/picked-questions?page%5Bnumber%5D=1&page%5Bsize%5D=10\"\n    }\n}"}],"_postman_id":"9993ac22-c262-49cf-8d2c-d84019554cc1"}],"id":"275ce477-3010-4790-b380-1055373194ae","description":"<h1 id=\"picked-questions\">Picked questions</h1>\n<p>A picked question represents the relationship between job and question. It tells you if question is mandatory for that job.</p>\n<h3 id=\"attributes\">Attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>mandatory</td>\n<td>bolean</td>\n<td>Is question mandatory. Default is false</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"relations\">Relations</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Relation</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>question</td>\n<td>The question related to job</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"275ce477-3010-4790-b380-1055373194ae","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}}},{"name":"Questions","item":[{"name":"List questions","id":"1af91efb-8545-4cb8-8db2-8d41d77e489f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/questions","description":"<h2 id=\"list-questions\">List questions</h2>\n<p>Use this endpoint to retrieve lists of questions.</p>\n<h3 id=\"example-parameters\">Example parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Default</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>include</td>\n<td>null</td>\n<td>Comma separated list of relations to include in the response. For example <code>candidate</code>.</td>\n</tr>\n<tr>\n<td>sort</td>\n<td>id</td>\n<td>Sort list by any of the question attributes.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","questions"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"0be14189-1c03-4c30-a25d-1f8d8bbcdceb","name":"List questions","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/questions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"1\",\n            \"type\": \"questions\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/questions/1\"\n            },\n            \"attributes\": {\n                \"alternatives\": null,\n                \"end-with\": null,\n                \"multiple\": null,\n                \"question-type\": \"Boolean\",\n                \"start-with\": null,\n                \"title\": \"Are you a developer?\",\n                \"description\": \"Check this question if you write computer programs\",\n                \"unit\": null,\n                \"single-line\": null\n            }\n        },\n        {\n            \"id\": \"2\",\n            \"type\": \"questions\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/questions/2\"\n            },\n            \"attributes\": {\n                \"alternatives\": null,\n                \"end-with\": null,\n                \"multiple\": null,\n                \"question-type\": \"Boolean\",\n                \"start-with\": null,\n                \"title\": \"Are you a designer?\",\n                \"description\": \"Check this question if you do any type of design\",\n                \"unit\": null,\n                \"single-line\": null\n            }\n        },\n        {\n            \"id\": \"3\",\n            \"type\": \"questions\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/questions/3\"\n            },\n            \"attributes\": {\n                \"alternatives\": [\n                    {\n                        \"id\": 1,\n                        \"title\": \"Facebook\"\n                    },\n                    {\n                        \"id\": 2,\n                        \"title\": \"Twitter\"\n                    },\n                    {\n                        \"id\": 3,\n                        \"title\": \"Instagram\"\n                    },\n                    {\n                        \"id\": 4,\n                        \"title\": \"Snapchat\"\n                    },\n                    {\n                        \"id\": 5,\n                        \"title\": \"Other\"\n                    }\n                ],\n                \"end-with\": null,\n                \"multiple\": true,\n                \"question-type\": \"Choice\",\n                \"start-with\": null,\n                \"title\": \"Favorite social media platforms?\",\n                \"description\": \"Which ones do you use most or which ones do you prefer to use more.\",\n                \"unit\": null,\n                \"single-line\": null\n            }\n        },\n        {\n            \"id\": \"4\",\n            \"type\": \"questions\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/questions/4\"\n            },\n            \"attributes\": {\n                \"alternatives\": [\n                    {\n                        \"id\": 1,\n                        \"title\": \"VS Code\"\n                    },\n                    {\n                        \"id\": 2,\n                        \"title\": \"Atom\"\n                    },\n                    {\n                        \"id\": 3,\n                        \"title\": \"Sublime Text\"\n                    },\n                    {\n                        \"id\": 4,\n                        \"title\": \"TextMate\"\n                    },\n                    {\n                        \"id\": 5,\n                        \"title\": \"vim\"\n                    },\n                    {\n                        \"id\": 6,\n                        \"title\": \"emacs\"\n                    }\n                ],\n                \"end-with\": null,\n                \"multiple\": false,\n                \"question-type\": \"Choice\",\n                \"start-with\": null,\n                \"title\": \"Favorite text editor?\",\n                \"description\": \"A text editor is different from a word processor. Pick the one you are most comfortable with\",\n                \"unit\": null,\n                \"single-line\": null\n            }\n        },\n        {\n            \"id\": \"5\",\n            \"type\": \"questions\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/questions/5\"\n            },\n            \"attributes\": {\n                \"alternatives\": null,\n                \"end-with\": null,\n                \"multiple\": null,\n                \"question-type\": \"Text\",\n                \"start-with\": null,\n                \"title\": \"What did you learn this week?\",\n                \"description\": \"It could be anything, like making cookies, fixing something or any other thing which you learned\",\n                \"unit\": null,\n                \"single-line\": false\n            }\n        },\n        {\n            \"id\": \"6\",\n            \"type\": \"questions\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/questions/6\"\n            },\n            \"attributes\": {\n                \"alternatives\": null,\n                \"end-with\": 20,\n                \"multiple\": null,\n                \"question-type\": \"Range\",\n                \"start-with\": 0,\n                \"title\": \"Years of experience\",\n                \"description\": \"How long have you been doing this?\",\n                \"unit\": \"years\",\n                \"single-line\": null\n            }\n        }\n    ],\n    \"meta\": {\n        \"record-count\": 6,\n        \"page-count\": 1\n    },\n    \"links\": {\n        \"first\": \"https://api.teamtailor.localhost/v1/questions?page%5Bnumber%5D=1&page%5Bsize%5D=10\",\n        \"last\": \"https://api.teamtailor.localhost/v1/questions?page%5Bnumber%5D=1&page%5Bsize%5D=10\"\n    }\n}"}],"_postman_id":"1af91efb-8545-4cb8-8db2-8d41d77e489f"}],"id":"7e3882f4-0983-487c-af0d-d357e6e330db","description":"<h1 id=\"questions\">Questions</h1>\n<p>There are 5 types of question as specified by the <code>question-type</code> attribute.</p>\n<ul>\n<li><p><strong>Boolean</strong> - true or false</p>\n</li>\n<li><p><strong>Choice</strong> - array of alternatives. If <code>multiple</code> is true multiple answers are allowed. Otherwise only one.</p>\n</li>\n<li><p><strong>Range</strong> - answer could be a number within the range defined by <code>start-with</code> and <code>end-with</code>. The unit contains the range unit (i.e year or pieces).</p>\n</li>\n<li><p><strong>Video</strong> - answer with a video</p>\n</li>\n<li><p><strong>Text</strong> - free text answers. If <code>single-line</code> is true input will be an input field with type text. Otherwise it will be a text area.</p>\n</li>\n<li><p><strong>File</strong> - It will return return public url to file</p>\n</li>\n</ul>\n<h3 id=\"attributes\">Attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>alternatives</td>\n<td>array</td>\n<td>Alternatives for choice question</td>\n</tr>\n<tr>\n<td>end-with</td>\n<td>integer</td>\n<td>Range end</td>\n</tr>\n<tr>\n<td>multiple</td>\n<td>boolean</td>\n<td>Allow multiple answers or not for choice question</td>\n</tr>\n<tr>\n<td>question-type</td>\n<td>string</td>\n<td>Type of question</td>\n</tr>\n<tr>\n<td>start-with</td>\n<td>integer</td>\n<td>Range start</td>\n</tr>\n<tr>\n<td>title</td>\n<td>string</td>\n<td>Question title</td>\n</tr>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>Question description. Useful if you want to give some more detail about the question.</td>\n</tr>\n<tr>\n<td>unit</td>\n<td>string</td>\n<td>Unit for range question</td>\n</tr>\n<tr>\n<td>single-line</td>\n<td>boolean</td>\n<td>Single line answer for text question</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"d652b5c1-8b6b-46c2-945c-5fb3c92a80f4","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"e50b16c1-4719-405f-a841-7e792dac0a75","type":"text/javascript","exec":[""]}}],"_postman_id":"7e3882f4-0983-487c-af0d-d357e6e330db","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}}},{"name":"Referrals","item":[{"name":"List referrals","id":"623a08de-e9af-4c85-9121-3b8f089b6699","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/referrals","description":"<h2 id=\"list-referrals\">List Referrals</h2>\n<h3 id=\"example-parameters\">Example parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Default</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>include</td>\n<td>null</td>\n<td>Comma separated list of relations to include in the response. For example <code>candidate,department, division,job,role,user</code>.</td>\n</tr>\n<tr>\n<td>filter[candidate]</td>\n<td>null</td>\n<td>Filter by candidate.</td>\n</tr>\n<tr>\n<td>filter[department]</td>\n<td>null</td>\n<td>Filter by department.</td>\n</tr>\n<tr>\n<td>filter[division]</td>\n<td>null</td>\n<td>Filter by division.</td>\n</tr>\n<tr>\n<td>filter[email]</td>\n<td>null</td>\n<td>Filter by email.</td>\n</tr>\n<tr>\n<td>filter[job]</td>\n<td>null</td>\n<td>Filter by job.</td>\n</tr>\n<tr>\n<td>filter[phone]</td>\n<td>null</td>\n<td>Filter by phone.</td>\n</tr>\n<tr>\n<td>filter[role]</td>\n<td>null</td>\n<td>Filter by role.</td>\n</tr>\n<tr>\n<td>filter[user]</td>\n<td>null</td>\n<td>Filter by user.</td>\n</tr>\n<tr>\n<td>sort</td>\n<td>id</td>\n<td>Sort list by any of the referral attributes.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","referrals"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"f0a668fc-e473-4b70-830d-4e2a0a84d5a8","name":"List referrals","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20210218"}],"url":"https://api.teamtailor.com/v1/referrals"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"1\",\n            \"type\": \"referrals\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/referrals/1\"\n            },\n            \"attributes\": {\n                \"comment\": \"A promising candidate we should give a call!\",\n                \"created-at\": \"2020-10-30T10:39:11.769+01:00\",\n                \"email\": \"patrick@example.com\",\n                \"name\": \"Patrick McLaughlin\",\n                \"phone\": \"+4670123123\"\n            },\n            \"relationships\": {\n                \"candidate\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/referrals/1/relationships/candidate\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/referrals/1/candidate\"\n                    }\n                },\n                \"department\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/referrals/1/relationships/department\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/referrals/1/department\"\n                    }\n                },\n                \"job\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/referrals/1/relationships/job\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/referrals/1/job\"\n                    }\n                },\n                \"role\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/referrals/1/relationships/role\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/referrals/1/role\"\n                    }\n                },\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/referrals/1/relationships/user\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/referrals/1/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"2\",\n            \"type\": \"referrals\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/referrals/2\"\n            },\n            \"attributes\": {\n                \"comment\": null,\n                \"created-at\": \"2020-10-30T10:39:12.555+01:00\",\n                \"email\": null,\n                \"name\": \"Lacey Ledner\",\n                \"phone\": null\n            },\n            \"relationships\": {\n                \"candidate\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/referrals/2/relationships/candidate\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/referrals/2/candidate\"\n                    }\n                },\n                \"department\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/referrals/2/relationships/department\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/referrals/2/department\"\n                    }\n                },\n                \"job\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/referrals/2/relationships/job\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/referrals/2/job\"\n                    }\n                },\n                \"role\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/referrals/2/relationships/role\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/referrals/2/role\"\n                    }\n                },\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/referrals/2/relationships/user\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/referrals/2/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"3\",\n            \"type\": \"referrals\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/referrals/3\"\n            },\n            \"attributes\": {\n                \"comment\": null,\n                \"created-at\": \"2020-10-30T10:39:13.151+01:00\",\n                \"email\": null,\n                \"name\": \"Lacey Ledner\",\n                \"phone\": null\n            },\n            \"relationships\": {\n                \"candidate\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/referrals/3/relationships/candidate\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/referrals/3/candidate\"\n                    }\n                },\n                \"department\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/referrals/3/relationships/department\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/referrals/3/department\"\n                    }\n                },\n                \"job\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/referrals/3/relationships/job\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/referrals/3/job\"\n                    }\n                },\n                \"role\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/referrals/3/relationships/role\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/referrals/3/role\"\n                    }\n                },\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/referrals/3/relationships/user\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/referrals/3/user\"\n                    }\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"record-count\": 3,\n        \"page-count\": 1\n    },\n    \"links\": {\n        \"first\": \"https://api.teamtailor.localhost/v1/referrals?page%5Bnumber%5D=1&page%5Bsize%5D=10\",\n        \"last\": \"https://api.teamtailor.localhost/v1/referrals?page%5Bnumber%5D=1&page%5Bsize%5D=10\"\n    }\n}"}],"_postman_id":"623a08de-e9af-4c85-9121-3b8f089b6699"},{"name":"Show referral","id":"b4b3cb6f-aa89-482d-bfb6-9b9d57d96643","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/referrals/1","description":"<h2 id=\"show-an-referral\">Show an Referral</h2>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","referrals","1"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"3ae3d9ce-e20b-46a4-8080-100888800c9c","name":"Show referral","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/referrals/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"1\",\n        \"type\": \"referrals\",\n        \"links\": {\n            \"self\": \"https://api.teamtailor.localhost/v1/referrals/1\"\n        },\n        \"attributes\": {\n            \"comment\": null,\n            \"created-at\": \"2020-10-30T10:39:11.769+01:00\",\n            \"email\": null,\n            \"name\": \"Patrick McLaughlin\",\n            \"phone\": null\n        },\n        \"relationships\": {\n            \"candidate\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/referrals/1/relationships/candidate\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/referrals/1/candidate\"\n                }\n            },\n            \"department\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/referrals/1/relationships/department\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/referrals/1/department\"\n                }\n            },\n            \"job\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/referrals/1/relationships/job\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/referrals/1/job\"\n                }\n            },\n            \"role\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/referrals/1/relationships/role\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/referrals/1/role\"\n                }\n            },\n            \"user\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/referrals/1/relationships/user\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/referrals/1/user\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"b4b3cb6f-aa89-482d-bfb6-9b9d57d96643"}],"id":"d5845719-6ff8-4ea4-a765-a2864b02be9f","description":"<h1 id=\"referrals\">Referrals</h1>\n<p>Required scope: Admin</p>\n<h3 id=\"attributes\">Attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>comment</td>\n<td>string</td>\n<td>User's comment</td>\n</tr>\n<tr>\n<td>created-at</td>\n<td>date</td>\n<td></td>\n</tr>\n<tr>\n<td>email</td>\n<td>string</td>\n<td>Candidate's email</td>\n</tr>\n<tr>\n<td>linkedin-url</td>\n<td>string</td>\n<td>Candidate's LinkedIn profile url</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Candidate's name</td>\n</tr>\n<tr>\n<td>phone</td>\n<td>string</td>\n<td>Candidate's phone</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"relations\">Relations</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Relation</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>candidate</td>\n<td>Candidate which the referral concerns</td>\n</tr>\n<tr>\n<td>department</td>\n<td></td>\n</tr>\n<tr>\n<td>division</td>\n<td></td>\n</tr>\n<tr>\n<td>job</td>\n<td>Job which the referral concerns</td>\n</tr>\n<tr>\n<td>role</td>\n<td></td>\n</tr>\n<tr>\n<td>user</td>\n<td>User who creates the referral</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"e69905d5-8369-4bbe-b089-755c44c9d17d","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"e2828fc4-425c-447f-b3b2-9b4f4c126c7e","type":"text/javascript","exec":[""]}}],"_postman_id":"d5845719-6ff8-4ea4-a765-a2864b02be9f","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}}},{"name":"Regions","item":[{"name":"List regions","id":"3d2cda9e-0eae-4242-aaa7-ec9950741c0e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/regions","description":"<h2 id=\"list-regions\">List Regions</h2>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","regions"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"5209cd9b-ab90-42bc-97e5-20adfc300cee","name":"List regions","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/regions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"1\",\n            \"type\": \"regions\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/regions/1\"\n            },\n            \"attributes\": {\n                \"name\": \"Krakow\",\n                \"created-at\": \"2020-12-16T13:44:29.828+01:00\"\n            },\n            \"relationships\": {\n                \"locations\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/regions/1/relationships/locations\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/regions/1/locations\"\n                    }\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"texts\": {\n            \"all\": \"All regions\"\n        },\n        \"record-count\": 1,\n        \"page-count\": 1\n    },\n    \"links\": {\n        \"first\": \"https://api.teamtailor.localhost/v1/regions?page%5Bnumber%5D=1&page%5Bsize%5D=10\",\n        \"last\": \"https://api.teamtailor.localhost/v1/regions?page%5Bnumber%5D=1&page%5Bsize%5D=10\"\n    }\n}"}],"_postman_id":"3d2cda9e-0eae-4242-aaa7-ec9950741c0e"},{"name":"Show region","id":"8ced3f65-7b4f-470f-ad61-3cda77d85267","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/regions/1","description":"<h2 id=\"show-a-region\">Show a Region</h2>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","regions","1"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"84817a78-a1d8-4df0-a6a9-a4bdaa7cf3d8","name":"Show region","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/referrals/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"1\",\n        \"type\": \"referrals\",\n        \"links\": {\n            \"self\": \"https://api.teamtailor.localhost/v1/referrals/1\"\n        },\n        \"attributes\": {\n            \"comment\": null,\n            \"created-at\": \"2020-10-30T10:39:11.769+01:00\",\n            \"email\": null,\n            \"name\": \"Patrick McLaughlin\",\n            \"phone\": null\n        },\n        \"relationships\": {\n            \"candidate\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/referrals/1/relationships/candidate\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/referrals/1/candidate\"\n                }\n            },\n            \"department\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/referrals/1/relationships/department\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/referrals/1/department\"\n                }\n            },\n            \"job\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/referrals/1/relationships/job\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/referrals/1/job\"\n                }\n            },\n            \"role\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/referrals/1/relationships/role\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/referrals/1/role\"\n                }\n            },\n            \"user\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/referrals/1/relationships/user\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/referrals/1/user\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"8ced3f65-7b4f-470f-ad61-3cda77d85267"},{"name":"Create Region","id":"369a9a1c-2fe2-4283-ab35-959f95bf3028","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"regions\",\n        \"attributes\": {\n            \"name\": \"Created by API\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/regions","description":"<h2 id=\"create-region\">Create Region</h2>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","regions"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"715ea497-fc0e-40c1-9df6-3c229cb146b7","name":"Create region","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"regions\",\n        \"attributes\": {\n            \"name\": \"the name of the region\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/regions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"1\",\n            \"type\": \"regions\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/regions/1\"\n            },\n            \"attributes\": {\n                \"name\": \"Krakow\",\n                \"created-at\": \"2020-12-16T13:44:29.828+01:00\"\n            },\n            \"relationships\": {\n                \"locations\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/regions/1/relationships/locations\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/regions/1/locations\"\n                    }\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"texts\": {\n            \"all\": \"All regions\"\n        },\n        \"record-count\": 1,\n        \"page-count\": 1\n    },\n    \"links\": {\n        \"first\": \"https://api.teamtailor.localhost/v1/regions?page%5Bnumber%5D=1&page%5Bsize%5D=10\",\n        \"last\": \"https://api.teamtailor.localhost/v1/regions?page%5Bnumber%5D=1&page%5Bsize%5D=10\"\n    }\n}"}],"_postman_id":"369a9a1c-2fe2-4283-ab35-959f95bf3028"}],"id":"7f8dbddf-3620-4308-9fb0-c6c56eda20ff","description":"<h1 id=\"regions\">Regions</h1>\n<aside>\n  Required scope: Admin\n</aside>\n\n<h3 id=\"attributes\">Attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Region's name</td>\n</tr>\n<tr>\n<td>created-at</td>\n<td>date</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"relations\">Relations</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Relation</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>locations</td>\n<td>Locations on the region</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"01cebcee-4fcc-4a5a-b5c2-6ac9a1cd3b1a","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"b02473e8-01c2-4e81-907f-8ee5c656ccd6","type":"text/javascript","exec":[""]}}],"_postman_id":"7f8dbddf-3620-4308-9fb0-c6c56eda20ff","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}}},{"name":"Reject reasons","item":[{"name":"List reject reasons","id":"5df7d1c6-87ac-4a97-b463-b691092c0017","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/reject-reasons","description":"<h2 id=\"list-reject-reasons\">List Reject Reasons</h2>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","reject-reasons"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"a2e5d51e-e59b-405a-9643-ba66a0199c28","name":"List reject reasons","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/reject-reasons"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"1\",\n            \"type\": \"reject-reasons\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/reject-reasons/1\"\n            },\n            \"attributes\": {\n                \"reason\": \"Role not a fit\",\n                \"rejected-by-company\": false\n            },\n            \"relationships\": {\n                \"job-applications\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/reject-reasons/1/relationships/job-applications\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/reject-reasons/1/job-applications\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"2\",\n            \"type\": \"reject-reasons\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/reject-reasons/2\"\n            },\n            \"attributes\": {\n                \"reason\": \"Took another job\",\n                \"rejected-by-company\": false\n            },\n            \"relationships\": {\n                \"job-applications\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/reject-reasons/2/relationships/job-applications\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/reject-reasons/2/job-applications\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"3\",\n            \"type\": \"reject-reasons\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/reject-reasons/3\"\n            },\n            \"attributes\": {\n                \"reason\": \"3Salary & Benefits\",\n                \"rejected-by-company\": false\n            },\n            \"relationships\": {\n                \"job-applications\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/reject-reasons/3/relationships/job-applications\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/reject-reasons/3/job-applications\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"4\",\n            \"type\": \"reject-reasons\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/reject-reasons/4\"\n            },\n            \"attributes\": {\n                \"reason\": \"Personal reasons\",\n                \"rejected-by-company\": false\n            },\n            \"relationships\": {\n                \"job-applications\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/reject-reasons/4/relationships/job-applications\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/reject-reasons/4/job-applications\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"5\",\n            \"type\": \"reject-reasons\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/reject-reasons/5\"\n            },\n            \"attributes\": {\n                \"reason\": \"Cultural fit\",\n                \"rejected-by-company\": false\n            },\n            \"relationships\": {\n                \"job-applications\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/reject-reasons/5/relationships/job-applications\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/reject-reasons/5/job-applications\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"6\",\n            \"type\": \"reject-reasons\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/reject-reasons/6\"\n            },\n            \"attributes\": {\n                \"reason\": \"Commute & location\",\n                \"rejected-by-company\": false\n            },\n            \"relationships\": {\n                \"job-applications\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/reject-reasons/6/relationships/job-applications\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/reject-reasons/6/job-applications\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"7\",\n            \"type\": \"reject-reasons\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/reject-reasons/7\"\n            },\n            \"attributes\": {\n                \"reason\": \"Staying at current company\",\n                \"rejected-by-company\": false\n            },\n            \"relationships\": {\n                \"job-applications\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/reject-reasons/7/relationships/job-applications\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/reject-reasons/7/job-applications\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"8\",\n            \"type\": \"reject-reasons\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/reject-reasons/8\"\n            },\n            \"attributes\": {\n                \"reason\": \"Slow recruitment process\",\n                \"rejected-by-company\": false\n            },\n            \"relationships\": {\n                \"job-applications\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/reject-reasons/8/relationships/job-applications\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/reject-reasons/8/job-applications\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"9\",\n            \"type\": \"reject-reasons\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/reject-reasons/9\"\n            },\n            \"attributes\": {\n                \"reason\": \"Not interested in the first place\",\n                \"rejected-by-company\": false\n            },\n            \"relationships\": {\n                \"job-applications\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/reject-reasons/9/relationships/job-applications\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/reject-reasons/9/job-applications\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"10\",\n            \"type\": \"reject-reasons\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/reject-reasons/10\"\n            },\n            \"attributes\": {\n                \"reason\": \"4Other reasons\",\n                \"rejected-by-company\": false\n            },\n            \"relationships\": {\n                \"job-applications\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/reject-reasons/10/relationships/job-applications\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/reject-reasons/10/job-applications\"\n                    }\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"record-count\": 19,\n        \"page-count\": 2\n    },\n    \"links\": {\n        \"first\": \"https://api.teamtailor.localhost/v1/reject-reasons?page%5Bnumber%5D=1&page%5Bsize%5D=10\",\n        \"next\": \"https://api.teamtailor.localhost/v1/reject-reasons?page%5Bnumber%5D=2&page%5Bsize%5D=10\",\n        \"last\": \"https://api.teamtailor.localhost/v1/reject-reasons?page%5Bnumber%5D=2&page%5Bsize%5D=10\"\n    }\n}"}],"_postman_id":"5df7d1c6-87ac-4a97-b463-b691092c0017"},{"name":"Show reject reason","id":"8bbf69e2-a248-4712-b048-4b2afb185435","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/reject-reasons/1","description":"<h2 id=\"show-a-reject-reason\">Show a Reject Reason</h2>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","reject-reasons","1"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"7f619994-c7c3-4363-8e45-425ecd2b874d","name":"Show reject reason","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/reject-reasons/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"11\",\n        \"type\": \"reject-reasons\",\n        \"links\": {\n            \"self\": \"https://api.teamtailor.localhost/v1/reject-reasons/11\"\n        },\n        \"attributes\": {\n            \"reason\": \"Not a fit\",\n            \"rejected-by-company\": true\n        },\n        \"relationships\": {\n            \"job-applications\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/reject-reasons/11/relationships/job-applications\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/reject-reasons/11/job-applications\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"8bbf69e2-a248-4712-b048-4b2afb185435"},{"name":"Update reject reason","id":"72c7266d-ac6d-43dd-8682-4155e9ff1028","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"reject-reasons\",\n        \"id\": \"1\",\n        \"attributes\": {\n            \"rejected-by-company\": false\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/reject-reasons/1","description":"<h2 id=\"update-reject-reason\">Update Reject Reason</h2>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","reject-reasons","1"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"1e474b80-6345-4edd-9465-fe97b7aadbea","name":"Update reject reason","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"reject-reasons\",\n        \"id\": \"1\",\n        \"attributes\": {\n            \"rejected-by-company\": false\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/reject-reasons/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"11\",\n        \"type\": \"reject-reasons\",\n        \"links\": {\n            \"self\": \"https://api.teamtailor.localhost/v1/reject-reasons/11\"\n        },\n        \"attributes\": {\n            \"reason\": \"Not a fit\",\n            \"rejected-by-company\": false\n        },\n        \"relationships\": {\n            \"job-applications\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/reject-reasons/11/relationships/job-applications\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/reject-reasons/11/job-applications\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"72c7266d-ac6d-43dd-8682-4155e9ff1028"},{"name":"Delete reject reason","id":"b345b0d6-c89a-4669-bf51-362b1feb1fc5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/reject-reasons/1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","reject-reasons","1"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"9821d25f-0f45-4bb7-b3bf-8972be3ff089","name":"Delete reject reason","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/reject-reasons/1"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":null,"cookie":[],"responseTime":null,"body":""}],"_postman_id":"b345b0d6-c89a-4669-bf51-362b1feb1fc5"},{"name":"Create reject reason","id":"7a32a0b8-8735-4936-a954-2bc4a39df3ff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"data\": {\n    \"type\": \"reject-reasons\",\n    \"attributes\": {\n      \"reason\": \"Not a fit\",\n      \"rejected-by-company\": true\n    }\n  }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/reject-reasons","description":"<h2 id=\"create-reject-reason\">Create Reject reason</h2>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","reject-reasons"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"47ff790c-25db-400e-a11f-85590f8365fa","name":"Create reject reason","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"data\": {\n    \"type\": \"reject-reasons\",\n    \"attributes\": {\n      \"reason\": \"Not a fit\",\n      \"rejected-by-company\": true\n    }\n  }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/reject-reasons"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"36\",\n        \"type\": \"reject-reasons\",\n        \"links\": {\n            \"self\": \"https://api.teamtailor.localhost/v1/reject-reasons/36\"\n        },\n        \"attributes\": {\n            \"reason\": \"Not a fit\",\n            \"rejected-by-company\": true\n        },\n        \"relationships\": {\n            \"job-applications\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/reject-reasons/36/relationships/job-applications\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/reject-reasons/36/job-applications\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"7a32a0b8-8735-4936-a954-2bc4a39df3ff"}],"id":"419cd406-20e0-4202-98d1-1506f9bf4c8a","description":"<h1 id=\"reject-reasons\">Reject Reasons</h1>\n<aside>\n  Required scope: Admin\n</aside>\n\n<h3 id=\"attributes\">Attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>reason</td>\n<td>string</td>\n<td>Reason why is being rejected</td>\n</tr>\n<tr>\n<td>rejected-by-company</td>\n<td>boolean</td>\n<td>If <code>true</code>, the reason is coming from the company. Otherwise from the candidate</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"relations\">Relations</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Relation</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>job-applications</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"8e84af09-b995-417a-9bb8-75cba180a602","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"be6a398e-10a5-4c1b-8046-f6b01ee6f75f","type":"text/javascript","exec":[""]}}],"_postman_id":"419cd406-20e0-4202-98d1-1506f9bf4c8a","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}}},{"name":"Requisitions","item":[{"name":"List requisitions","id":"f7505c32-27f7-4b31-8fe5-8b74d510d060","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/requisitions","description":"<h2 id=\"list-requisitions\">List requisitions</h2>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","requisitions"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"3c75bd39-ce72-4bf1-bc58-dae2b3eb39e5","name":"List requisitions","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/requisitions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"1\",\n            \"type\": \"requisitions\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/requisitions/1\"\n            },\n            \"attributes\": {\n                \"job-title\": \"test\",\n                \"job-description\": \"test\",\n                \"country\": \"Sweden\",\n                \"min-salary\": null,\n                \"max-salary\": null,\n                \"currency\": \"SEK\",\n                \"salary-time-unit\": \"monthly\",\n                \"number-of-openings\": 1,\n                \"custom-form-answers\": {\n                    \"division\": \"Americas\"\n                },\n                \"status\": \"pending\",\n                \"hired-count\": 0,\n                \"created-at\": \"2020-12-17T14:46:32.841+01:00\"\n            },\n            \"relationships\": {\n                \"location\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/requisitions/1/relationships/location\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/requisitions/1/location\"\n                    }\n                },\n                \"department\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/requisitions/1/relationships/department\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/requisitions/1/department\"\n                    }\n                },\n                \"role\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/requisitions/1/relationships/role\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/requisitions/1/role\"\n                    }\n                },\n                \"recruiter\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/requisitions/1/relationships/recruiter\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/requisitions/1/recruiter\"\n                    }\n                },\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/requisitions/1/relationships/user\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/requisitions/1/user\"\n                    }\n                },\n                \"requisition-step-verdicts\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/requisitions/1/relationships/requisition-step-verdicts\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/requisitions/1/requisition-step-verdicts\"\n                    }\n                },\n                \"jobs\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/requisitions/1/relationships/jobs\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/requisitions/1/jobs\"\n                    }\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"record-count\": 1,\n        \"page-count\": 1\n    },\n    \"links\": {\n        \"first\": \"https://api.teamtailor.localhost/v1/requisitions?page%5Bnumber%5D=1&page%5Bsize%5D=10\",\n        \"last\": \"https://api.teamtailor.localhost/v1/requisitions?page%5Bnumber%5D=1&page%5Bsize%5D=10\"\n    }\n}"}],"_postman_id":"f7505c32-27f7-4b31-8fe5-8b74d510d060"},{"name":"Show requisition","id":"2f802891-a93a-4044-ae35-47a7908a93f0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/requisitions/1","description":"<h2 id=\"show-a-requisition\">Show a requisition</h2>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","requisitions","1"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"464f6179-0614-45f2-b2f2-fcce8523cd0a","name":"Show requisition","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/requisitions/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"1\",\n        \"type\": \"requisitions\",\n        \"links\": {\n            \"self\": \"https://api.teamtailor.localhost/v1/requisitions/1\"\n        },\n        \"attributes\": {\n            \"job-title\": \"test\",\n            \"job-description\": \"test\",\n            \"country\": \"Sweden\",\n            \"min-salary\": null,\n            \"max-salary\": null,\n            \"currency\": \"SEK\",\n            \"salary-time-unit\": \"monthly\",\n            \"number-of-openings\": 1,\n            \"custom-form-answers\": {\n                \"division\": \"Americas\"\n            },\n            \"status\": \"pending\",\n            \"hired-count\": 0,\n            \"created-at\": \"2020-12-17T14:46:32.841+01:00\"\n        },\n        \"relationships\": {\n            \"location\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/requisitions/1/relationships/location\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/requisitions/1/location\"\n                }\n            },\n            \"department\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/requisitions/1/relationships/department\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/requisitions/1/department\"\n                }\n            },\n            \"role\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/requisitions/1/relationships/role\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/requisitions/1/role\"\n                }\n            },\n            \"recruiter\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/requisitions/1/relationships/recruiter\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/requisitions/1/recruiter\"\n                }\n            },\n            \"user\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/requisitions/1/relationships/user\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/requisitions/1/user\"\n                }\n            },\n            \"requisition-step-verdicts\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/requisitions/1/relationships/requisition-step-verdicts\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/requisitions/1/requisition-step-verdicts\"\n                }\n            },\n            \"jobs\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/requisitions/1/relationships/jobs\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/requisitions/1/jobs\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"2f802891-a93a-4044-ae35-47a7908a93f0"},{"name":"Update requisition","id":"e534fe67-1824-4a44-8af6-24b9b1248c00","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"requisitions\",\n        \"id\": \"1\",\n        \"attributes\": {\n            \"job-title\": \"Updated by API\",\n            \"status\": \"pending\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/requisitions/1","description":"<h2 id=\"update-requisition\">Update Requisition</h2>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","requisitions","1"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"e4f95c6b-8fc7-43ed-9083-8824a5f50e49","name":"Update requisition","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"requisitions\",\n        \"id\": \"1\",\n        \"attributes\": {\n            \"job-title\": \"Updated by API\",\n            \"status\": \"pending\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/requisitions/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"2\",\n        \"type\": \"requisitions\",\n        \"links\": {\n            \"self\": \"https://api.teamtailor.localhost/v1/requisitions/2\"\n        },\n        \"attributes\": {\n            \"job-title\": \"Updated by API\",\n            \"job-description\": null,\n            \"country\": \"Sweden\",\n            \"min-salary\": null,\n            \"max-salary\": null,\n            \"currency\": \"SEK\",\n            \"salary-time-unit\": \"monthly\",\n            \"number-of-openings\": null,\n            \"custom-form-answers\": null,\n            \"status\": \"pending\",\n            \"hired-count\": 0,\n            \"created-at\": \"2020-12-17T14:57:19.308+01:00\"\n        },\n        \"relationships\": {\n            \"location\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/requisitions/2/relationships/location\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/requisitions/2/location\"\n                }\n            },\n            \"department\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/requisitions/2/relationships/department\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/requisitions/2/department\"\n                }\n            },\n            \"role\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/requisitions/2/relationships/role\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/requisitions/2/role\"\n                }\n            },\n            \"recruiter\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/requisitions/2/relationships/recruiter\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/requisitions/2/recruiter\"\n                }\n            },\n            \"user\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/requisitions/2/relationships/user\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/requisitions/2/user\"\n                }\n            },\n            \"requisition-step-verdicts\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/requisitions/2/relationships/requisition-step-verdicts\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/requisitions/2/requisition-step-verdicts\"\n                }\n            },\n            \"jobs\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/requisitions/2/relationships/jobs\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/requisitions/2/jobs\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"e534fe67-1824-4a44-8af6-24b9b1248c00"},{"name":"Create requisition","id":"dfc3b195-e3c5-4b50-85e9-7bae26bce4d6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"requisitions\",\n        \"attributes\": {\n            \"country\": \"Sweden\",\n            \"job-title\": \"Created by API\",\n            \"status\": \"approved\"\n        },\n        \"relationships\": {\n            \"location\": {\n                \"data\": {\n                    \"id\": 1,\n                    \"type\": \"locations\"\n                }\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/requisitions","description":"<h2 id=\"create-requisition\">Create Requisition</h2>\n<p>Use this endpoint to create a new requisition.  </p>\n<p>The requisition is assigned an <strong>approval flow</strong> automatically via <code>set_approval_flow</code>, if no default requisition flow exists, the API returns an error.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","requisitions"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"7ca3b598-33b7-4eec-895f-ff29aacadc9c","name":"Create requisition","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"requisitions\",\n        \"attributes\": {\n            \"country\": \"Sweden\",\n            \"job-title\": \"Created by API\",\n            \"status\": \"approved\"\n        },\n        \"relationships\": {\n            \"location\": {\n                \"data\": {\n                    \"id\": 1,\n                    \"type\": \"locations\"\n                }\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/requisitions"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"2\",\n        \"type\": \"requisitions\",\n        \"links\": {\n            \"self\": \"https://api.teamtailor.localhost/v1/requisitions/2\"\n        },\n        \"attributes\": {\n            \"job-title\": \"Created by API\",\n            \"job-description\": null,\n            \"country\": \"Sweden\",\n            \"min-salary\": null,\n            \"max-salary\": null,\n            \"currency\": \"SEK\",\n            \"salary-time-unit\": \"monthly\",\n            \"number-of-openings\": null,\n            \"custom-form-answers\": null,\n            \"status\": \"approved\",\n            \"hired-count\": 0,\n            \"created-at\": \"2020-12-17T14:57:19.308+01:00\"\n        },\n        \"relationships\": {\n            \"location\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/requisitions/2/relationships/location\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/requisitions/2/location\"\n                }\n            },\n            \"department\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/requisitions/2/relationships/department\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/requisitions/2/department\"\n                }\n            },\n            \"role\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/requisitions/2/relationships/role\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/requisitions/2/role\"\n                }\n            },\n            \"recruiter\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/requisitions/2/relationships/recruiter\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/requisitions/2/recruiter\"\n                }\n            },\n            \"user\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/requisitions/2/relationships/user\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/requisitions/2/user\"\n                }\n            },\n            \"requisition-step-verdicts\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/requisitions/2/relationships/requisition-step-verdicts\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/requisitions/2/requisition-step-verdicts\"\n                }\n            },\n            \"jobs\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/requisitions/2/relationships/jobs\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/requisitions/2/jobs\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"dfc3b195-e3c5-4b50-85e9-7bae26bce4d6"}],"id":"1e928d4e-a299-4211-902e-ff2472ec4bb1","description":"<h1 id=\"requisitions\">Requisitions</h1>\n<h3 id=\"attributes\">Attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>job-title*</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>job-description</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>country**</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>min-salary</td>\n<td>integer</td>\n<td></td>\n</tr>\n<tr>\n<td>max-salary</td>\n<td>integer</td>\n<td></td>\n</tr>\n<tr>\n<td>currency</td>\n<td>string</td>\n<td>The currency that the salary is set in</td>\n</tr>\n<tr>\n<td>salary-time-unit</td>\n<td>string</td>\n<td>\"monthly\" / \"yearly\" / \"hourly\"</td>\n</tr>\n<tr>\n<td>number-of-openings</td>\n<td>integer</td>\n<td>The number of people expected to be hired</td>\n</tr>\n<tr>\n<td>custom-form-answers</td>\n<td>JSON</td>\n<td>A list of key-value pairs. This will only have a value if the company has actively created a custom form in their requisition settings</td>\n</tr>\n<tr>\n<td>status</td>\n<td>string</td>\n<td>\"pending\" / \"rejected\" / \"approved\" / \"completed\"</td>\n</tr>\n<tr>\n<td>is-draft</td>\n<td>boolean</td>\n<td></td>\n</tr>\n<tr>\n<td>hired-count</td>\n<td>integer</td>\n<td>The number of hires from jobs related to the requisition</td>\n</tr>\n<tr>\n<td>created-at</td>\n<td>date</td>\n<td></td>\n</tr>\n<tr>\n<td>archived-at</td>\n<td>date</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"relations\">Relations</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Relation</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>location**</td>\n<td></td>\n</tr>\n<tr>\n<td>division</td>\n<td></td>\n</tr>\n<tr>\n<td>department</td>\n<td></td>\n</tr>\n<tr>\n<td>role</td>\n<td></td>\n</tr>\n<tr>\n<td>recruiter</td>\n<td>A user object</td>\n</tr>\n<tr>\n<td>requisition-step-verdicts</td>\n<td>The verdict of each user involved in the requisition's approval flow</td>\n</tr>\n<tr>\n<td>jobs</td>\n<td>The list of jobs created from this requisition</td>\n</tr>\n<tr>\n<td>user</td>\n<td>A user object (the creator of the requisition)</td>\n</tr>\n</tbody>\n</table>\n</div><p>*suggests that those attributes/relationships are required</p>\n<p>**suggests that those attributes/relationships are required unless <code>requisition.is-draft = true</code></p>\n<p>ℹ️ When creating or updating a requisition through the API and giving it the <code>approved</code> status, we will automatically create a \"pre-approved\" approval flow. The approval step will always be shown as being approved through the API.<br /><strong>The flow will be shown as either approved by</strong> (in order):<br />- the associated user sent in the payload<br />- a bot named after the API key name<br />- a \"Teamtailor API\" bot</p>\n<img src=\"https://content.pstmn.io/abcddaec-9fba-4e2b-a063-103e8187b45c/U2NyZWVuc2hvdCAyMDI2LTAyLTE5IGF0IDE2LjE4LjQ3LnBuZw==\" alt=\"Example%20of%20a%20pre-approved%20flow%20with%20a%20user\" />\n\n<img src=\"https://content.pstmn.io/efbc5ce7-c0c9-42b9-a199-57c16caa306d/U2NyZWVuc2hvdCAyMDI2LTAyLTE5IGF0IDE2LjE5LjAxLnBuZw==\" alt=\"Example%20of%20a%20pre-approved%20flow%20with%20a%20bot\" />","event":[{"listen":"prerequest","script":{"id":"2c22ab03-6fcf-4445-ab87-6d0984ba3d9d","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"25d92621-b081-4f90-96ac-9103be3c9645","type":"text/javascript","exec":[""]}}],"_postman_id":"1e928d4e-a299-4211-902e-ff2472ec4bb1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}}},{"name":"Requisition step verdicts","item":[{"name":"Show requisition step verdicts","id":"f4ee3e4f-ca1b-4ba0-9058-9d6f649bdcf5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/requisition-step-verdicts/1","description":"<h1 id=\"requisition-step-verdicts\">Requisition Step Verdicts</h1>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","requisition-step-verdicts","1"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"8c4b95db-e103-465d-ac12-03e5fa0c5a7b","name":"Show requisition step verdicts","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/requisition-step-verdicts/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"1\",\n        \"type\": \"requisition-step-verdicts\",\n        \"links\": {\n            \"self\": \"https://api.teamtailor.localhost/v1/requisition-step-verdicts/1\"\n        },\n        \"attributes\": {\n            \"status\": \"pending\",\n            \"requisition-step-index\": 0,\n            \"updated-at\": \"2020-12-17T14:46:33.101+01:00\"\n        },\n        \"relationships\": {\n            \"user\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/requisition-step-verdicts/1/relationships/user\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/requisition-step-verdicts/1/user\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"f4ee3e4f-ca1b-4ba0-9058-9d6f649bdcf5"},{"name":"Update requisition step verdict","id":"5b84b419-7d82-4233-a8ba-634d1e00ca4a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"requisitions\",\n        \"id\": \"1\",\n        \"attributes\": {\n            \"job-title\": \"Updated by API\",\n            \"status\": \"pending\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/requisitions/1","description":"<h2 id=\"update-a-requisition-step-verdict\">Update a requisition step verdict</h2>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","requisitions","1"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"f296a09e-4f5e-45bb-afc7-70fefc138371","name":"Update requisition","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"requisitions\",\n        \"id\": \"1\",\n        \"attributes\": {\n            \"job-title\": \"Updated by API\",\n            \"status\": \"pending\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/requisitions/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"2\",\n        \"type\": \"requisitions\",\n        \"links\": {\n            \"self\": \"https://api.teamtailor.localhost/v1/requisitions/2\"\n        },\n        \"attributes\": {\n            \"job-title\": \"Updated by API\",\n            \"job-description\": null,\n            \"country\": \"Sweden\",\n            \"min-salary\": null,\n            \"max-salary\": null,\n            \"currency\": \"SEK\",\n            \"salary-time-unit\": \"monthly\",\n            \"number-of-openings\": null,\n            \"custom-form-answers\": null,\n            \"status\": \"pending\",\n            \"hired-count\": 0,\n            \"created-at\": \"2020-12-17T14:57:19.308+01:00\"\n        },\n        \"relationships\": {\n            \"location\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/requisitions/2/relationships/location\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/requisitions/2/location\"\n                }\n            },\n            \"department\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/requisitions/2/relationships/department\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/requisitions/2/department\"\n                }\n            },\n            \"role\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/requisitions/2/relationships/role\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/requisitions/2/role\"\n                }\n            },\n            \"recruiter\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/requisitions/2/relationships/recruiter\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/requisitions/2/recruiter\"\n                }\n            },\n            \"user\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/requisitions/2/relationships/user\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/requisitions/2/user\"\n                }\n            },\n            \"requisition-step-verdicts\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/requisitions/2/relationships/requisition-step-verdicts\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/requisitions/2/requisition-step-verdicts\"\n                }\n            },\n            \"jobs\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/requisitions/2/relationships/jobs\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/requisitions/2/jobs\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"5b84b419-7d82-4233-a8ba-634d1e00ca4a"}],"id":"0a773ba5-9cb0-457f-88f6-4f95b3cb0f6b","description":"<h1 id=\"requisition-step-verdicts\">Requisition Step Verdicts</h1>\n","event":[{"listen":"prerequest","script":{"id":"1dcbdd87-984a-4761-a142-2ba1e2ceb648","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"15dcaaf6-fcc8-4956-a96c-b62d2c2203f3","type":"text/javascript","exec":[""]}}],"_postman_id":"0a773ba5-9cb0-457f-88f6-4f95b3cb0f6b","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}}},{"name":"Roles","item":[{"name":"List roles","id":"80fb1b5c-7f73-48a1-8a71-1f3b3b23dec0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/roles","description":"<h2 id=\"list-roles\">List roles</h2>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","roles"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"6e393c2f-d2a1-441c-bb3a-d0fdda2af8ff","name":"List roles","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/roles"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"4\",\n            \"type\": \"roles\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/roles/4\"\n            },\n            \"attributes\": {\n                \"name\": \"Salesperson\"\n            },\n            \"relationships\": {\n                \"department\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/roles/4/relationships/department\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/roles/4/department\"\n                    }\n                },\n                \"teams\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/roles/4/relationships/teams\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/roles/4/teams\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"5\",\n            \"type\": \"roles\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/roles/5\"\n            },\n            \"attributes\": {\n                \"name\": \"Account Manager\"\n            },\n            \"relationships\": {\n                \"department\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/roles/5/relationships/department\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/roles/5/department\"\n                    }\n                },\n                \"teams\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/roles/5/relationships/teams\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/roles/5/teams\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"6\",\n            \"type\": \"roles\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/roles/6\"\n            },\n            \"attributes\": {\n                \"name\": \"Key Account Manager\"\n            },\n            \"relationships\": {\n                \"department\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/roles/6/relationships/department\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/roles/6/department\"\n                    }\n                },\n                \"teams\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/roles/6/relationships/teams\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/roles/6/teams\"\n                    }\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"texts\": {\n            \"all\": \"All roles\"\n        },\n        \"record-count\": 3,\n        \"page-count\": 1\n    },\n    \"links\": {\n        \"first\": \"https://api.teamtailor.localhost/v1/roles?page%5Bnumber%5D=1&page%5Bsize%5D=10\",\n        \"last\": \"https://api.teamtailor.localhost/v1/roles?page%5Bnumber%5D=1&page%5Bsize%5D=10\"\n    }\n}"}],"_postman_id":"80fb1b5c-7f73-48a1-8a71-1f3b3b23dec0"},{"name":"Show role","id":"c779b600-5ea4-491f-8afb-5ca4f8a100cd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/roles/1","description":"<h2 id=\"show-a-role\">Show a Role</h2>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","roles","1"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"aeedda44-8f67-44b5-9e9c-c828372f4623","name":"Show role","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/roles/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"4\",\n        \"type\": \"roles\",\n        \"links\": {\n            \"self\": \"https://api.teamtailor.localhost/v1/roles/4\"\n        },\n        \"attributes\": {\n            \"name\": \"Salesperson\"\n        },\n        \"relationships\": {\n            \"department\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/roles/4/relationships/department\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/roles/4/department\"\n                }\n            },\n            \"teams\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/roles/4/relationships/teams\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/roles/4/teams\"\n                }\n            }\n        }\n    },\n    \"meta\": {\n        \"texts\": {\n            \"all\": \"All roles\"\n        }\n    }\n}"}],"_postman_id":"c779b600-5ea4-491f-8afb-5ca4f8a100cd"},{"name":"Delete role","id":"2f7255f8-fdbe-40c8-851b-ff491d7c421b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/roles/1","description":"<h2 id=\"delete-role\">Delete role</h2>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","roles","1"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"51a1c218-318e-424d-b137-1932e6fe744f","name":"Delete role","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/roles/1"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":null,"cookie":[],"responseTime":null,"body":""}],"_postman_id":"2f7255f8-fdbe-40c8-851b-ff491d7c421b"},{"name":"Create role","id":"485ad1b8-e5e7-4f21-b50a-c435cfcdbe03","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"roles\",\n        \"attributes\": {\n            \"name\": \"Front-end developer\"\n        },\n        \"relationships\": {\n            \"department\": {\n                \"data\": {\n                    \"id\": 1,\n                    \"type\": \"departments\"\n                }\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/roles","description":"<h2 id=\"create-role\">Create role</h2>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","roles"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"c5f36c42-064d-4ff4-8faa-29b8c6463438","name":"Create role","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"roles\",\n        \"attributes\": {\n            \"name\": \"Front-end developer\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/roles"},"status":"Forbidden","code":403,"_postman_previewlanguage":"html","header":null,"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": \"10\",\n    \"type\": \"roles\",\n    \"links\": {\n      \"self\": \"https://api.teamtailor.localhost/v1/roles/10\"\n    },\n    \"attributes\": {\n      \"name\": \"Front-end developer\"\n    },\n    \"relationships\": {\n      \"department\": {\n        \"links\": {\n          \"self\": \"https://api.teamtailor.localhost/v1/roles/10/relationships/department\",\n          \"related\": \"https://api.teamtailor.localhost/v1/roles/10/department\"\n        }\n      },\n      \"teams\": {\n        \"links\": {\n          \"self\": \"https://api.teamtailor.localhost/v1/roles/10/relationships/teams\",\n          \"related\": \"https://api.teamtailor.localhost/v1/roles/10/teams\"\n        }\n      }\n    }\n  }\n}"}],"_postman_id":"485ad1b8-e5e7-4f21-b50a-c435cfcdbe03"}],"id":"35c9b857-e43b-4812-9e5b-8dac8debd994","description":"<h1 id=\"roles\">Roles</h1>\n<h3 id=\"attributes\">Attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>The name of the role</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"relations\">Relations</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Relation</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>department</td>\n<td>Parent Department</td>\n</tr>\n<tr>\n<td>teams</td>\n<td>The teams this role is part of</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"f54d75a0-1d95-44a1-9544-61b7f2222f8b","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"531e51cf-1118-4c92-9f10-c0f7d0e9bd14","type":"text/javascript","exec":[""]}}],"_postman_id":"35c9b857-e43b-4812-9e5b-8dac8debd994","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}}},{"name":"Scorecard Criteria","item":[{"name":"List Scorecard Criteria","id":"fe8b6490-0c41-4062-a86c-2365cee4c016","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"}],"url":"https://api.teamtailor.com/v1/scorecard-criteria","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","scorecard-criteria"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"886b81d1-d767-4cd3-8f42-353f3ede45a9","name":"List Scorecard Criteria","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"}],"url":"https://api.teamtailor.com/v1/scorecard-criteria"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"1\",\n            \"type\": \"scorecard-criteria\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/scorecard-criteria/1\"\n            },\n            \"attributes\": {\n                \"name\": \"Communicative\"\n            }\n        },\n        {\n            \"id\": \"2\",\n            \"type\": \"scorecard-criteria\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/scorecard-criteria/2\"\n            },\n            \"attributes\": {\n                \"name\": \"Good first impression\"\n            }\n        },\n        {\n            \"id\": \"3\",\n            \"type\": \"scorecard-criteria\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/scorecard-criteria/3\"\n            },\n            \"attributes\": {\n                \"name\": \"Tech-savvy\"\n            }\n        },\n        {\n            \"id\": \"4\",\n            \"type\": \"scorecard-criteria\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/scorecard-criteria/4\"\n            },\n            \"attributes\": {\n                \"name\": \"Ruby on Rails\"\n            }\n        },\n        {\n            \"id\": \"5\",\n            \"type\": \"scorecard-criteria\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/scorecard-criteria/5\"\n            },\n            \"attributes\": {\n                \"name\": \"EmberJS\"\n            }\n        },\n        {\n            \"id\": \"6\",\n            \"type\": \"scorecard-criteria\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/scorecard-criteria/6\"\n            },\n            \"attributes\": {\n                \"name\": \"CSS\"\n            }\n        }\n    ],\n    \"meta\": {\n        \"record-count\": 6,\n        \"page-count\": 1\n    }\n}"}],"_postman_id":"fe8b6490-0c41-4062-a86c-2365cee4c016"},{"name":"Show Scorecard Criterium","id":"f2d8d469-360a-43f1-9e73-9e86c9ac8aa4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"}],"url":"https://api.teamtailor.com/v1/scorecard-criteria/","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","scorecard-criteria",""],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"62051f75-c273-445f-8220-5695952b0e52","name":"Show Scorecard Criterium","originalRequest":{"method":"GET","header":[]},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"1\",\n        \"type\": \"scorecard-criteria\",\n        \"links\": {\n            \"self\": \"https://api.teamtailor.localhost/v1/scorecard-criteria/1\"\n        },\n        \"attributes\": {\n            \"name\": \"Communicative\"\n        }\n    }\n}"}],"_postman_id":"f2d8d469-360a-43f1-9e73-9e86c9ac8aa4"}],"id":"0e586bbd-ba57-4c86-b40e-63f56dadd143","description":"<h1 id=\"scorecard-criteria\">Scorecard Criteria</h1>\n<p><strong>Read only</strong> API.</p>\n<h2 id=\"attributes\">Attributes</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>name</th>\n<th>type</th>\n<th>description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Name of the criterium</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"0e586bbd-ba57-4c86-b40e-63f56dadd143","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}}},{"name":"Scorecard Picks","item":[{"name":"List scorecard picks","id":"8d9aae24-dfbf-46ec-9639-e7f684726242","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"}],"url":"https://api.teamtailor.com/v1/scorecard-picks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","scorecard-picks"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"45b1307e-c32a-447c-91ce-a0eee4ee43f8","name":"List scorecard picks","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"}],"url":"https://api.teamtailor.com/v1/scorecard-picks"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"4\",\n            \"type\": \"scorecard-picks\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/scorecard-picks/4\"\n            },\n            \"relationships\": {\n                \"scorecard-criterium\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/scorecard-picks/4/relationships/scorecard-criterium\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/scorecard-picks/4/scorecard-criterium\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"5\",\n            \"type\": \"scorecard-picks\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/scorecard-picks/5\"\n            },\n            \"relationships\": {\n                \"scorecard-criterium\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/scorecard-picks/5/relationships/scorecard-criterium\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/scorecard-picks/5/scorecard-criterium\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"6\",\n            \"type\": \"scorecard-picks\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/scorecard-picks/6\"\n            },\n            \"relationships\": {\n                \"scorecard-criterium\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/scorecard-picks/6/relationships/scorecard-criterium\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/scorecard-picks/6/scorecard-criterium\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"7\",\n            \"type\": \"scorecard-picks\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/scorecard-picks/7\"\n            },\n            \"relationships\": {\n                \"scorecard-criterium\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/scorecard-picks/7/relationships/scorecard-criterium\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/scorecard-picks/7/scorecard-criterium\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"11\",\n            \"type\": \"scorecard-picks\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/scorecard-picks/11\"\n            },\n            \"relationships\": {\n                \"scorecard-criterium\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/scorecard-picks/11/relationships/scorecard-criterium\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/scorecard-picks/11/scorecard-criterium\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"12\",\n            \"type\": \"scorecard-picks\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/scorecard-picks/12\"\n            },\n            \"relationships\": {\n                \"scorecard-criterium\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/scorecard-picks/12/relationships/scorecard-criterium\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/scorecard-picks/12/scorecard-criterium\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"13\",\n            \"type\": \"scorecard-picks\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/scorecard-picks/13\"\n            },\n            \"relationships\": {\n                \"scorecard-criterium\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/scorecard-picks/13/relationships/scorecard-criterium\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/scorecard-picks/13/scorecard-criterium\"\n                    }\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"record-count\": 7,\n        \"page-count\": 1\n    }\n}"}],"_postman_id":"8d9aae24-dfbf-46ec-9639-e7f684726242"},{"name":"Show Scorecard Pick","id":"f86b8e62-eca1-4bbd-92f5-3fb069474e03","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"}],"url":"https://api.teamtailor.com/v1/scorecard-picks/","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","scorecard-picks",""],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"a295c501-203c-47e7-b00b-4ec3b4c154f8","name":"Show Scorecard Pick","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"}],"url":"https://api.teamtailor.com/v1/scorecard-picks/"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"4\",\n        \"type\": \"scorecard-picks\",\n        \"links\": {\n            \"self\": \"https://api.teamtailor.localhost/v1/scorecard-picks/4\"\n        },\n        \"relationships\": {\n            \"scorecard-criterium\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/scorecard-picks/4/relationships/scorecard-criterium\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/scorecard-picks/4/scorecard-criterium\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"f86b8e62-eca1-4bbd-92f5-3fb069474e03"}],"id":"28d0b5c3-4420-4c22-9436-7384ba99ab47","description":"<h1 id=\"scorecard-picks\">Scorecard Picks</h1>\n<p><strong>Read only</strong> API</p>\n<h2 id=\"relations\">Relations</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>relation</th>\n<th>description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>scorecard-criterium</td>\n<td>Criterium which's been assigned to scorecard pick</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"28d0b5c3-4420-4c22-9436-7384ba99ab47","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}}},{"name":"Scorecard Scores","item":[{"name":"List scorecard scores","id":"7b8c876f-433a-4021-a8f0-e9353a03f9a0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.teamtailor.com/v1/scorecard-scores","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","scorecard-scores"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"59fb69cc-a1c6-4aee-a1ba-4eb09b7fd281","name":"List scorecard scores","originalRequest":{"method":"GET","header":[]},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"1\",\n            \"type\": \"scorecard-scores\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/scorecard-scores/1\"\n            },\n            \"attributes\": {\n                \"created-at\": \"2025-05-07T20:01:42.951+02:00\",\n                \"score\": 4\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/scorecard-scores/1/relationships/user\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/scorecard-scores/1/user\"\n                    }\n                },\n                \"candidate\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/scorecard-scores/1/relationships/candidate\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/scorecard-scores/1/candidate\"\n                    }\n                },\n                \"scorecard-pick\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/scorecard-scores/1/relationships/scorecard-pick\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/scorecard-scores/1/scorecard-pick\"\n                    }\n                },\n                \"scorecard-criterium\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/scorecard-scores/1/relationships/scorecard-criterium\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/scorecard-scores/1/scorecard-criterium\"\n                    }\n                },\n                \"interview\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/scorecard-scores/1/relationships/interview\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/scorecard-scores/1/interview\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"2\",\n            \"type\": \"scorecard-scores\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/scorecard-scores/2\"\n            },\n            \"attributes\": {\n                \"created-at\": \"2025-05-07T20:01:42.951+02:00\",\n                \"score\": 5\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/scorecard-scores/2/relationships/user\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/scorecard-scores/2/user\"\n                    }\n                },\n                \"candidate\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/scorecard-scores/2/relationships/candidate\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/scorecard-scores/2/candidate\"\n                    }\n                },\n                \"scorecard-pick\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/scorecard-scores/2/relationships/scorecard-pick\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/scorecard-scores/2/scorecard-pick\"\n                    }\n                },\n                \"scorecard-criterium\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/scorecard-scores/2/relationships/scorecard-criterium\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/scorecard-scores/2/scorecard-criterium\"\n                    }\n                },\n                \"interview\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/scorecard-scores/2/relationships/interview\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/scorecard-scores/2/interview\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"3\",\n            \"type\": \"scorecard-scores\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/scorecard-scores/3\"\n            },\n            \"attributes\": {\n                \"created-at\": \"2025-05-07T20:01:42.951+02:00\",\n                \"score\": 3\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/scorecard-scores/3/relationships/user\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/scorecard-scores/3/user\"\n                    }\n                },\n                \"candidate\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/scorecard-scores/3/relationships/candidate\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/scorecard-scores/3/candidate\"\n                    }\n                },\n                \"scorecard-pick\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/scorecard-scores/3/relationships/scorecard-pick\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/scorecard-scores/3/scorecard-pick\"\n                    }\n                },\n                \"scorecard-criterium\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/scorecard-scores/3/relationships/scorecard-criterium\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/scorecard-scores/3/scorecard-criterium\"\n                    }\n                },\n                \"interview\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/scorecard-scores/3/relationships/interview\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/scorecard-scores/3/interview\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"4\",\n            \"type\": \"scorecard-scores\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/scorecard-scores/4\"\n            },\n            \"attributes\": {\n                \"created-at\": \"2025-05-14T02:12:15.299+02:00\",\n                \"score\": 3\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/scorecard-scores/4/relationships/user\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/scorecard-scores/4/user\"\n                    }\n                },\n                \"candidate\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/scorecard-scores/4/relationships/candidate\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/scorecard-scores/4/candidate\"\n                    }\n                },\n                \"scorecard-pick\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/scorecard-scores/4/relationships/scorecard-pick\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/scorecard-scores/4/scorecard-pick\"\n                    }\n                },\n                \"scorecard-criterium\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/scorecard-scores/4/relationships/scorecard-criterium\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/scorecard-scores/4/scorecard-criterium\"\n                    }\n                },\n                \"interview\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/scorecard-scores/4/relationships/interview\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/scorecard-scores/4/interview\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"5\",\n            \"type\": \"scorecard-scores\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/scorecard-scores/5\"\n            },\n            \"attributes\": {\n                \"created-at\": \"2025-05-14T02:12:15.299+02:00\",\n                \"score\": 5\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/scorecard-scores/5/relationships/user\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/scorecard-scores/5/user\"\n                    }\n                },\n                \"candidate\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/scorecard-scores/5/relationships/candidate\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/scorecard-scores/5/candidate\"\n                    }\n                },\n                \"scorecard-pick\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/scorecard-scores/5/relationships/scorecard-pick\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/scorecard-scores/5/scorecard-pick\"\n                    }\n                },\n                \"scorecard-criterium\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/scorecard-scores/5/relationships/scorecard-criterium\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/scorecard-scores/5/scorecard-criterium\"\n                    }\n                },\n                \"interview\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/scorecard-scores/5/relationships/interview\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/scorecard-scores/5/interview\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"6\",\n            \"type\": \"scorecard-scores\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/scorecard-scores/6\"\n            },\n            \"attributes\": {\n                \"created-at\": \"2025-05-14T02:12:15.299+02:00\",\n                \"score\": 5\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/scorecard-scores/6/relationships/user\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/scorecard-scores/6/user\"\n                    }\n                },\n                \"candidate\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/scorecard-scores/6/relationships/candidate\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/scorecard-scores/6/candidate\"\n                    }\n                },\n                \"scorecard-pick\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/scorecard-scores/6/relationships/scorecard-pick\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/scorecard-scores/6/scorecard-pick\"\n                    }\n                },\n                \"scorecard-criterium\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/scorecard-scores/6/relationships/scorecard-criterium\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/scorecard-scores/6/scorecard-criterium\"\n                    }\n                },\n                \"interview\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/scorecard-scores/6/relationships/interview\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/scorecard-scores/6/interview\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"7\",\n            \"type\": \"scorecard-scores\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/scorecard-scores/7\"\n            },\n            \"attributes\": {\n                \"created-at\": \"2025-05-09T15:59:27.935+02:00\",\n                \"score\": 4\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/scorecard-scores/7/relationships/user\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/scorecard-scores/7/user\"\n                    }\n                },\n                \"candidate\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/scorecard-scores/7/relationships/candidate\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/scorecard-scores/7/candidate\"\n                    }\n                },\n                \"scorecard-pick\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/scorecard-scores/7/relationships/scorecard-pick\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/scorecard-scores/7/scorecard-pick\"\n                    }\n                },\n                \"scorecard-criterium\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/scorecard-scores/7/relationships/scorecard-criterium\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/scorecard-scores/7/scorecard-criterium\"\n                    }\n                },\n                \"interview\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/scorecard-scores/7/relationships/interview\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/scorecard-scores/7/interview\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"8\",\n            \"type\": \"scorecard-scores\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/scorecard-scores/8\"\n            },\n            \"attributes\": {\n                \"created-at\": \"2025-05-09T15:59:27.935+02:00\",\n                \"score\": 4\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/scorecard-scores/8/relationships/user\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/scorecard-scores/8/user\"\n                    }\n                },\n                \"candidate\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/scorecard-scores/8/relationships/candidate\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/scorecard-scores/8/candidate\"\n                    }\n                },\n                \"scorecard-pick\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/scorecard-scores/8/relationships/scorecard-pick\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/scorecard-scores/8/scorecard-pick\"\n                    }\n                },\n                \"scorecard-criterium\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/scorecard-scores/8/relationships/scorecard-criterium\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/scorecard-scores/8/scorecard-criterium\"\n                    }\n                },\n                \"interview\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/scorecard-scores/8/relationships/interview\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/scorecard-scores/8/interview\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"9\",\n            \"type\": \"scorecard-scores\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/scorecard-scores/9\"\n            },\n            \"attributes\": {\n                \"created-at\": \"2025-05-09T15:59:27.935+02:00\",\n                \"score\": 5\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/scorecard-scores/9/relationships/user\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/scorecard-scores/9/user\"\n                    }\n                },\n                \"candidate\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/scorecard-scores/9/relationships/candidate\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/scorecard-scores/9/candidate\"\n                    }\n                },\n                \"scorecard-pick\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/scorecard-scores/9/relationships/scorecard-pick\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/scorecard-scores/9/scorecard-pick\"\n                    }\n                },\n                \"scorecard-criterium\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/scorecard-scores/9/relationships/scorecard-criterium\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/scorecard-scores/9/scorecard-criterium\"\n                    }\n                },\n                \"interview\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/scorecard-scores/9/relationships/interview\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/scorecard-scores/9/interview\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"10\",\n            \"type\": \"scorecard-scores\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/scorecard-scores/10\"\n            },\n            \"attributes\": {\n                \"created-at\": \"2025-05-14T10:31:23.062+02:00\",\n                \"score\": 2\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/scorecard-scores/10/relationships/user\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/scorecard-scores/10/user\"\n                    }\n                },\n                \"candidate\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/scorecard-scores/10/relationships/candidate\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/scorecard-scores/10/candidate\"\n                    }\n                },\n                \"scorecard-pick\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/scorecard-scores/10/relationships/scorecard-pick\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/scorecard-scores/10/scorecard-pick\"\n                    }\n                },\n                \"scorecard-criterium\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/scorecard-scores/10/relationships/scorecard-criterium\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/scorecard-scores/10/scorecard-criterium\"\n                    }\n                },\n                \"interview\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/scorecard-scores/10/relationships/interview\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/scorecard-scores/10/interview\"\n                    }\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"record-count\": 63,\n        \"page-count\": 7\n    },\n    \"links\": {\n        \"next\": \"https://api.teamtailor.localhost/v1/scorecard-scores?page%5Bafter%5D=MTA&page%5Bsize%5D=10\"\n    }\n}"}],"_postman_id":"7b8c876f-433a-4021-a8f0-e9353a03f9a0"},{"name":"Show Scorecard Score","id":"6b9b0803-ad76-4dbb-bd42-4120dcff8628","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"}],"url":"https://api.teamtailor.com/v1/scorecard-scores/","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","scorecard-scores",""],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"80d6bcc4-36b6-4471-9205-765198e95783","name":"Show Scorecard Score","originalRequest":{"method":"GET","header":[]},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"1\",\n        \"type\": \"scorecard-scores\",\n        \"links\": {\n            \"self\": \"https://api.teamtailor.localhost/v1/scorecard-scores/1\"\n        },\n        \"attributes\": {\n            \"created-at\": \"2025-05-07T20:01:42.951+02:00\",\n            \"score\": 4\n        },\n        \"relationships\": {\n            \"user\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/scorecard-scores/1/relationships/user\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/scorecard-scores/1/user\"\n                }\n            },\n            \"candidate\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/scorecard-scores/1/relationships/candidate\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/scorecard-scores/1/candidate\"\n                }\n            },\n            \"scorecard-pick\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/scorecard-scores/1/relationships/scorecard-pick\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/scorecard-scores/1/scorecard-pick\"\n                }\n            },\n            \"scorecard-criterium\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/scorecard-scores/1/relationships/scorecard-criterium\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/scorecard-scores/1/scorecard-criterium\"\n                }\n            },\n            \"interview\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/scorecard-scores/1/relationships/interview\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/scorecard-scores/1/interview\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"6b9b0803-ad76-4dbb-bd42-4120dcff8628"}],"id":"1283166e-1681-40e2-b4ca-12397e1a86db","description":"<h1 id=\"scorecard-scores\">Scorecard Scores</h1>\n<p><strong>Read only</strong> API.</p>\n<h2 id=\"attributes\">Attributes</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>name</th>\n<th>type</th>\n<th>description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>created-at</td>\n<td>datetime</td>\n<td>Date and time when the scorecard score was created</td>\n</tr>\n<tr>\n<td>score</td>\n<td>integer</td>\n<td>The score that's been assined to the scorecard</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"relations\">Relations</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>relation</th>\n<th>description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>candidate</td>\n<td>Candidate's scorecard score</td>\n</tr>\n<tr>\n<td>interview</td>\n<td>Interviews's scorecard score</td>\n</tr>\n<tr>\n<td>scorecard-criterium</td>\n<td>Criterium to which the scorecard score's been assigned</td>\n</tr>\n<tr>\n<td>scorecard-pick</td>\n<td>Picked scorecard's score</td>\n</tr>\n<tr>\n<td>user</td>\n<td>User that's given the scorecard score</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"1283166e-1681-40e2-b4ca-12397e1a86db","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}}},{"name":"Stages","item":[{"name":"Create stage","id":"5a99b067-99c3-4d1e-94f7-9dec0afbb473","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"stages\",\n        \"attributes\": {\n            \"name\": \"Processs\"\n        },\n        \"relationships\": {\n            \"job\": {\n                \"data\": {\n                    \"type\": \"jobs\",\n                    \"id\": 1\n                }\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/stages","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","stages"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"4475312e-2c71-43de-8d7d-df02d20c5910","name":"Create stage","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Token token=5LTYCVDFeTJrkUDwz5widsRRVFmZ-4In9dopvmQy"},{"key":"X-Api-Version","value":"20240404"},{"key":"Content-Type","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"stages\",\n        \"attributes\": {\n            \"name\": \"Second Interview\"\n        },\n        \"relationships\": {\n            \"job\": {\n                \"data\": {\n                    \"type\": \"jobs\",\n                    \"id\": 1\n                }\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/stages"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"9008034\",\n        \"type\": \"stages\",\n        \"links\": {\n            \"self\": \"https://api.teamtailor.com/v1/stages/9008034\"\n        },\n        \"attributes\": {\n            \"created-at\": \"2021-12-03T13:47:28.126+01:00\",\n            \"updated-at\": \"2021-12-03T13:47:28.126+01:00\",\n            \"name\": \"Second Interview\",\n            \"legacy-stage-type-name\": \"In process\",\n            \"row-order\": 2080374784,\n            \"active-job-applications-count\": 0,\n            \"rejected-job-applications-count\": 0\n        },\n        \"relationships\": {\n            \"job-applications\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.com/v1/stages/9008034/relationships/job-applications\",\n                    \"related\": \"https://api.teamtailor.com/v1/stages/9008034/job-applications\"\n                }\n            },\n            \"triggers\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.com/v1/stages/9008034/relationships/triggers\",\n                    \"related\": \"https://api.teamtailor.com/v1/stages/9008034/triggers\"\n                }\n            },\n            \"job\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.com/v1/stages/9008034/relationships/job\",\n                    \"related\": \"https://api.teamtailor.com/v1/stages/9008034/job\"\n                }\n            },\n            \"stage-type\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.com/v1/stages/9008034/relationships/stage-type\",\n                    \"related\": \"https://api.teamtailor.com/v1/stages/9008034/stage-type\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"5a99b067-99c3-4d1e-94f7-9dec0afbb473"},{"name":"List stages","id":"4db471de-f6c1-4054-b63c-9b54cd2d7871","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","value":"20240404"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/stages","description":"<h2 id=\"list-stages\">List stages</h2>\n<p>Use this endpoint to retrieve lists of stages.</p>\n<h3 id=\"example-parameters\">Example parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Default</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>include</td>\n<td>null</td>\n<td>Comma separated list of relations to include in the response. For example <code>job-applications</code>.</td>\n</tr>\n<tr>\n<td>sort</td>\n<td>id</td>\n<td>Sort list by any of the stage attributes. <strong>Note!</strong> Use <code>row-order</code> to sort as in Teamtailor, but only when in the scope of a job.</td>\n</tr>\n<tr>\n<td>filter[job]</td>\n<td></td>\n<td>Filter stages by job by using <code>filter[job]=123</code></td>\n</tr>\n<tr>\n<td>filter[stage-type]</td>\n<td></td>\n<td>Filter stages by stage-type by using <code>filter[stage-type]=123</code></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","stages"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"3793b53a-88cd-4405-8e97-beaaf8021239","name":"List stages","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","value":"20240404"}],"url":"https://api.teamtailor.com/v1/stages"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"1\",\n            \"type\": \"stages\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.com/v1/stages/1\"\n            },\n            \"attributes\": {\n                \"created-at\": \"2020-10-30T10:32:37.660+01:00\",\n                \"updated-at\": \"2020-10-30T10:32:37.660+01:00\",\n                \"name\": \"Inbox\",\n                \"legacy-stage-type-name\": \"Inbox\",\n                \"row-order\": 0,\n                \"active-job-applications-count\": 2,\n                \"rejected-job-applications-count\": 0\n            },\n            \"relationships\": {\n                \"job-applications\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/stages/1/relationships/job-applications\",\n                        \"related\": \"https://api.teamtailor.com/v1/stages/1/job-applications\"\n                    }\n                },\n                \"triggers\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/stages/1/relationships/triggers\",\n                        \"related\": \"https://api.teamtailor.com/v1/stages/1/triggers\"\n                    }\n                },\n                \"job\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/stages/1/relationships/job\",\n                        \"related\": \"https://api.teamtailor.com/v1/stages/1/job\"\n                    }\n                },\n                \"stage-type\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/stages/1/relationships/stage-type\",\n                        \"related\": \"https://api.teamtailor.com/v1/stages/1/stage-type\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"2\",\n            \"type\": \"stages\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.com/v1/stages/2\"\n            },\n            \"attributes\": {\n                \"created-at\": \"2020-10-30T10:32:37.774+01:00\",\n                \"updated-at\": \"2020-10-30T10:32:37.774+01:00\",\n                \"name\": \"Reviewing\",\n                \"legacy-stage-type-name\": \"In process\",\n                \"row-order\": 1073741824,\n                \"active-job-applications-count\": 9,\n                \"rejected-job-applications-count\": 0\n            },\n            \"relationships\": {\n                \"job-applications\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/stages/2/relationships/job-applications\",\n                        \"related\": \"https://api.teamtailor.com/v1/stages/2/job-applications\"\n                    }\n                },\n                \"triggers\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/stages/2/relationships/triggers\",\n                        \"related\": \"https://api.teamtailor.com/v1/stages/2/triggers\"\n                    }\n                },\n                \"job\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/stages/2/relationships/job\",\n                        \"related\": \"https://api.teamtailor.com/v1/stages/2/job\"\n                    }\n                },\n                \"stage-type\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/stages/2/relationships/stage-type\",\n                        \"related\": \"https://api.teamtailor.com/v1/stages/2/stage-type\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"3\",\n            \"type\": \"stages\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.com/v1/stages/3\"\n            },\n            \"attributes\": {\n                \"created-at\": \"2020-10-30T10:32:38.037+01:00\",\n                \"updated-at\": \"2020-10-30T10:32:38.037+01:00\",\n                \"name\": \"Interview\",\n                \"legacy-stage-type-name\": \"In process\",\n                \"row-order\": 1610612736,\n                \"active-job-applications-count\": 8,\n                \"rejected-job-applications-count\": 0\n            },\n            \"relationships\": {\n                \"job-applications\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/stages/3/relationships/job-applications\",\n                        \"related\": \"https://api.teamtailor.com/v1/stages/3/job-applications\"\n                    }\n                },\n                \"triggers\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/stages/3/relationships/triggers\",\n                        \"related\": \"https://api.teamtailor.com/v1/stages/3/triggers\"\n                    }\n                },\n                \"job\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/stages/3/relationships/job\",\n                        \"related\": \"https://api.teamtailor.com/v1/stages/3/job\"\n                    }\n                },\n                \"stage-type\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/stages/3/relationships/stage-type\",\n                        \"related\": \"https://api.teamtailor.com/v1/stages/3/stage-type\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"4\",\n            \"type\": \"stages\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.com/v1/stages/4\"\n            },\n            \"attributes\": {\n                \"created-at\": \"2020-10-30T10:32:38.171+01:00\",\n                \"updated-at\": \"2020-10-30T10:32:38.171+01:00\",\n                \"name\": \"Offered\",\n                \"legacy-stage-type-name\": \"In process\",\n                \"row-order\": 1879048192,\n                \"active-job-applications-count\": 7,\n                \"rejected-job-applications-count\": 0\n            },\n            \"relationships\": {\n                \"job-applications\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/stages/4/relationships/job-applications\",\n                        \"related\": \"https://api.teamtailor.com/v1/stages/4/job-applications\"\n                    }\n                },\n                \"triggers\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/stages/4/relationships/triggers\",\n                        \"related\": \"https://api.teamtailor.com/v1/stages/4/triggers\"\n                    }\n                },\n                \"job\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/stages/4/relationships/job\",\n                        \"related\": \"https://api.teamtailor.com/v1/stages/4/job\"\n                    }\n                },\n                \"stage-type\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/stages/4/relationships/stage-type\",\n                        \"related\": \"https://api.teamtailor.com/v1/stages/4/stage-type\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"5\",\n            \"type\": \"stages\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.com/v1/stages/5\"\n            },\n            \"attributes\": {\n                \"created-at\": \"2020-10-30T10:32:38.182+01:00\",\n                \"updated-at\": \"2020-10-30T10:32:38.182+01:00\",\n                \"name\": \"Hired\",\n                \"legacy-stage-type-name\": \"Hired\",\n                \"row-order\": 2013265920,\n                \"active-job-applications-count\": 9,\n                \"rejected-job-applications-count\": 0\n            },\n            \"relationships\": {\n                \"job-applications\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/stages/5/relationships/job-applications\",\n                        \"related\": \"https://api.teamtailor.com/v1/stages/5/job-applications\"\n                    }\n                },\n                \"triggers\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/stages/5/relationships/triggers\",\n                        \"related\": \"https://api.teamtailor.com/v1/stages/5/triggers\"\n                    }\n                },\n                \"job\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/stages/5/relationships/job\",\n                        \"related\": \"https://api.teamtailor.com/v1/stages/5/job\"\n                    }\n                },\n                \"stage-type\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/stages/5/relationships/stage-type\",\n                        \"related\": \"https://api.teamtailor.com/v1/stages/5/stage-type\"\n                    }\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"record-count\": 117,\n        \"page-count\": 12\n    },\n    \"links\": {\n        \"first\": \"https://api.teamtailor.com/v1/stages?page%5Bnumber%5D=1&page%5Bsize%5D=10\",\n        \"next\": \"https://api.teamtailor.com/v1/stages?page%5Bnumber%5D=2&page%5Bsize%5D=10\",\n        \"last\": \"https://api.teamtailor.com/v1/stages?page%5Bnumber%5D=12&page%5Bsize%5D=10\"\n    }\n}"}],"_postman_id":"4db471de-f6c1-4054-b63c-9b54cd2d7871"},{"name":"Show stage","id":"4b809518-e0d1-451d-a0f6-cc2e5e878148","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/stages/1","description":"<h2 id=\"show-a-stage\">Show a stage</h2>\n<p>Use this endpoint to retrieve a specific stage.</p>\n<h3 id=\"example-parameters\">Example parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Default</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>include</td>\n<td>null</td>\n<td>Comma separated list of relations to include in the response. For example <code>job-applications</code>.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","stages","1"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"1dfb9421-ffca-40f8-8167-1ece8a8ea95e","name":"Show stage","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","value":"20240404"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/stages/1"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 09 Apr 2024 13:44:43 GMT"},{"key":"Content-Type","value":"application/vnd.api+json"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.25.4"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"X-Rate-Limit-Limit","value":"50"},{"key":"X-Rate-Limit-Remaining","value":"49"},{"key":"X-Rate-Limit-Reset","value":"7"},{"key":"X-Api-Version","value":"20210218"},{"key":"Vary","value":"Accept, Origin"},{"key":"X-Api-Cache","value":"miss"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Access-Control-Allow-Methods","value":"POST, GET, PUT, DELETE, OPTIONS"},{"key":"Access-Control-Allow-Headers","value":"Origin, Content-Type, Accept, Authorization, Token"},{"key":"Access-Control-Max-Age","value":"1728000"},{"key":"Cache-Control","value":"no-cache, private"},{"key":"Content-Security-Policy","value":""},{"key":"X-Request-Id","value":"5b11bd0c-93a0-4b7b-8090-d9d26e59b7a7"},{"key":"X-Runtime","value":"0.044085"},{"key":"X-Rack-Cache","value":"miss"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"1\",\n        \"type\": \"stages\",\n        \"links\": {\n            \"self\": \"https://api.teamtailor.com/v1/stages/1\"\n        },\n        \"attributes\": {\n            \"created-at\": \"2023-05-08T16:40:18.805+02:00\",\n            \"updated-at\": \"2024-04-08T16:33:11.217+02:00\",\n            \"name\": \"Inbox\",\n            \"legacy-stage-type-name\": \"Inbox\",\n            \"row-order\": 0,\n            \"active-job-applications-count\": 14,\n            \"rejected-job-applications-count\": 2\n        },\n        \"relationships\": {\n            \"job-applications\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.com/v1/stages/1/relationships/job-applications\",\n                    \"related\": \"https://api.teamtailor.com/v1/stages/1/job-applications\"\n                }\n            },\n            \"triggers\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.com/v1/stages/1/relationships/triggers\",\n                    \"related\": \"https://api.teamtailor.com/v1/stages/1/triggers\"\n                }\n            },\n            \"job\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.com/v1/stages/1/relationships/job\",\n                    \"related\": \"https://api.teamtailor.com/v1/stages/1/job\"\n                }\n            },\n            \"stage-type\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.com/v1/stages/1/relationships/stage-type\",\n                    \"related\": \"https://api.teamtailor.com/v1/stages/1/stage-type\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"4b809518-e0d1-451d-a0f6-cc2e5e878148"}],"id":"f7d1f021-112b-4631-9283-906429f805b5","description":"<h1 id=\"stages\">Stages</h1>\n<p>Required scope: Admin</p>\n<p>A stage indicate the candidate status for a job-application. The stages are defined for each job. Each job has two default stages which can't be deleted or modified:</p>\n<ul>\n<li><p>Inbox with the <em>stage-type</em> <code>inbox</code></p>\n</li>\n<li><p>Hired with the <em>stage-type</em> <code>hired</code></p>\n</li>\n</ul>\n<p>All other user created stages have <em>stage-type</em> <code>screening | interview | offer</code></p>\n<h3 id=\"attributes\">Attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>created-at</td>\n<td>date</td>\n<td></td>\n</tr>\n<tr>\n<td>updated-at</td>\n<td>date</td>\n<td></td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td>legacy-stage-type-name</td>\n<td>string</td>\n<td><em>Legacy attribute</em>. Possible values: <code>Inbox</code>, <code>In process</code>, or <code>Hired</code></td>\n</tr>\n<tr>\n<td>row-order</td>\n<td>integer</td>\n<td>Value stages are manually sorted by in Teamtailor</td>\n</tr>\n<tr>\n<td>active-job-applications-count</td>\n<td>integer</td>\n<td>Number of active applications in the stage</td>\n</tr>\n<tr>\n<td>rejected-job-applications-count</td>\n<td>integer</td>\n<td>Number of rejected applications in the stage</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"relations\">Relations</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Relation</strong></th>\n<th><strong>Comment</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>job-applications</td>\n<td></td>\n</tr>\n<tr>\n<td>job</td>\n<td></td>\n</tr>\n<tr>\n<td>triggers</td>\n<td></td>\n</tr>\n<tr>\n<td>stage-type</td>\n<td>Use to get the type of stage: inbox, screening, interview, offer, hired</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"4ef80571-0b49-407b-ab79-d4ca853952b4","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"9da0802f-622a-4004-9456-97f6f8a73b1d","type":"text/javascript","exec":[""]}}],"_postman_id":"f7d1f021-112b-4631-9283-906429f805b5","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}}},{"name":"Stage types","item":[{"name":"List stage types","id":"b64493c5-90ab-46af-81f2-29420b8c7cb4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"}],"url":"https://api.teamtailor.com/v1/stage-types","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","stage-types"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"d97f5860-ff6c-45bc-a7b9-205bd74f1e7f","name":"List stage types","originalRequest":{"method":"GET","header":[],"url":"https://api.teamtailor.com/v1/stage-types"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"html","header":[{"key":"Date","value":"Wed, 10 Apr 2024 07:57:23 GMT"},{"key":"Content-Type","value":"text/html"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.25.4"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Cache-Control","value":"no-cache"},{"key":"Content-Security-Policy","value":""},{"key":"X-Request-Id","value":"3372b5cd-b2fd-49ed-a6c8-f5a83ab05773"},{"key":"X-Runtime","value":"0.008975"},{"key":"X-Rack-Cache","value":"miss"},{"key":"Vary","value":"Origin"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"1\",\n            \"type\": \"stage-types\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.com/v1/stage-types/1\"\n            },\n            \"attributes\": {\n                \"category\": \"inbox\"\n            },\n            \"relationships\": {\n                \"stages\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/stage-types/1/relationships/stages\",\n                        \"related\": \"https://api.teamtailor.com/v1/stage-types/1/stages\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"2\",\n            \"type\": \"stage-types\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.com/v1/stage-types/2\"\n            },\n            \"attributes\": {\n                \"category\": \"screening\"\n            },\n            \"relationships\": {\n                \"stages\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/stage-types/2/relationships/stages\",\n                        \"related\": \"https://api.teamtailor.com/v1/stage-types/2/stages\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"3\",\n            \"type\": \"stage-types\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.com/v1/stage-types/3\"\n            },\n            \"attributes\": {\n                \"category\": \"interview\"\n            },\n            \"relationships\": {\n                \"stages\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/stage-types/3/relationships/stages\",\n                        \"related\": \"https://api.teamtailor.com/v1/stage-types/3/stages\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"4\",\n            \"type\": \"stage-types\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.com/v1/stage-types/4\"\n            },\n            \"attributes\": {\n                \"category\": \"offer\"\n            },\n            \"relationships\": {\n                \"stages\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/stage-types/4/relationships/stages\",\n                        \"related\": \"https://api.teamtailor.com/v1/stage-types/4/stages\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"5\",\n            \"type\": \"stage-types\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.com/v1/stage-types/5\"\n            },\n            \"attributes\": {\n                \"category\": \"hired\"\n            },\n            \"relationships\": {\n                \"stages\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/stage-types/5/relationships/stages\",\n                        \"related\": \"https://api.teamtailor.com/v1/stage-types/5/stages\"\n                    }\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"record-count\": 5,\n        \"page-count\": 1\n    },\n    \"links\": {\n        \"first\": \"https://api.teamtailor.com/v1/stage-types?page%5Bnumber%5D=1&page%5Bsize%5D=10\",\n        \"last\": \"https://api.teamtailor.com/v1/stage-types?page%5Bnumber%5D=1&page%5Bsize%5D=10\"\n    }\n}"}],"_postman_id":"b64493c5-90ab-46af-81f2-29420b8c7cb4"},{"name":"Show stage type","id":"a3152434-403c-4664-90c5-5080fa63d726","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","value":"20240404"}],"url":"https://api.teamtailor.com/v1/stage-types/1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","stage-types","1"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"f305973d-2632-4c87-9e51-f12847b4c4b8","name":"Show stage type","originalRequest":{"method":"GET","header":[],"url":"https://api.teamtailor.com/v1/stage-types"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"html","header":[{"key":"Date","value":"Wed, 10 Apr 2024 07:57:23 GMT"},{"key":"Content-Type","value":"text/html"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"nginx/1.25.4"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Cache-Control","value":"no-cache"},{"key":"Content-Security-Policy","value":""},{"key":"X-Request-Id","value":"3372b5cd-b2fd-49ed-a6c8-f5a83ab05773"},{"key":"X-Runtime","value":"0.008975"},{"key":"X-Rack-Cache","value":"miss"},{"key":"Vary","value":"Origin"},{"key":"Strict-Transport-Security","value":"max-age=63072000; includeSubDomains"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"1\",\n        \"type\": \"stage-types\",\n        \"links\": {\n            \"self\": \"https://api.teamtailor.com/v1/stage-types/1\"\n        },\n        \"attributes\": {\n            \"category\": \"inbox\"\n        },\n        \"relationships\": {\n            \"stages\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.com/v1/stage-types/1/relationships/stages\",\n                    \"related\": \"https://api.teamtailor.com/v1/stage-types/1/stages\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"a3152434-403c-4664-90c5-5080fa63d726"}],"id":"04411254-2faa-4e70-9721-5e7a98db2f94","description":"<h1 id=\"stage-types\">Stage types</h1>\n<p>Required scope: Admin</p>\n<p>Read only resource.</p>\n<p>Stage types are categories for Stages. Each Stage has one Stage type, and a Stage type has many Stages.</p>\n<h3 id=\"attributes\">Attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>category</td>\n<td>string</td>\n<td>Possible values: inbox, screening, interview, offer, hired</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"relations\">Relations</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Relation</th>\n<th>Comment</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>stages</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"04411254-2faa-4e70-9721-5e7a98db2f94","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}}},{"name":"Teams","item":[{"name":"List teams","id":"e64f7eab-0b22-45d5-a37c-fcc305029a2e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/teams","description":"<h2 id=\"list-teams\">List teams</h2>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","teams"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"d50a0e72-f5b1-42de-ad99-cba51467da8c","name":"List teams","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/teams"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"1\",\n            \"type\": \"teams\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/teams/1\"\n            },\n            \"attributes\": {\n                \"name\": \"test team\",\n                \"emoji\": \"👍\",\n                \"no-department\": false\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/teams/1/relationships/user\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/teams/1/user\"\n                    }\n                },\n                \"users\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/teams/1/relationships/users\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/teams/1/users\"\n                    }\n                },\n                \"departments\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/teams/1/relationships/departments\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/teams/1/departments\"\n                    }\n                },\n                \"locations\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/teams/1/relationships/locations\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/teams/1/locations\"\n                    }\n                },\n                \"roles\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/teams/1/relationships/roles\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/teams/1/roles\"\n                    }\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"record-count\": 1,\n        \"page-count\": 1\n    },\n    \"links\": {\n        \"first\": \"https://api.teamtailor.localhost/v1/teams?page%5Bnumber%5D=1&page%5Bsize%5D=10\",\n        \"last\": \"https://api.teamtailor.localhost/v1/teams?page%5Bnumber%5D=1&page%5Bsize%5D=10\"\n    }\n}"}],"_postman_id":"e64f7eab-0b22-45d5-a37c-fcc305029a2e"},{"name":"Show team","id":"0bfb6f1c-efa5-40d4-bec9-a79f4ba1c5e8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/teams/1","description":"<h2 id=\"show-a-team\">Show a Team</h2>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","teams","1"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"dfa6e018-bafd-40fa-a670-96db2a24724a","name":"Show team","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/teams/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"1\",\n        \"type\": \"teams\",\n        \"links\": {\n            \"self\": \"https://api.teamtailor.localhost/v1/teams/1\"\n        },\n        \"attributes\": {\n            \"name\": \"test team\",\n            \"emoji\": \"👍\",\n            \"no-department\": false\n        },\n        \"relationships\": {\n            \"user\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/teams/1/relationships/user\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/teams/1/user\"\n                }\n            },\n            \"users\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/teams/1/relationships/users\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/teams/1/users\"\n                }\n            },\n            \"departments\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/teams/1/relationships/departments\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/teams/1/departments\"\n                }\n            },\n            \"locations\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/teams/1/relationships/locations\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/teams/1/locations\"\n                }\n            },\n            \"roles\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/teams/1/relationships/roles\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/teams/1/roles\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"0bfb6f1c-efa5-40d4-bec9-a79f4ba1c5e8"},{"name":"Update team","id":"f7f90093-366b-4b63-a308-4d48771e3a91","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"id\": 1,\n        \"type\": \"teams\",\n        \"attributes\": {\n            \"name\": \"Front-end team\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/teams/1","description":"<h2 id=\"update-team\">Update team</h2>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","teams","1"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"3ea0e4bb-4965-4eb0-b40c-26fc82c9846c","name":"Update team","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"id\": 1,\n        \"type\": \"teams\",\n        \"attributes\": {\n            \"name\": \"Front-end team\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/teams/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"1\",\n        \"type\": \"teams\",\n        \"links\": {\n            \"self\": \"https://api.teamtailor.localhost/v1/teams/1\"\n        },\n        \"attributes\": {\n            \"name\": \"Front-end team\",\n            \"emoji\": \"👍\",\n            \"no-department\": false\n        },\n        \"relationships\": {\n            \"user\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/teams/1/relationships/user\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/teams/1/user\"\n                }\n            },\n            \"users\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/teams/1/relationships/users\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/teams/1/users\"\n                }\n            },\n            \"departments\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/teams/1/relationships/departments\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/teams/1/departments\"\n                }\n            },\n            \"locations\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/teams/1/relationships/locations\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/teams/1/locations\"\n                }\n            },\n            \"roles\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/teams/1/relationships/roles\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/teams/1/roles\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"f7f90093-366b-4b63-a308-4d48771e3a91"},{"name":"Delete team","id":"e415c955-2ca8-49c3-ac0a-298562f07e7c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/teams/1","description":"<h2 id=\"delete-team\">Delete team</h2>\n<p>Use this endpoint to delete a team.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","teams","1"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"e42df942-5107-46fe-872a-b3431cd915f4","name":"Delete team","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/teams/1"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":null,"cookie":[],"responseTime":null,"body":""}],"_postman_id":"e415c955-2ca8-49c3-ac0a-298562f07e7c"},{"name":"Create team","id":"4835508d-9ae2-4a8d-acbf-6b83d83fa498","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"},{"key":"Content-Type","type":"text","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"teams\",\n        \"attributes\": {\n            \"name\": \"Product Development (Team)\",\n            \"emoji\": \"👩‍💻\"\n        },\n        \"relationships\": {\n            \"user\": {\n                \"data\": {\n                    \"type\": \"users\",\n                    \"id\": \"1\"\n                }\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/teams","description":"<h2 id=\"create-team\">Create Team</h2>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","teams"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"f9c3e142-8226-4618-b240-1a4e11c7c32a","name":"Create team","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"},{"key":"Content-Type","type":"text","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"teams\",\n        \"attributes\": {\n            \"name\": \"Product Development (Team)\",\n            \"emoji\": \"👩‍💻\"\n        },\n        \"relationships\": {\n            \"user\": {\n                \"data\": {\n                    \"type\": \"users\",\n                    \"id\": \"1\"\n                }\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/teams"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"2\",\n        \"type\": \"teams\",\n        \"links\": {\n            \"self\": \"https://api.teamtailor.localhost/v1/teams/2\"\n        },\n        \"attributes\": {\n            \"name\": \"Product Development (Team)\",\n            \"emoji\": \"👩\\u200d💻\",\n            \"no-department\": false\n        },\n        \"relationships\": {\n            \"user\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/teams/2/relationships/user\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/teams/2/user\"\n                }\n            },\n            \"users\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/teams/2/relationships/users\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/teams/2/users\"\n                }\n            },\n            \"departments\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/teams/2/relationships/departments\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/teams/2/departments\"\n                }\n            },\n            \"locations\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/teams/2/relationships/locations\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/teams/2/locations\"\n                }\n            },\n            \"roles\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/teams/2/relationships/roles\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/teams/2/roles\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"4835508d-9ae2-4a8d-acbf-6b83d83fa498"}],"id":"d6c677e8-7105-4bbf-9413-4be624294a6e","description":"<h1 id=\"teams\">Teams</h1>\n<p>Use teams to customize your users access to candidates and jobs.</p>\n<p><a href=\"https://support.teamtailor.com/en/articles/3810173-teams-feature\">Read more about how to use Teams</a></p>\n<h3 id=\"attributes\">Attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>The team name</td>\n</tr>\n<tr>\n<td>emoji</td>\n<td>string</td>\n<td>The team icon</td>\n</tr>\n<tr>\n<td>no-department</td>\n<td>boolean</td>\n<td><code>true</code> if the team have access to candidates without department. Default: <code>false</code>.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"relations\">Relations</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Relation</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>user</td>\n<td>The team mananger</td>\n</tr>\n<tr>\n<td>users</td>\n<td>The team members</td>\n</tr>\n<tr>\n<td>jobs</td>\n<td>Jobs the team is added to</td>\n</tr>\n<tr>\n<td>departments</td>\n<td>The departments the team has access to</td>\n</tr>\n<tr>\n<td>roles</td>\n<td>The roles the team has access to</td>\n</tr>\n<tr>\n<td>locations</td>\n<td>The locations the team access is limited to</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"d99175cb-97d0-4066-851b-16bfa0babdf3","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"93b9f8c2-12b6-4e54-bdd8-47b15ddf7218","type":"text/javascript","exec":[""]}}],"_postman_id":"d6c677e8-7105-4bbf-9413-4be624294a6e","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}}},{"name":"Team memberships (Hiring teams)","item":[{"name":"List team memberships","id":"c2c48f40-37f5-47b6-806f-7c67023700b2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/team-memberships","description":"<h2 id=\"list-team-memberships\">List team memberships</h2>\n<p>Use this endpoint to retrieve lists of team memberships.</p>\n<h3 id=\"example-parameters\">Example parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Default</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>include</td>\n<td>null</td>\n<td>Comma separated list of relations to include in the response. For example <code>user,team</code></td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","team-memberships"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"b1305f7c-d4eb-4eaf-9466-095cf05fa4b1","name":"List team memberships","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/team-memberships"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"1\",\n            \"type\": \"team-memberships\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/team-memberships/1\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/team-memberships/1/relationships/user\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/team-memberships/1/user\"\n                    }\n                },\n                \"team\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/team-memberships/1/relationships/team\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/team-memberships/1/team\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"2\",\n            \"type\": \"team-memberships\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/team-memberships/2\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/team-memberships/2/relationships/user\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/team-memberships/2/user\"\n                    }\n                },\n                \"team\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/team-memberships/2/relationships/team\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/team-memberships/2/team\"\n                    }\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"record-count\": 2,\n        \"page-count\": 1\n    },\n    \"links\": {\n        \"first\": \"https://api.teamtailor.localhost/v1/team-memberships?page%5Bnumber%5D=1&page%5Bsize%5D=10\",\n        \"last\": \"https://api.teamtailor.localhost/v1/team-memberships?page%5Bnumber%5D=1&page%5Bsize%5D=10\"\n    }\n}"}],"_postman_id":"c2c48f40-37f5-47b6-806f-7c67023700b2"},{"name":"Show team membership","id":"655d04f0-0a60-4392-94bd-cb8d35751df7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/team-memberships/1","description":"<h2 id=\"show-a-team-membership\">Show a Team Membership</h2>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","team-memberships","1"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"e4acdb92-0cc8-4f70-a36f-78e4ecd4c1b4","name":"Show team membership","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/team-memberships/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"1\",\n        \"type\": \"team-memberships\",\n        \"links\": {\n            \"self\": \"https://api.teamtailor.localhost/v1/team-memberships/1\"\n        },\n        \"relationships\": {\n            \"user\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/team-memberships/1/relationships/user\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/team-memberships/1/user\"\n                }\n            },\n            \"team\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/team-memberships/1/relationships/team\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/team-memberships/1/team\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"655d04f0-0a60-4392-94bd-cb8d35751df7"},{"name":"Delete team membership","id":"506ee7f7-b0fe-46e8-8343-a2e50aa20d79","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/team-memberships/1","description":"<h2 id=\"delete-team-membership\">Delete team membership</h2>\n<p>Delete a team membership, i.e. remove a user from a hiring team.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","team-memberships","1"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"06cd927f-ab89-415b-96b1-57ee4d9838ba","name":"Delete team membership","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/team-memberships/1"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":null,"cookie":[],"responseTime":null,"body":""}],"_postman_id":"506ee7f7-b0fe-46e8-8343-a2e50aa20d79"},{"name":"Create Hiring Team / Add Team Member","id":"8fc66359-d6be-42b6-8072-76ff7cbf3e2d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"},{"key":"Content-Type","type":"text","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\n  \"data\": {\n    \"type\": \"team-memberships\",\n    \"relationships\": {\n      \"team\": {\n        \"data\": {\n          \"id\": \"1\",\n          \"type\": \"teams\"\n        }\n      },\n      \"user\": {\n        \"data\": {\n          \"id\": \"1\",\n          \"type\": \"users\"\n        }\n      }\n    }\n  }\n}\n","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/team-memberships","description":"<h2 id=\"create-hiring-team--add-team-member\">Create Hiring Team / Add Team Member</h2>\n<p>Create a new Team Membership.</p>\n<aside>\n  The relations <code>user</code> and <code>team</code> are required to be able to create a new team membership. A team is either a job or team.\n</aside>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","team-memberships"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"bd915dec-022a-4443-8f74-b28adfea67c7","name":"Create Hiring Team / Add Team Member","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"},{"key":"Content-Type","type":"text","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\n  \"data\": {\n    \"type\": \"team-memberships\",\n    \"relationships\": {\n      \"team\": {\n        \"data\": {\n          \"id\": \"1\",\n          \"type\": \"teams\"\n        }\n      },\n      \"user\": {\n        \"data\": {\n          \"id\": \"1\",\n          \"type\": \"users\"\n        }\n      }\n    }\n  }\n}\n","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/team-memberships"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"4\",\n        \"type\": \"team-memberships\",\n        \"links\": {\n            \"self\": \"https://api.teamtailor.localhost/v1/team-memberships/4\"\n        },\n        \"relationships\": {\n            \"user\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/team-memberships/4/relationships/user\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/team-memberships/4/user\"\n                }\n            },\n            \"team\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/team-memberships/4/relationships/team\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/team-memberships/4/team\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"8fc66359-d6be-42b6-8072-76ff7cbf3e2d"}],"id":"aa710beb-5fe1-4969-a4a1-e6d8ce57486c","description":"<h1 id=\"team-memberships-hiring-teams\">Team memberships (Hiring teams)</h1>\n<aside>\n  Required scope: Admin\n</aside>\n\n<p>This object represents the team memberships of a job or team.</p>\n<h3 id=\"attributes\">Attributes</h3>\n<p>The <code>team-membership</code> object has no attributes.</p>\n<h3 id=\"relations\">Relations</h3>\n<p>The <code>team-membership</code> object always has a relation to a <code>user</code> and a team, which is either a <code>job</code> or <code>team</code>.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Relation</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>user</td>\n<td>One of your company's registered users.</td>\n</tr>\n<tr>\n<td>team</td>\n<td>Either a Team or a Job.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"c316ce13-b3ab-46b2-af7d-9b1bf1b90495","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"aea7fac4-f1d9-4e36-9e23-3ffdf7dbd49a","type":"text/javascript","exec":[""]}}],"_postman_id":"aa710beb-5fe1-4969-a4a1-e6d8ce57486c","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}}},{"name":"Todos","item":[{"name":"List todos","id":"8ec518fe-369f-464e-911b-a2bf53bb0d3a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/todos","description":"<h2 id=\"list-todos\">List todos</h2>\n<h3 id=\"example-parameters\">Example parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Default</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>include</td>\n<td>null</td>\n<td>Comma separated list of relations to include in the response. For example <code>assigne,assigner,candidate,user</code>.</td>\n</tr>\n<tr>\n<td>filter[assignee]</td>\n<td>null</td>\n<td>Filter by assignee.</td>\n</tr>\n<tr>\n<td>filter[assigner]</td>\n<td>null</td>\n<td>Filter by assigner.</td>\n</tr>\n<tr>\n<td>filter[candidate]</td>\n<td>null</td>\n<td>Filter by candidate.</td>\n</tr>\n<tr>\n<td>filter[due]</td>\n<td>null</td>\n<td>Filter by due date.</td>\n</tr>\n<tr>\n<td>filter[user]</td>\n<td>null</td>\n<td>Filter by user.</td>\n</tr>\n<tr>\n<td>sort</td>\n<td>id</td>\n<td>Sort list by any of the todo attributes.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","todos"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"65132837-881d-46f2-87dc-4de80f8b301f","name":"List todos","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/todos"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"1\",\n            \"type\": \"todos\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/todos/1\"\n            },\n            \"attributes\": {\n                \"completed-at\": null,\n                \"created-at\": \"2020-12-17T16:33:02.122+01:00\",\n                \"due\": null,\n                \"value\": \"test\"\n            },\n            \"relationships\": {\n                \"assignee\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/todos/1/relationships/assignee\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/todos/1/assignee\"\n                    }\n                },\n                \"assigner\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/todos/1/relationships/assigner\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/todos/1/assigner\"\n                    }\n                },\n                \"candidate\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/todos/1/relationships/candidate\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/todos/1/candidate\"\n                    }\n                },\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/todos/1/relationships/user\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/todos/1/user\"\n                    }\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"record-count\": 1,\n        \"page-count\": 1\n    },\n    \"links\": {\n        \"first\": \"https://api.teamtailor.localhost/v1/todos?page%5Bnumber%5D=1&page%5Bsize%5D=10\",\n        \"last\": \"https://api.teamtailor.localhost/v1/todos?page%5Bnumber%5D=1&page%5Bsize%5D=10\"\n    }\n}"}],"_postman_id":"8ec518fe-369f-464e-911b-a2bf53bb0d3a"},{"name":"Show todo","id":"fab4ebcf-198c-4249-85e3-709de543b0e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/todos/1","description":"<h2 id=\"show-a-todo\">Show a todo</h2>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","todos","1"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"8834d5b8-81c3-4e66-a628-2c6c68c79aa0","name":"Show todo","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/todos/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"1\",\n        \"type\": \"todos\",\n        \"links\": {\n            \"self\": \"https://api.teamtailor.localhost/v1/todos/1\"\n        },\n        \"attributes\": {\n            \"completed-at\": null,\n            \"created-at\": \"2020-12-17T16:33:02.122+01:00\",\n            \"due\": null,\n            \"value\": \"test\"\n        },\n        \"relationships\": {\n            \"assignee\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/todos/1/relationships/assignee\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/todos/1/assignee\"\n                }\n            },\n            \"assigner\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/todos/1/relationships/assigner\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/todos/1/assigner\"\n                }\n            },\n            \"candidate\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/todos/1/relationships/candidate\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/todos/1/candidate\"\n                }\n            },\n            \"user\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/todos/1/relationships/user\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/todos/1/user\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"fab4ebcf-198c-4249-85e3-709de543b0e5"},{"name":"Update todo","id":"c99c43f0-7082-453d-8596-fa8147de50fe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"id\": \"1\",\n        \"attributes\": {\n            \"due\": \"2019-08-15\"\n        },\n        \"type\": \"todos\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/todos/1","description":"<h2 id=\"update-todo\">Update todo</h2>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","todos","1"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"bca4c7c8-5ff8-4631-9be1-d656e3709a2e","name":"Update todo","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"id\": \"1\",\n        \"attributes\": {\n            \"due\": \"2019-08-15\"\n        },\n        \"type\": \"todos\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/todos/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"1\",\n        \"type\": \"todos\",\n        \"links\": {\n            \"self\": \"https://api.teamtailor.localhost/v1/todos/1\"\n        },\n        \"attributes\": {\n            \"completed-at\": null,\n            \"created-at\": \"2020-12-17T16:33:02.122+01:00\",\n            \"due\": \"2019-08-15\",\n            \"value\": \"test\"\n        },\n        \"relationships\": {\n            \"assignee\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/todos/1/relationships/assignee\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/todos/1/assignee\"\n                }\n            },\n            \"assigner\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/todos/1/relationships/assigner\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/todos/1/assigner\"\n                }\n            },\n            \"candidate\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/todos/1/relationships/candidate\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/todos/1/candidate\"\n                }\n            },\n            \"user\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/todos/1/relationships/user\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/todos/1/user\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"c99c43f0-7082-453d-8596-fa8147de50fe"},{"name":"Delete todo","id":"82a61a0c-fc42-41f2-9ec6-a5a976b2aac0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/todos/1","description":"<h2 id=\"delete-todo\">Delete Todo</h2>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","todos","1"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"1dd2c617-815c-4692-979e-9f6803fdbe2d","name":"Delete todo","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/todos/1"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":null,"cookie":[],"responseTime":null,"body":""}],"_postman_id":"82a61a0c-fc42-41f2-9ec6-a5a976b2aac0"},{"name":"Create todo","id":"cd883d70-bc58-4e22-867b-b9d54b9f6e0f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"todos\",\n        \"attributes\": {\n            \"value\": \"Arrange an interview with him\"\n        },\n        \"relationships\": {\n            \"candidate\": {\n                \"data\": {\n                    \"id\": 1,\n                    \"type\": \"candidates\"\n                }\n            },\n            \"user\": {\n                \"data\": {\n                    \"id\": 1,\n                    \"type\": \"users\"\n                }\n            },\n            \"assigner\": {\n                \"data\": {\n                    \"id\": 1,\n                    \"type\": \"users\"\n                }\n            },\n            \"assignee\": {\n                \"data\": {\n                    \"id\": 1,\n                    \"type\": \"users\"\n                }\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/todos","description":"<h2 id=\"create-todo\">Create Todo</h2>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","todos"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"4459fad1-de74-4998-b7cb-e5740e67c89b","name":"Create todo","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"todos\",\n        \"attributes\": {\n            \"value\": \"Arrange an interview with him\"\n        },\n        \"relationships\": {\n            \"candidate\": {\n                \"data\": {\n                    \"id\": 1,\n                    \"type\": \"candidates\"\n                }\n            },\n            \"user\": {\n                \"data\": {\n                    \"id\": 1,\n                    \"type\": \"users\"\n                }\n            },\n            \"assigner\": {\n                \"data\": {\n                    \"id\": 1,\n                    \"type\": \"users\"\n                }\n            },\n            \"assignee\": {\n                \"data\": {\n                    \"id\": 1,\n                    \"type\": \"users\"\n                }\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/todos"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"2\",\n        \"type\": \"todos\",\n        \"links\": {\n            \"self\": \"https://api.teamtailor.localhost/v1/todos/2\"\n        },\n        \"attributes\": {\n            \"completed-at\": null,\n            \"created-at\": \"2020-12-17T16:43:02.264+01:00\",\n            \"due\": null,\n            \"value\": \"Arrange an interview with him\"\n        },\n        \"relationships\": {\n            \"assignee\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/todos/2/relationships/assignee\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/todos/2/assignee\"\n                }\n            },\n            \"assigner\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/todos/2/relationships/assigner\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/todos/2/assigner\"\n                }\n            },\n            \"candidate\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/todos/2/relationships/candidate\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/todos/2/candidate\"\n                }\n            },\n            \"user\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/todos/2/relationships/user\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/todos/2/user\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"cd883d70-bc58-4e22-867b-b9d54b9f6e0f"}],"id":"37420cfb-99ef-44ea-810e-23c0c7447ad0","description":"<h1 id=\"todos\">Todos</h1>\n<aside>\n  Required scope: Admin\n</aside>\n\n<h3 id=\"attributes\">Attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>completed-at</td>\n<td>date</td>\n<td>Date of completion</td>\n</tr>\n<tr>\n<td>created-at</td>\n<td>date</td>\n<td></td>\n</tr>\n<tr>\n<td>due</td>\n<td>date</td>\n<td>Due date</td>\n</tr>\n<tr>\n<td>value</td>\n<td>string</td>\n<td>Text value</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"relations\">Relations</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Relation</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>assignee</td>\n<td>User who is assigned to the todo</td>\n</tr>\n<tr>\n<td>assigner</td>\n<td>User who assigned the todo</td>\n</tr>\n<tr>\n<td>candidate</td>\n<td>Candidate which the todo concerns</td>\n</tr>\n<tr>\n<td>user</td>\n<td>User who creates the todo</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"e315df0d-b455-43ef-964d-a2411f17e48c","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"f4be5593-07a8-4903-a83c-da4d1f963838","type":"text/javascript","exec":[""]}}],"_postman_id":"37420cfb-99ef-44ea-810e-23c0c7447ad0","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}}},{"name":"Triggers","item":[{"name":"List triggers","id":"ef9c308a-94e0-408f-b293-14cb465bda2e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/triggers","description":"<h2 id=\"list-triggers\">List triggers</h2>\n<p>Use this endpoint to retrieve lists of triggers.</p>\n<h3 id=\"example-parameters\">Example parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Default</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>include</td>\n<td>null</td>\n<td>Comma separated list of relations to include in the response. For example <code>stage</code>.</td>\n</tr>\n<tr>\n<td>sort</td>\n<td>id</td>\n<td>Sort list by any of the trigger attributes.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","triggers"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"8d54cbb6-0b37-4419-a569-5cb538162751","name":"List triggers","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/triggers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"1\",\n            \"type\": \"triggers\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.localhost/v1/triggers/1\"\n            },\n            \"attributes\": {\n                \"created-at\": \"2020-12-02T14:11:14.792+01:00\",\n                \"updated-at\": \"2020-12-02T14:11:14.792+01:00\",\n                \"trigger-type\": \"SmartSchedule\",\n                \"data\": \"{\\\"duration\\\":\\\"60\\\",\\\"event_description\\\":\\\"\\\\u003cp\\\\u003etest meeting test meeting\\\\u003c/p\\\\u003e\\\",\\\"from_time\\\":\\\"09:00\\\",\\\"location\\\":\\\"\\\",\\\"meeting_room_id\\\":\\\"\\\",\\\"organizer_id\\\":\\\"4\\\",\\\"summary\\\":\\\"test meeting\\\",\\\"time_zone\\\":\\\"Stockholm\\\",\\\"to_time\\\":\\\"17:00\\\",\\\"has_video\\\":\\\"0\\\",\\\"provider_name\\\":\\\"\\\",\\\"profile_id\\\":\\\"\\\",\\\"connected_conference_id\\\":\\\"\\\",\\\"user_ids\\\":[\\\"4\\\"]}\"\n            },\n            \"relationships\": {\n                \"stage\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.localhost/v1/triggers/1/relationships/stage\",\n                        \"related\": \"https://api.teamtailor.localhost/v1/triggers/1/stage\"\n                    }\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"record-count\": 1,\n        \"page-count\": 1\n    },\n    \"links\": {\n        \"first\": \"https://api.teamtailor.localhost/v1/triggers?page%5Bnumber%5D=1&page%5Bsize%5D=10\",\n        \"last\": \"https://api.teamtailor.localhost/v1/triggers?page%5Bnumber%5D=1&page%5Bsize%5D=10\"\n    }\n}"}],"_postman_id":"ef9c308a-94e0-408f-b293-14cb465bda2e"},{"name":"Show trigger","id":"9a1e0b9b-392b-4e8b-8bda-51f60b97d8a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/stages/1","description":"<h2 id=\"show-a-trigger\">Show a trigger</h2>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","stages","1"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"cdb73fe3-1037-48da-b627-23d764684160","name":"Show trigger","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/stages/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"1\",\n        \"type\": \"stages\",\n        \"links\": {\n            \"self\": \"https://api.teamtailor.localhost/v1/stages/1\"\n        },\n        \"attributes\": {\n            \"created-at\": \"2020-10-30T10:32:37.660+01:00\",\n            \"updated-at\": \"2020-10-30T10:32:37.660+01:00\",\n            \"name\": \"Inbox\",\n            \"stage-type\": \"Inbox\",\n            \"row-order\": 0,\n            \"active-job-applications-count\": 2,\n            \"rejected-job-applications-count\": 0\n        },\n        \"relationships\": {\n            \"job-applications\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/stages/1/relationships/job-applications\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/stages/1/job-applications\"\n                }\n            },\n            \"triggers\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/stages/1/relationships/triggers\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/stages/1/triggers\"\n                }\n            },\n            \"job\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.localhost/v1/stages/1/relationships/job\",\n                    \"related\": \"https://api.teamtailor.localhost/v1/stages/1/job\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"9a1e0b9b-392b-4e8b-8bda-51f60b97d8a2"}],"id":"2abaad26-5174-46a0-bae8-df44c513059e","description":"<h1 id=\"triggers\">Triggers</h1>\n<aside>\n  Required scope: Admin\n</aside>\n\n<p>A trigger is created per stage to execute various actions on the candidates placed in the stage.</p>\n<h3 id=\"attributes\">Attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>created-at</td>\n<td>date</td>\n<td></td>\n</tr>\n<tr>\n<td>updated-at</td>\n<td>date</td>\n<td></td>\n</tr>\n<tr>\n<td>trigger-type</td>\n<td>string</td>\n<td>Possible values: Assessment, Message, Note, Nps, Share, SmartMove, SmartSchedule, Tag, Todo, Webhook</td>\n</tr>\n<tr>\n<td>data</td>\n<td>string</td>\n<td>Json string with trigger settings, specific to the trigger type.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"relations\">Relations</h3>\n<p>Relation   |\n-----------|------------\nstage      |</p>\n","event":[{"listen":"prerequest","script":{"id":"0dc98151-0575-4372-a8a5-c8f967b25cfd","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"fa788ae2-b1d1-4d8e-a342-55b4ea991bf8","type":"text/javascript","exec":[""]}}],"_postman_id":"2abaad26-5174-46a0-bae8-df44c513059e","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}}},{"name":"Users","item":[{"name":"List users","id":"362e25b9-c78b-481e-a5f8-b794fdfd808c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/users","description":"<h2 id=\"list-users\">List users</h2>\n<p>Use this endpoint to retrieve lists of users.</p>\n<h3 id=\"example-parameters\">Example parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Default</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>include</td>\n<td>null</td>\n<td>Comma separated list of relations to include in the response. For example <code>department,location</code>.</td>\n</tr>\n<tr>\n<td>filter[email]</td>\n<td>null</td>\n<td>Filter by email address.</td>\n</tr>\n<tr>\n<td>filter[department]</td>\n<td>null</td>\n<td>Filter by department.</td>\n</tr>\n<tr>\n<td>filter[external-id]</td>\n<td>null</td>\n<td>Filter by external-id.</td>\n</tr>\n<tr>\n<td>sort</td>\n<td>id</td>\n<td>Sort list by any of the user attributes.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","users"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"f332ccc9-edc2-4783-bc76-0e934b161335","name":"List users","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/users"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"1\",\n            \"type\": \"users\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.com/v1/users/1\"\n            },\n            \"attributes\": {\n                \"description\": null,\n                \"external-id\": null,\n                \"facebook-profile\": null,\n                \"hide-email\": null,\n                \"instagram-profile\": null,\n                \"linkedin-profile\": null,\n                \"locale\": null,\n                \"login-email\": \"email1@example.com\",\n                \"name\": \"Erik Erikson\",\n                \"other-profile\": null,\n                \"phone\": null,\n                \"picture\": null,\n                \"role\": \"admin\",\n                \"title\": \"My New Title\",\n                \"twitter-profile\": null,\n                \"username\": \"hammes\",\n                \"visible\": null,\n                \"signature\": \"<p>-- <br>Erik Erikson<br>Teamtailor</p>\",\n                \"time-format\": null,\n                \"time-zone\": null,\n                \"email\": \"email1@example.com\"\n            },\n            \"relationships\": {\n                \"activities\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/users/1/relationships/activities\",\n                        \"related\": \"https://api.teamtailor.com/v1/users/1/activities\"\n                    }\n                },\n                \"department\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/users/1/relationships/department\",\n                        \"related\": \"https://api.teamtailor.com/v1/users/1/department\"\n                    }\n                },\n                \"location\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/users/1/relationships/location\",\n                        \"related\": \"https://api.teamtailor.com/v1/users/1/location\"\n                    }\n                },\n                \"jobs\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/users/1/relationships/jobs\",\n                        \"related\": \"https://api.teamtailor.com/v1/users/1/jobs\"\n                    }\n                },\n                \"teams\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/users/1/relationships/teams\",\n                        \"related\": \"https://api.teamtailor.com/v1/users/1/teams\"\n                    }\n                },\n                \"notification-settings\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/users/1/relationships/notification-settings\",\n                        \"related\": \"https://api.teamtailor.com/v1/users/1/notification-settings\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"2\",\n            \"type\": \"users\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.com/v1/users/2\"\n            },\n            \"attributes\": {\n                \"description\": null,\n                \"external-id\": null,\n                \"facebook-profile\": null,\n                \"hide-email\": null,\n                \"instagram-profile\": null,\n                \"linkedin-profile\": null,\n                \"locale\": null,\n                \"login-email\": \"user@teamtailor.com\",\n                \"name\": \"Jacobs2\",\n                \"other-profile\": null,\n                \"phone\": null,\n                \"picture\": null,\n                \"role\": \"user\",\n                \"title\": null,\n                \"twitter-profile\": null,\n                \"username\": \"user\",\n                \"visible\": true,\n                \"signature\": \"<p>-- <br>Jacobs2<br>Teamtailor</p>\",\n                \"time-format\": null,\n                \"time-zone\": null,\n                \"email\": \"user@teamtailor.com\"\n            },\n            \"relationships\": {\n                \"activities\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/users/2/relationships/activities\",\n                        \"related\": \"https://api.teamtailor.com/v1/users/2/activities\"\n                    }\n                },\n                \"department\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/users/2/relationships/department\",\n                        \"related\": \"https://api.teamtailor.com/v1/users/2/department\"\n                    }\n                },\n                \"location\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/users/2/relationships/location\",\n                        \"related\": \"https://api.teamtailor.com/v1/users/2/location\"\n                    }\n                },\n                \"jobs\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/users/2/relationships/jobs\",\n                        \"related\": \"https://api.teamtailor.com/v1/users/2/jobs\"\n                    }\n                },\n                \"teams\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/users/2/relationships/teams\",\n                        \"related\": \"https://api.teamtailor.com/v1/users/2/teams\"\n                    }\n                },\n                \"notification-settings\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/users/2/relationships/notification-settings\",\n                        \"related\": \"https://api.teamtailor.com/v1/users/2/notification-settings\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"3\",\n            \"type\": \"users\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.com/v1/users/3\"\n            },\n            \"attributes\": {\n                \"description\": null,\n                \"external-id\": null,\n                \"facebook-profile\": null,\n                \"hide-email\": null,\n                \"instagram-profile\": null,\n                \"linkedin-profile\": null,\n                \"locale\": null,\n                \"login-email\": \"recruiter@teamtailor.com\",\n                \"name\": \"Rippin3\",\n                \"other-profile\": null,\n                \"phone\": null,\n                \"picture\": null,\n                \"role\": \"recruiter\",\n                \"title\": null,\n                \"twitter-profile\": null,\n                \"username\": \"recruiter\",\n                \"visible\": true,\n                \"signature\": \"<p>-- <br>Rippin3<br>Teamtailor</p>\",\n                \"time-format\": null,\n                \"time-zone\": null,\n                \"email\": \"recruiter@teamtailor.com\"\n            },\n            \"relationships\": {\n                \"activities\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/users/3/relationships/activities\",\n                        \"related\": \"https://api.teamtailor.com/v1/users/3/activities\"\n                    }\n                },\n                \"department\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/users/3/relationships/department\",\n                        \"related\": \"https://api.teamtailor.com/v1/users/3/department\"\n                    }\n                },\n                \"location\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/users/3/relationships/location\",\n                        \"related\": \"https://api.teamtailor.com/v1/users/3/location\"\n                    }\n                },\n                \"jobs\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/users/3/relationships/jobs\",\n                        \"related\": \"https://api.teamtailor.com/v1/users/3/jobs\"\n                    }\n                },\n                \"teams\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/users/3/relationships/teams\",\n                        \"related\": \"https://api.teamtailor.com/v1/users/3/teams\"\n                    }\n                },\n                \"notification-settings\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/users/3/relationships/notification-settings\",\n                        \"related\": \"https://api.teamtailor.com/v1/users/3/notification-settings\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"4\",\n            \"type\": \"users\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.com/v1/users/4\"\n            },\n            \"attributes\": {\n                \"description\": null,\n                \"external-id\": null,\n                \"facebook-profile\": null,\n                \"hide-email\": null,\n                \"instagram-profile\": null,\n                \"linkedin-profile\": null,\n                \"locale\": null,\n                \"login-email\": \"admin@teamtailor.com\",\n                \"name\": \"Kulas4\",\n                \"other-profile\": null,\n                \"phone\": null,\n                \"picture\": null,\n                \"role\": \"admin\",\n                \"title\": null,\n                \"twitter-profile\": null,\n                \"username\": \"admin\",\n                \"visible\": true,\n                \"signature\": \"<p>-- <br>Kulas4<br>Teamtailor</p>\",\n                \"time-format\": null,\n                \"time-zone\": null,\n                \"email\": \"admin@teamtailor.com\"\n            },\n            \"relationships\": {\n                \"activities\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/users/4/relationships/activities\",\n                        \"related\": \"https://api.teamtailor.com/v1/users/4/activities\"\n                    }\n                },\n                \"department\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/users/4/relationships/department\",\n                        \"related\": \"https://api.teamtailor.com/v1/users/4/department\"\n                    }\n                },\n                \"location\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/users/4/relationships/location\",\n                        \"related\": \"https://api.teamtailor.com/v1/users/4/location\"\n                    }\n                },\n                \"jobs\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/users/4/relationships/jobs\",\n                        \"related\": \"https://api.teamtailor.com/v1/users/4/jobs\"\n                    }\n                },\n                \"teams\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/users/4/relationships/teams\",\n                        \"related\": \"https://api.teamtailor.com/v1/users/4/teams\"\n                    }\n                },\n                \"notification-settings\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/users/4/relationships/notification-settings\",\n                        \"related\": \"https://api.teamtailor.com/v1/users/4/notification-settings\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"5\",\n            \"type\": \"users\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.com/v1/users/5\"\n            },\n            \"attributes\": {\n                \"description\": null,\n                \"external-id\": null,\n                \"facebook-profile\": null,\n                \"hide-email\": null,\n                \"instagram-profile\": null,\n                \"linkedin-profile\": null,\n                \"locale\": null,\n                \"login-email\": \"designer@teamtailor.com\",\n                \"name\": \"Hermann5\",\n                \"other-profile\": null,\n                \"phone\": null,\n                \"picture\": null,\n                \"role\": \"designer\",\n                \"title\": null,\n                \"twitter-profile\": null,\n                \"username\": \"designer\",\n                \"visible\": true,\n                \"signature\": \"<p>-- <br>Hermann5<br>Teamtailor</p>\",\n                \"time-format\": null,\n                \"time-zone\": null,\n                \"email\": \"designer@teamtailor.com\"\n            },\n            \"relationships\": {\n                \"activities\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/users/5/relationships/activities\",\n                        \"related\": \"https://api.teamtailor.com/v1/users/5/activities\"\n                    }\n                },\n                \"department\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/users/5/relationships/department\",\n                        \"related\": \"https://api.teamtailor.com/v1/users/5/department\"\n                    }\n                },\n                \"location\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/users/5/relationships/location\",\n                        \"related\": \"https://api.teamtailor.com/v1/users/5/location\"\n                    }\n                },\n                \"jobs\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/users/5/relationships/jobs\",\n                        \"related\": \"https://api.teamtailor.com/v1/users/5/jobs\"\n                    }\n                },\n                \"teams\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/users/5/relationships/teams\",\n                        \"related\": \"https://api.teamtailor.com/v1/users/5/teams\"\n                    }\n                },\n                \"notification-settings\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/users/5/relationships/notification-settings\",\n                        \"related\": \"https://api.teamtailor.com/v1/users/5/notification-settings\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"6\",\n            \"type\": \"users\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.com/v1/users/6\"\n            },\n            \"attributes\": {\n                \"description\": null,\n                \"external-id\": null,\n                \"facebook-profile\": null,\n                \"hide-email\": null,\n                \"instagram-profile\": null,\n                \"linkedin-profile\": null,\n                \"locale\": null,\n                \"login-email\": \"external_recruiter@teamtailor.com\",\n                \"name\": \"Hermann6\",\n                \"other-profile\": null,\n                \"phone\": null,\n                \"picture\": null,\n                \"role\": \"external_recruiter\",\n                \"title\": null,\n                \"twitter-profile\": null,\n                \"username\": \"externalrecruiter\",\n                \"visible\": false,\n                \"signature\": \"<p>-- <br>Hermann6<br>Teamtailor</p>\",\n                \"time-format\": null,\n                \"time-zone\": null,\n                \"email\": \"external_recruiter@teamtailor.com\"\n            },\n            \"relationships\": {\n                \"activities\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/users/6/relationships/activities\",\n                        \"related\": \"https://api.teamtailor.com/v1/users/6/activities\"\n                    }\n                },\n                \"department\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/users/6/relationships/department\",\n                        \"related\": \"https://api.teamtailor.com/v1/users/6/department\"\n                    }\n                },\n                \"location\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/users/6/relationships/location\",\n                        \"related\": \"https://api.teamtailor.com/v1/users/6/location\"\n                    }\n                },\n                \"jobs\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/users/6/relationships/jobs\",\n                        \"related\": \"https://api.teamtailor.com/v1/users/6/jobs\"\n                    }\n                },\n                \"teams\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/users/6/relationships/teams\",\n                        \"related\": \"https://api.teamtailor.com/v1/users/6/teams\"\n                    }\n                },\n                \"notification-settings\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/users/6/relationships/notification-settings\",\n                        \"related\": \"https://api.teamtailor.com/v1/users/6/notification-settings\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"7\",\n            \"type\": \"users\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.com/v1/users/7\"\n            },\n            \"attributes\": {\n                \"description\": null,\n                \"external-id\": null,\n                \"facebook-profile\": null,\n                \"hide-email\": null,\n                \"instagram-profile\": null,\n                \"linkedin-profile\": null,\n                \"locale\": null,\n                \"login-email\": null,\n                \"name\": \"Mrs. Junior Goodwin\",\n                \"other-profile\": null,\n                \"phone\": null,\n                \"picture\": null,\n                \"role\": \"user\",\n                \"title\": null,\n                \"twitter-profile\": null,\n                \"username\": null,\n                \"visible\": true,\n                \"signature\": \"<p>-- <br>Mrs. Junior Goodwin<br>Teamtailor</p>\",\n                \"time-format\": null,\n                \"time-zone\": null,\n                \"email\": \"email2@example.com\"\n            },\n            \"relationships\": {\n                \"activities\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/users/7/relationships/activities\",\n                        \"related\": \"https://api.teamtailor.com/v1/users/7/activities\"\n                    }\n                },\n                \"department\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/users/7/relationships/department\",\n                        \"related\": \"https://api.teamtailor.com/v1/users/7/department\"\n                    }\n                },\n                \"location\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/users/7/relationships/location\",\n                        \"related\": \"https://api.teamtailor.com/v1/users/7/location\"\n                    }\n                },\n                \"jobs\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/users/7/relationships/jobs\",\n                        \"related\": \"https://api.teamtailor.com/v1/users/7/jobs\"\n                    }\n                },\n                \"teams\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/users/7/relationships/teams\",\n                        \"related\": \"https://api.teamtailor.com/v1/users/7/teams\"\n                    }\n                },\n                \"notification-settings\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/users/7/relationships/notification-settings\",\n                        \"related\": \"https://api.teamtailor.com/v1/users/7/notification-settings\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"8\",\n            \"type\": \"users\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.com/v1/users/8\"\n            },\n            \"attributes\": {\n                \"description\": null,\n                \"external-id\": null,\n                \"facebook-profile\": null,\n                \"hide-email\": null,\n                \"instagram-profile\": null,\n                \"linkedin-profile\": null,\n                \"locale\": null,\n                \"login-email\": null,\n                \"name\": \"Bernarda Wilderman\",\n                \"other-profile\": null,\n                \"phone\": null,\n                \"picture\": null,\n                \"role\": \"user\",\n                \"title\": null,\n                \"twitter-profile\": null,\n                \"username\": null,\n                \"visible\": true,\n                \"signature\": \"<p>-- <br>Bernarda Wilderman<br>Teamtailor</p>\",\n                \"time-format\": null,\n                \"time-zone\": null,\n                \"email\": \"email3@example.com\"\n            },\n            \"relationships\": {\n                \"activities\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/users/8/relationships/activities\",\n                        \"related\": \"https://api.teamtailor.com/v1/users/8/activities\"\n                    }\n                },\n                \"department\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/users/8/relationships/department\",\n                        \"related\": \"https://api.teamtailor.com/v1/users/8/department\"\n                    }\n                },\n                \"location\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/users/8/relationships/location\",\n                        \"related\": \"https://api.teamtailor.com/v1/users/8/location\"\n                    }\n                },\n                \"jobs\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/users/8/relationships/jobs\",\n                        \"related\": \"https://api.teamtailor.com/v1/users/8/jobs\"\n                    }\n                },\n                \"teams\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/users/8/relationships/teams\",\n                        \"related\": \"https://api.teamtailor.com/v1/users/8/teams\"\n                    }\n                },\n                \"notification-settings\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/users/8/relationships/notification-settings\",\n                        \"related\": \"https://api.teamtailor.com/v1/users/8/notification-settings\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"9\",\n            \"type\": \"users\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.com/v1/users/9\"\n            },\n            \"attributes\": {\n                \"description\": null,\n                \"external-id\": null,\n                \"facebook-profile\": null,\n                \"hide-email\": null,\n                \"instagram-profile\": null,\n                \"linkedin-profile\": null,\n                \"locale\": null,\n                \"login-email\": null,\n                \"name\": \"Antonio Klocko II\",\n                \"other-profile\": null,\n                \"phone\": null,\n                \"picture\": null,\n                \"role\": \"user\",\n                \"title\": null,\n                \"twitter-profile\": null,\n                \"username\": null,\n                \"visible\": true,\n                \"signature\": \"<p>-- <br>Antonio Klocko II<br>Teamtailor</p>\",\n                \"time-format\": null,\n                \"time-zone\": null,\n                \"email\": \"email4@example.com\"\n            },\n            \"relationships\": {\n                \"activities\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/users/9/relationships/activities\",\n                        \"related\": \"https://api.teamtailor.com/v1/users/9/activities\"\n                    }\n                },\n                \"department\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/users/9/relationships/department\",\n                        \"related\": \"https://api.teamtailor.com/v1/users/9/department\"\n                    }\n                },\n                \"location\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/users/9/relationships/location\",\n                        \"related\": \"https://api.teamtailor.com/v1/users/9/location\"\n                    }\n                },\n                \"jobs\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/users/9/relationships/jobs\",\n                        \"related\": \"https://api.teamtailor.com/v1/users/9/jobs\"\n                    }\n                },\n                \"teams\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/users/9/relationships/teams\",\n                        \"related\": \"https://api.teamtailor.com/v1/users/9/teams\"\n                    }\n                },\n                \"notification-settings\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/users/9/relationships/notification-settings\",\n                        \"related\": \"https://api.teamtailor.com/v1/users/9/notification-settings\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"10\",\n            \"type\": \"users\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.com/v1/users/10\"\n            },\n            \"attributes\": {\n                \"description\": null,\n                \"external-id\": null,\n                \"facebook-profile\": null,\n                \"hide-email\": null,\n                \"instagram-profile\": null,\n                \"linkedin-profile\": null,\n                \"locale\": null,\n                \"login-email\": null,\n                \"name\": \"Christian Steuber DDS\",\n                \"other-profile\": null,\n                \"phone\": null,\n                \"picture\": null,\n                \"role\": \"user\",\n                \"title\": null,\n                \"twitter-profile\": null,\n                \"username\": null,\n                \"visible\": true,\n                \"signature\": \"<p>-- <br>Christian Steuber DDS<br>Teamtailor</p>\",\n                \"time-format\": null,\n                \"time-zone\": null,\n                \"email\": \"email5@example.com\"\n            },\n            \"relationships\": {\n                \"activities\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/users/10/relationships/activities\",\n                        \"related\": \"https://api.teamtailor.com/v1/users/10/activities\"\n                    }\n                },\n                \"department\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/users/10/relationships/department\",\n                        \"related\": \"https://api.teamtailor.com/v1/users/10/department\"\n                    }\n                },\n                \"location\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/users/10/relationships/location\",\n                        \"related\": \"https://api.teamtailor.com/v1/users/10/location\"\n                    }\n                },\n                \"jobs\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/users/10/relationships/jobs\",\n                        \"related\": \"https://api.teamtailor.com/v1/users/10/jobs\"\n                    }\n                },\n                \"teams\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/users/10/relationships/teams\",\n                        \"related\": \"https://api.teamtailor.com/v1/users/10/teams\"\n                    }\n                },\n                \"notification-settings\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/users/10/relationships/notification-settings\",\n                        \"related\": \"https://api.teamtailor.com/v1/users/10/notification-settings\"\n                    }\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"record-count\": 32,\n        \"page-count\": 4\n    },\n    \"links\": {\n        \"first\": \"https://api.teamtailor.com/v1/users?page%5Bnumber%5D=1&page%5Bsize%5D=10\",\n        \"next\": \"https://api.teamtailor.com/v1/users?page%5Bnumber%5D=2&page%5Bsize%5D=10\",\n        \"last\": \"https://api.teamtailor.com/v1/users?page%5Bnumber%5D=4&page%5Bsize%5D=10\"\n    }\n}"}],"_postman_id":"362e25b9-c78b-481e-a5f8-b794fdfd808c"},{"name":"Show user","id":"97cf9b64-593e-4d79-88b3-52b849751992","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/users/1","description":"<h2 id=\"show-a-user\">Show a user</h2>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","users","1"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"73bf5eb9-c48c-4ca9-a02c-a412dacf7cb4","name":"Show user","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/users/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"1\",\n        \"type\": \"users\",\n        \"links\": {\n            \"self\": \"https://api.teamtailor.com/v1/users/1\"\n        },\n        \"attributes\": {\n            \"description\": null,\n            \"external-id\": null,\n            \"facebook-profile\": null,\n            \"hide-email\": null,\n            \"instagram-profile\": null,\n            \"linkedin-profile\": null,\n            \"locale\": null,\n            \"login-email\": \"email1@example.com\",\n            \"name\": \"Erik Erikson\",\n            \"other-profile\": null,\n            \"phone\": null,\n            \"picture\": null,\n            \"role\": \"admin\",\n            \"title\": \"My New Title\",\n            \"twitter-profile\": null,\n            \"username\": \"hammes\",\n            \"visible\": null,\n            \"signature\": \"<p>-- <br>Erik Erikson<br>Teamtailor</p>\",\n            \"time-format\": null,\n            \"time-zone\": null,\n            \"email\": \"email1@example.com\"\n        },\n        \"relationships\": {\n            \"activities\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.com/v1/users/1/relationships/activities\",\n                    \"related\": \"https://api.teamtailor.com/v1/users/1/activities\"\n                }\n            },\n            \"department\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.com/v1/users/1/relationships/department\",\n                    \"related\": \"https://api.teamtailor.com/v1/users/1/department\"\n                }\n            },\n            \"location\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.com/v1/users/1/relationships/location\",\n                    \"related\": \"https://api.teamtailor.com/v1/users/1/location\"\n                }\n            },\n            \"jobs\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.com/v1/users/1/relationships/jobs\",\n                    \"related\": \"https://api.teamtailor.com/v1/users/1/jobs\"\n                }\n            },\n            \"teams\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.com/v1/users/1/relationships/teams\",\n                    \"related\": \"https://api.teamtailor.com/v1/users/1/teams\"\n                }\n            },\n            \"notification-settings\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.com/v1/users/1/relationships/notification-settings\",\n                    \"related\": \"https://api.teamtailor.com/v1/users/1/notification-settings\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"97cf9b64-593e-4d79-88b3-52b849751992"},{"name":"Update user","id":"3db66095-a066-4183-a105-286280ea1abb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"},{"key":"Content-Type","type":"text","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"id\": \"1\",\n        \"attributes\": {\n            \"title\": \"My New Title\",\n            \"name\": \"Erik Eriksson\"\n        },\n        \"type\": \"users\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/users/1","description":"<h2 id=\"update-user\">Update User</h2>\n<p>Required scope: Admin</p>\n<p>Change a users's attributes/relationships.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","users","1"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"5135818f-1898-40ec-981b-d604fd7052f6","name":"Update user","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"},{"key":"Content-Type","type":"text","value":"application/vnd.api+json"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"id\": \"1\",\n        \"attributes\": {\n            \"title\": \"My New Title\",\n            \"name\": \"Erik Eriksson\"\n        },\n        \"type\": \"users\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/users/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"1\",\n        \"type\": \"users\",\n        \"links\": {\n            \"self\": \"https://api.teamtailor.com/v1/users/1\"\n        },\n        \"attributes\": {\n            \"description\": null,\n            \"external-id\": null,\n            \"facebook-profile\": null,\n            \"hide-email\": null,\n            \"instagram-profile\": null,\n            \"linkedin-profile\": null,\n            \"locale\": null,\n            \"login-email\": \"email1@example.com\",\n            \"name\": \"Erik Eriksson\",\n            \"other-profile\": null,\n            \"phone\": null,\n            \"picture\": null,\n            \"role\": \"admin\",\n            \"title\": \"My New Title\",\n            \"twitter-profile\": null,\n            \"username\": \"hammes\",\n            \"visible\": null,\n            \"signature\": \"<p>-- <br>Erik Eriksson<br>Teamtailor</p>\",\n            \"time-format\": null,\n            \"time-zone\": null,\n            \"email\": \"email1@example.com\"\n        },\n        \"relationships\": {\n            \"activities\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.com/v1/users/1/relationships/activities\",\n                    \"related\": \"https://api.teamtailor.com/v1/users/1/activities\"\n                }\n            },\n            \"department\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.com/v1/users/1/relationships/department\",\n                    \"related\": \"https://api.teamtailor.com/v1/users/1/department\"\n                }\n            },\n            \"location\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.com/v1/users/1/relationships/location\",\n                    \"related\": \"https://api.teamtailor.com/v1/users/1/location\"\n                }\n            },\n            \"jobs\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.com/v1/users/1/relationships/jobs\",\n                    \"related\": \"https://api.teamtailor.com/v1/users/1/jobs\"\n                }\n            },\n            \"teams\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.com/v1/users/1/relationships/teams\",\n                    \"related\": \"https://api.teamtailor.com/v1/users/1/teams\"\n                }\n            },\n            \"notification-settings\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.com/v1/users/1/relationships/notification-settings\",\n                    \"related\": \"https://api.teamtailor.com/v1/users/1/notification-settings\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"3db66095-a066-4183-a105-286280ea1abb"},{"name":"Delete user","id":"8f077834-acd2-480c-9be6-f99dfb4178f6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"}],"url":"https://api.teamtailor.com/v1/users/1","description":"<h2 id=\"delete-a-user\">Delete a User</h2>\n<p>Required scope: Admin</p>\n<p><strong>Note!</strong> When a user is assigned to some other resources, you can't delete the user without first assigning the resource to a different user.<br />To automatically assign all resources to a different user, use the parameter <code>assign_jobs_to_user_id</code>.</p>\n<p>The resources that can be handled in this way is:</p>\n<ul>\n<li><p>jobs (when user is primary recruiter)</p>\n</li>\n<li><p>job offers (when user created the offer)</p>\n</li>\n<li><p>onboardings</p>\n</li>\n<li><p>requisitions</p>\n</li>\n</ul>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","users","1"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"cfbd4640-d1c0-4213-9ca4-8e8301201343","name":"Delete user","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"url":"https://api.teamtailor.com/v1/users/1"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"8f077834-acd2-480c-9be6-f99dfb4178f6"},{"name":"Create user","id":"25e98483-c434-4771-aab3-9300d64a41c0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"attributes\": {\n            \"title\": \"My Title\",\n            \"name\": \"Erik Eriksson\",\n            \"email\": \"erik@example.com\",\n            \"role\": \"recruiter\",\n            \"signature\": \"// Erik\",\n            \"merge\": true\n        },\n        \"type\": \"users\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/users","description":"<h2 id=\"create-user\">Create User</h2>\n<p>Required scope: Admin</p>\n<p>A unique <code>email</code> is required.</p>\n<p>An email invitation will be sent to the specified email if role is not <code>no-access</code> or SSO is activated. The user will be able to create a password using the link in the invitation email.</p>\n<p>Use the <code>merge</code> attribute to merge the user attributes in case a user with a matching email address already exists.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","users"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"c7a32794-be4f-48b5-9941-f21594515536","name":"Create user","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"attributes\": {\n            \"title\": \"My Title\",\n            \"name\": \"Erik Eriksson\",\n            \"email\": \"erik@example.com\",\n            \"role\": \"recruiter\",\n            \"signature\": \"// Erik\",\n            \"merge\": true\n        },\n        \"type\": \"users\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/users"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"79\",\n        \"type\": \"users\",\n        \"links\": {\n            \"self\": \"https://api.teamtailor.com/v1/users/79\"\n        },\n        \"attributes\": {\n            \"description\": null,\n            \"external-id\": null,\n            \"facebook-profile\": null,\n            \"hide-email\": null,\n            \"instagram-profile\": null,\n            \"linkedin-profile\": null,\n            \"locale\": null,\n            \"login-email\": null,\n            \"name\": \"Erik Eriksson\",\n            \"other-profile\": null,\n            \"phone\": null,\n            \"picture\": null,\n            \"role\": \"recruiter\",\n            \"title\": \"My Title\",\n            \"twitter-profile\": null,\n            \"username\": null,\n            \"visible\": null,\n            \"signature\": \"// Erik\",\n            \"time-format\": null,\n            \"time-zone\": null,\n            \"email\": \"erik@example.com\"\n        },\n        \"relationships\": {\n            \"activities\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.com/v1/users/79/relationships/activities\",\n                    \"related\": \"https://api.teamtailor.com/v1/users/79/activities\"\n                }\n            },\n            \"department\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.com/v1/users/79/relationships/department\",\n                    \"related\": \"https://api.teamtailor.com/v1/users/79/department\"\n                }\n            },\n            \"location\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.com/v1/users/79/relationships/location\",\n                    \"related\": \"https://api.teamtailor.com/v1/users/79/location\"\n                }\n            },\n            \"jobs\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.com/v1/users/79/relationships/jobs\",\n                    \"related\": \"https://api.teamtailor.com/v1/users/79/jobs\"\n                }\n            },\n            \"teams\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.com/v1/users/79/relationships/teams\",\n                    \"related\": \"https://api.teamtailor.com/v1/users/79/teams\"\n                }\n            },\n            \"notification-settings\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.com/v1/users/79/relationships/notification-settings\",\n                    \"related\": \"https://api.teamtailor.com/v1/users/79/notification-settings\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"25e98483-c434-4771-aab3-9300d64a41c0"}],"id":"a594cdda-efeb-4b67-b2a2-1b72baecd786","description":"<p>Handle user information.</p>\n<h3 id=\"attributes\">Attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>description</td>\n<td>string</td>\n<td>About text, visible on the public profile</td>\n</tr>\n<tr>\n<td>email</td>\n<td>string</td>\n<td>Visible on career site profile if <code>hide-email</code> is <code>false</code>. <strong>Requires admin permission if hidden.</strong></td>\n</tr>\n<tr>\n<td>external-id</td>\n<td>string</td>\n<td>Use to store your own ID to reference users by. Will also be used in SSO logins to look up users if sent as name-id.</td>\n</tr>\n<tr>\n<td>facebook-profile</td>\n<td>string</td>\n<td>URL to Facebook profile</td>\n</tr>\n<tr>\n<td>google-profile</td>\n<td>string</td>\n<td>URL to Google+ profile</td>\n</tr>\n<tr>\n<td>hide-email</td>\n<td>boolean</td>\n<td>If e-mail address should be hidden on career site</td>\n</tr>\n<tr>\n<td>instagram-profile</td>\n<td>string</td>\n<td>URL to Instagram profile</td>\n</tr>\n<tr>\n<td>linkedin-profile</td>\n<td>string</td>\n<td>URL to LinkedIn profile</td>\n</tr>\n<tr>\n<td>locale</td>\n<td>string</td>\n<td>Language of Teamtailor (<code>en</code>: English, <code>es</code>: Spanish, <code>fi</code>: Finnish, <code>fr</code>: French, <code>de</code>: German, <code>sv</code>: Swedish, <code>it</code>: Italian, <code>no</code>: Norwegian, <code>da</code>: Danish)</td>\n</tr>\n<tr>\n<td>login-email</td>\n<td>string</td>\n<td>Account email used to login and for notifications (might be separate than email on career site profile). Can be null until user accepts invitation. <strong>Requires admin permission</strong></td>\n</tr>\n<tr>\n<td>merge</td>\n<td>boolean</td>\n<td><strong>Write only</strong> True if the attributes should be merged with an existing user, matched by email address.</td>\n</tr>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>The user's name</td>\n</tr>\n<tr>\n<td>other-profile</td>\n<td>string</td>\n<td>URL to other profile</td>\n</tr>\n<tr>\n<td>phone</td>\n<td>string</td>\n<td>Phone number</td>\n</tr>\n<tr>\n<td>picture</td>\n<td>object</td>\n<td>Url to user picture</td>\n</tr>\n<tr>\n<td>role</td>\n<td>string</td>\n<td>Permission role (<code>no_access</code>, <code>user</code>, <code>designer</code>, <code>hiring_manager</code>, <code>recruiter</code>, <code>recruitment_admin</code>, <code>admin</code> or <code>external_recruiter</code>)</td>\n</tr>\n<tr>\n<td>role-addons</td>\n<td>array of strings</td>\n<td>Role addons (<code>[\"designer\"]</code>, <code>null)</code></td>\n</tr>\n<tr>\n<td>title</td>\n<td>string</td>\n<td>Title, e.g 'CEO' or 'Account manager'</td>\n</tr>\n<tr>\n<td>time-format</td>\n<td>string</td>\n<td>Time format of teamtailor, <code>HH:mm</code> for 24 hours and <code>hh:mm A</code> for 12 hours</td>\n</tr>\n<tr>\n<td>time-zone</td>\n<td>string</td>\n<td>City of desired time zone, e.g <code>Stockholm</code>, <code>London</code>, <code>Warsaw</code></td>\n</tr>\n<tr>\n<td>twitter-profile</td>\n<td>string</td>\n<td>URL to Twitter profile</td>\n</tr>\n<tr>\n<td>username</td>\n<td>string</td>\n<td>Internal username, used in mentions</td>\n</tr>\n<tr>\n<td>visible</td>\n<td>boolean</td>\n<td>If profile is visible on the career site</td>\n</tr>\n<tr>\n<td>signature</td>\n<td>string</td>\n<td>Email signature</td>\n</tr>\n<tr>\n<td>notification-candidate-message</td>\n<td>boolean</td>\n<td>Notify user when candidate replies to an email <strong>Requires admin permission.</strong> (DEPRECATED)</td>\n</tr>\n<tr>\n<td>notification-job</td>\n<td>boolean</td>\n<td>Notify user when new job is published <strong>Requires admin permission.</strong> (DEPRECATED)</td>\n</tr>\n<tr>\n<td>notification-connected-candidate</td>\n<td>boolean</td>\n<td>Notify user when a candidate connects with your company <strong>Requires admin permission.</strong> (DEPRECATED)</td>\n</tr>\n<tr>\n<td>notification-mention</td>\n<td>boolean</td>\n<td>Notify user when a team member mentions them <strong>Requires admin permission.</strong> (DEPRECATED)</td>\n</tr>\n<tr>\n<td>notification-lead-message</td>\n<td>boolean</td>\n<td>Notify user when a visitor writes a message <strong>Requires admin permission.</strong> (DEPRECATED)</td>\n</tr>\n<tr>\n<td>notification-hiring-team-application</td>\n<td>boolean</td>\n<td>Notify user when a candidate applies for a job where they're part of the hiring team <strong>Requires admin permission.</strong> (DEPRECATED)</td>\n</tr>\n<tr>\n<td>notification-daily-digest</td>\n<td>boolean</td>\n<td>Receive a daily digest email with all activities in the hiring teams <strong>Requires admin permission.</strong> (DEPRECATED)</td>\n</tr>\n<tr>\n<td>notification-recruiter-application</td>\n<td>boolean</td>\n<td>Notify user when a candidate applies for a job where they are a recruiter <strong>Requires admin permission.</strong> (DEPRECATED)</td>\n</tr>\n<tr>\n<td>notification-removal-request</td>\n<td>boolean</td>\n<td>Notify user when a candidate asked to be removed (for GDPR managers only) <strong>Requires admin permission.</strong> (DEPRECATED)</td>\n</tr>\n<tr>\n<td>notification-gdpr-digest</td>\n<td>boolean</td>\n<td>Sends daily digest of GDPR/data retention activities (for GDPR managers only) <strong>Requires admin permission.</strong> (DEPRECATED)</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"relations\">Relations</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Relation</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>team-memberships</td>\n<td>Hiring teams the user is a part of</td>\n</tr>\n<tr>\n<td>activities</td>\n<td>User activity log</td>\n</tr>\n<tr>\n<td>department</td>\n<td>Listed under this department on the career site</td>\n</tr>\n<tr>\n<td>location</td>\n<td>Listed under this location on the career site</td>\n</tr>\n<tr>\n<td>jobs</td>\n<td>Jobs the user is recruiter for</td>\n</tr>\n<tr>\n<td>notification-settings</td>\n<td>Notification settings for the user (ADDED <code>X-API-VERSION: 20210218</code>)</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"29bf4608-b18c-4a41-81b3-e1bc1eb20cfc","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"f01eabda-dbae-4937-8cab-fda7e6985295","type":"text/javascript","exec":[""]}}],"_postman_id":"a594cdda-efeb-4b67-b2a2-1b72baecd786","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}}},{"name":"Uploads","item":[{"name":"List uploads","id":"c39558d0-008a-4066-b70d-1edfd5c8abcb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/uploads","description":"<h2 id=\"list-uploads\">List uploads</h2>\n<p>Use this endpoint to retrieve lists of uploads.</p>\n<h3 id=\"example-parameters\">Example parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Default</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>include</td>\n<td>null</td>\n<td>Comma separated list of relations to include in the response. For example <code>candidate</code>.</td>\n</tr>\n<tr>\n<td>sort</td>\n<td>id</td>\n<td>Sort list by any of the upload attributes.</td>\n</tr>\n<tr>\n<td>filter[job]</td>\n<td>null</td>\n<td>Filter uploads for by job.</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","uploads"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"e636a6f2-1fb8-4c30-a470-af29f2f22812","name":"List uploads","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"}],"url":"https://api.teamtailor.com/v1/uploads"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"1\",\n            \"type\": \"uploads\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.com/v1/uploads/1\"\n            },\n            \"attributes\": {\n                \"url\": \"https://bucket-name.s3.eu-west-1.amazonaws.com/uploads/5d50ed1119b303291941e65fb3de88df31a02581\",\n                \"file-name\": \"resume.pdf\",\n                \"internal\": false\n            },\n            \"relationships\": {\n                \"candidate\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/uploads/1/relationships/candidate\",\n                        \"related\": \"https://api.teamtailor.com/v1/uploads/1/candidate\"\n                    }\n                },\n                \"job\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/uploads/1/relationships/job\",\n                        \"related\": \"https://api.teamtailor.com/v1/uploads/1/job\"\n                    }\n                },\n                \"answer\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/uploads/1/relationships/answer\",\n                        \"related\": \"https://api.teamtailor.com/v1/uploads/1/answer\"\n                    }\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"record-count\": 1,\n        \"page-count\": 1\n    },\n    \"links\": {\n        \"first\": \"https://api.teamtailor.com/v1/uploads?page%5Bnumber%5D=1&page%5Bsize%5D=10\",\n        \"last\": \"https://api.teamtailor.com/v1/uploads?page%5Bnumber%5D=1&page%5Bsize%5D=10\"\n    }\n}"}],"_postman_id":"c39558d0-008a-4066-b70d-1edfd5c8abcb"},{"name":"Create upload","id":"1a29bd3c-c858-4f9f-8a23-638fadc78967","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"},{"key":"X-Api-Version","type":"text","value":"20240404"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"uploads\",\n        \"attributes\": {\n            \"url\": \"https://www.w3.org/WAI/ER/tests/xhtml/testfiles/resources/pdf/dummy.pdf\",\n            \"file-name\": \"testfile.pdf\"\n        },\n        \"relationships\": {\n            \"candidate\": {\n                \"data\": {\n                    \"id\": \"1\",\n                    \"type\": \"candidates\"\n                }\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/uploads","description":"<h2 id=\"create-a-upload\">Create a upload</h2>\n<p>Create an upload for a specific candidate.</p>\n<aside>\n  A public <code>url</code> is required for the file\n</aside>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","uploads"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"1066358e-f596-4a89-be86-3e7c878178d7","name":"Create upload","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"type\": \"uploads\",\n        \"attributes\": {\n            \"url\": \"https://www.w3.org/WAI/ER/tests/xhtml/testfiles/resources/pdf/dummy.pdf\",\n            \"file-name\": \"testfile.pdf\"\n        },\n        \"relationships\": {\n            \"candidate\": {\n                \"data\": {\n                    \"id\": \"1\",\n                    \"type\": \"candidates\"\n                }\n            }\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.teamtailor.com/v1/uploads"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"2\",\n        \"type\": \"uploads\",\n        \"links\": {\n            \"self\": \"https://api.teamtailor.com/v1/uploads/2\"\n        },\n        \"attributes\": {\n            \"url\": \"https://bucket-name.s3.eu-west-1.amazonaws.com/uploads/58f5828b04c51e50ba7699b3e32fc2f65caa136a/testfile.pdf\",\n            \"file-name\": \"testfile.pdf\",\n            \"internal\": false\n        },\n        \"relationships\": {\n            \"candidate\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.com/v1/uploads/2/relationships/candidate\",\n                    \"related\": \"https://api.teamtailor.com/v1/uploads/2/candidate\"\n                }\n            },\n            \"job\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.com/v1/uploads/2/relationships/job\",\n                    \"related\": \"https://api.teamtailor.com/v1/uploads/2/job\"\n                }\n            },\n            \"answer\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.com/v1/uploads/2/relationships/answer\",\n                    \"related\": \"https://api.teamtailor.com/v1/uploads/2/answer\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"1a29bd3c-c858-4f9f-8a23-638fadc78967"}],"id":"398f4f78-12da-411b-8379-f5523366ac4d","description":"<h1 id=\"uploads\">Uploads</h1>\n<p>A file uploaded to a candidate. Can be uploaded by either the candidate, or a user.</p>\n<h3 id=\"attributes\">Attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>url*</td>\n<td>string</td>\n<td>Signed URL to file, valid for 1 minute.</td>\n</tr>\n<tr>\n<td>file-name</td>\n<td>string</td>\n<td>Original file name</td>\n</tr>\n<tr>\n<td>internal</td>\n<td>boolean</td>\n<td>Internal files were uploaded by a user, not the candidate. Read-only.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"relations\">Relations</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Relation</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>candidate*</td>\n<td></td>\n</tr>\n<tr>\n<td>job</td>\n<td>The job for which this upload was created</td>\n</tr>\n<tr>\n<td>answer</td>\n<td>If the upload is for a file question</td>\n</tr>\n</tbody>\n</table>\n</div><p>*suggests that those attributes/relationships are required.</p>\n","event":[{"listen":"prerequest","script":{"id":"f333ff6f-cbb5-4483-906b-bc1a585999a4","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"8eba2015-5dbb-48bf-9e31-43fab6f74a1b","type":"text/javascript","exec":[""]}}],"_postman_id":"398f4f78-12da-411b-8379-f5523366ac4d","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}}},{"name":"Transient Uploads","item":[{"name":"Create transient upload","id":"005b98db-9f8a-4f25-b814-96c394e42a8a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","value":null}]},"url":"https://api.teamtailor.com/v1/files","description":"<p>Uploads a file to temporary storage and returns a <em>transient URI</em> that can be used in place of a public URL in some endpoints. This is useful if you are not able to provide public URLs for us to retrieve files from.</p>\n<p>The transient URI is a unique, tamper-proof token that allows us (and only us) to retrieve the uploaded file from temporary storage and attach it to another resource (like a Candidate). It is exposed only once in the response from this endpoint, so you must take care to store it until you are ready to use it. If you lose the transient URI for an uploaded file, you must upload the file again to get a new URI.</p>\n<p>As the name implies, files uploaded to this endpoint are not stored permanently. You are expected to use the URI immediately to attach the uploaded file to another resource.</p>\n<p><strong>Note:</strong> Unlike other endpoints in our public API, this endpoint accepts form data requests, not JSON. The response is always JSON.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","files"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"6136457e-79a6-49cb-871e-28afb669cd56","name":"Upload file","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","value":null}]},"url":"https://api.teamtailor.com/v1/files"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"uri\": \"transient:psL7Ga4b7p7ex8ET1puW/+8qoEouNA4RdW/58yz2vMIhv7B1mPP+mH/WLLBU6luCSMDzxbD0HR+1YVJKAWRzKjBC5mSFe1XoHH6YtoTV43SwyezfckFA8XdK3NcChw5lRrAmyte2PBUfGdDTbYcyesaEPUKxJyiue74sPj7YB8aGpVLBUuoOl/H1xqbOWgQG8vEYEZfV9D5efy6YrICZ+qLqSoBcGC/0gf1x1PaZYICvpfyMVkN9XNb8HuySFuuy/j/SREJJlw7i0MR1Rn12Vc16AeUpSsEPGn805WJcUpBhDL8+T6C7HSgUcoDWzq7wrbJqPkB5pH/IVsEhJumqXI0AzGxGp1YE+MyZdPbRZ/VCmHiaCgMCumKpNo8tu3cB+2B/KMLsy9APY7/9FPuXCSvWd1imZUAi03pbcnpijE38HmWE/Kc9OzIgjV7SJKbVPyywcd+9bYpGnsOoBsJQSUzrUiUk1r5pQ3uBpUqX5dc1JGCU45Sar1WSIQgW+mL7BGF1I7hBXSg8PA==--SoXTXBo0V0svaUhO--8HhzHBs3eFPIxulZQxySBg==\"\n}"}],"_postman_id":"005b98db-9f8a-4f25-b814-96c394e42a8a"}],"id":"73d96080-1973-4269-9ec0-87a907f97b1e","description":"<p>The <em>Transient Uploads</em> API provides an endpoint for uploading a file to temporary storage for use in subsequent requests.</p>\n","_postman_id":"73d96080-1973-4269-9ec0-87a907f97b1e","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}}},{"name":"Notification settings","item":[{"name":"List notification settings","id":"f19f2836-f5a3-4749-becf-ef428dc3fe03","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"}],"url":"https://api.teamtailor.com/v1/notification-settings","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","notification-settings"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"c15153b7-3a53-4695-9102-4aa55ef72694","name":"List notification settings","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"}],"url":"https://api.teamtailor.com/v1/notification-settings"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"1\",\n            \"type\": \"notification-settings\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.com/v1/notification-settings/1\"\n            },\n            \"attributes\": {\n                \"email\": false,\n                \"notification-key\": \"new_job_published\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/notification-settings/1/relationships/user\",\n                        \"related\": \"https://api.teamtailor.com/v1/notification-settings/1/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"2\",\n            \"type\": \"notification-settings\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.com/v1/notification-settings/2\"\n            },\n            \"attributes\": {\n                \"email\": true,\n                \"notification-key\": \"new_job_published\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/notification-settings/2/relationships/user\",\n                        \"related\": \"https://api.teamtailor.com/v1/notification-settings/2/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"3\",\n            \"type\": \"notification-settings\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.com/v1/notification-settings/3\"\n            },\n            \"attributes\": {\n                \"email\": true,\n                \"notification-key\": \"new_job_published\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/notification-settings/3/relationships/user\",\n                        \"related\": \"https://api.teamtailor.com/v1/notification-settings/3/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"4\",\n            \"type\": \"notification-settings\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.com/v1/notification-settings/4\"\n            },\n            \"attributes\": {\n                \"email\": false,\n                \"notification-key\": \"new_job_published\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/notification-settings/4/relationships/user\",\n                        \"related\": \"https://api.teamtailor.com/v1/notification-settings/4/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"5\",\n            \"type\": \"notification-settings\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.com/v1/notification-settings/5\"\n            },\n            \"attributes\": {\n                \"email\": true,\n                \"notification-key\": \"new_job_published\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/notification-settings/5/relationships/user\",\n                        \"related\": \"https://api.teamtailor.com/v1/notification-settings/5/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"6\",\n            \"type\": \"notification-settings\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.com/v1/notification-settings/6\"\n            },\n            \"attributes\": {\n                \"email\": true,\n                \"notification-key\": \"new_job_published\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/notification-settings/6/relationships/user\",\n                        \"related\": \"https://api.teamtailor.com/v1/notification-settings/6/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"7\",\n            \"type\": \"notification-settings\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.com/v1/notification-settings/7\"\n            },\n            \"attributes\": {\n                \"email\": true,\n                \"notification-key\": \"new_job_published\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/notification-settings/7/relationships/user\",\n                        \"related\": \"https://api.teamtailor.com/v1/notification-settings/7/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"8\",\n            \"type\": \"notification-settings\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.com/v1/notification-settings/8\"\n            },\n            \"attributes\": {\n                \"email\": true,\n                \"notification-key\": \"new_job_published\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/notification-settings/8/relationships/user\",\n                        \"related\": \"https://api.teamtailor.com/v1/notification-settings/8/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"9\",\n            \"type\": \"notification-settings\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.com/v1/notification-settings/9\"\n            },\n            \"attributes\": {\n                \"email\": true,\n                \"notification-key\": \"new_job_published\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/notification-settings/9/relationships/user\",\n                        \"related\": \"https://api.teamtailor.com/v1/notification-settings/9/user\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": \"10\",\n            \"type\": \"notification-settings\",\n            \"links\": {\n                \"self\": \"https://api.teamtailor.com/v1/notification-settings/10\"\n            },\n            \"attributes\": {\n                \"email\": true,\n                \"notification-key\": \"new_job_published\"\n            },\n            \"relationships\": {\n                \"user\": {\n                    \"links\": {\n                        \"self\": \"https://api.teamtailor.com/v1/notification-settings/10/relationships/user\",\n                        \"related\": \"https://api.teamtailor.com/v1/notification-settings/10/user\"\n                    }\n                }\n            }\n        }\n    ],\n    \"meta\": {\n        \"record-count\": 544,\n        \"page-count\": 55\n    },\n    \"links\": {\n        \"first\": \"https://api.teamtailor.com/v1/notification-settings?page%5Bnumber%5D=1&page%5Bsize%5D=10\",\n        \"next\": \"https://api.teamtailor.com/v1/notification-settings?page%5Bnumber%5D=2&page%5Bsize%5D=10\",\n        \"last\": \"https://api.teamtailor.com/v1/notification-settings?page%5Bnumber%5D=55&page%5Bsize%5D=10\"\n    }\n}"},{"id":"8aaf0262-976b-42c2-9a67-1c537e046856","name":"List notification settings - Old x-api-version","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20161108","type":"text"}],"url":"https://api.teamtailor.com/v1/notification-settings"},"status":"Not Acceptable","code":406,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"errors\": [\n        {\n            \"status\": 406,\n            \"title\": \"Invalid/Missing API Version\",\n            \"detail\": \"Please provide a correct API version in the X-Api-Version header. Current version is: 20210218\"\n        }\n    ]\n}"}],"_postman_id":"f19f2836-f5a3-4749-becf-ef428dc3fe03"},{"name":"Show notification setting","id":"fa423fb2-1920-4d8d-91bd-5870bf7737fb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"}],"url":"https://api.teamtailor.com/v1/notification-settings/1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","notification-settings","1"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"b8f8618d-ae80-4e09-8975-ef0c3432a61a","name":"Show notification setting","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"}],"url":"https://api.teamtailor.com/v1/notification-settings/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"1\",\n        \"type\": \"notification-settings\",\n        \"links\": {\n            \"self\": \"https://api.teamtailor.com/v1/notification-settings/1\"\n        },\n        \"attributes\": {\n            \"email\": false,\n            \"notification-key\": \"new_job_published\"\n        },\n        \"relationships\": {\n            \"user\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.com/v1/notification-settings/1/relationships/user\",\n                    \"related\": \"https://api.teamtailor.com/v1/notification-settings/1/user\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"fa423fb2-1920-4d8d-91bd-5870bf7737fb"},{"name":"Update notification setting","id":"0bf19e94-aeb5-4147-9100-f71a76e74edc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"id\": \"1\",\n        \"type\": \"notification-settings\",\n        \"attributes\": {\n            \"email\": false,\n            \"browser\": false,\n            \"mobile\": true\n        }\n    }\n}"},"url":"https://api.teamtailor.com/v1/notification-settings/1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","notification-settings","1"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[{"id":"7e29ad35-1555-4688-80da-c7aa036644d6","name":"Update notification setting","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9","type":"text"},{"key":"X-Api-Version","value":"20240404","type":"text"},{"key":"Content-Type","value":"application/vnd.api+json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"data\": {\n        \"id\": \"1\",\n        \"type\": \"notification-settings\",\n        \"attributes\": {\n            \"email\": false,\n            \"browser\": false,\n            \"mobile\": true\n        }\n    }\n}"},"url":"https://api.teamtailor.com/v1/notification-settings/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"1\",\n        \"type\": \"notification-settings\",\n        \"links\": {\n            \"self\": \"https://api.teamtailor.com/v1/notification-settings/1\"\n        },\n        \"attributes\": {\n            \"email\": false,\n            \"notification-key\": \"new_job_published\"\n        },\n        \"relationships\": {\n            \"user\": {\n                \"links\": {\n                    \"self\": \"https://api.teamtailor.com/v1/notification-settings/1/relationships/user\",\n                    \"related\": \"https://api.teamtailor.com/v1/notification-settings/1/user\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"0bf19e94-aeb5-4147-9100-f71a76e74edc"}],"id":"cf23b1a0-7e3b-48c6-a9e3-e5db00b75d01","description":"<h1 id=\"notification-settings\">Notification settings</h1>\n<p>Available for versions 20210218 or newer.</p>\n<p>Before api-version 20210218 we used to send notification settings through users now we handle notifications here, we also added a number of new keys and replaced the old ones for new keys more descriptive on what they do.</p>\n<p>Use to customise notifications settings to be sent to the users. There are number of possible notifications that can be set. Here is the list of notifications keys that can be modified</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Keys</th>\n<th>Old Keys (from users api-version 20161108)</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>new_job_published</td>\n<td>notification_new_job</td>\n<td>New job is published</td>\n</tr>\n<tr>\n<td>candidate_connect</td>\n<td>notification_new_open_resume</td>\n<td>Candidate connects with your company</td>\n</tr>\n<tr>\n<td>candidate_replies</td>\n<td>notification_new_message</td>\n<td>Candidate replies to your message</td>\n</tr>\n<tr>\n<td>candidate_replies_to_hiring_team</td>\n<td>N/A</td>\n<td>Candidate replies to a message</td>\n</tr>\n<tr>\n<td>candidate_schedule_meeting</td>\n<td>N/A</td>\n<td>Candidate picks time for a meeting</td>\n</tr>\n<tr>\n<td>team_member_mention</td>\n<td>notification_new_mention</td>\n<td>Team member mentions you</td>\n</tr>\n<tr>\n<td>unread_notifications_digest</td>\n<td>notification_new_mention</td>\n<td>Unread notifications digest</td>\n</tr>\n<tr>\n<td>new_message_from_lead</td>\n<td>notification_lead</td>\n<td>New messages from leads</td>\n</tr>\n<tr>\n<td>requisition_approvals</td>\n<td>notification_requisition_approval</td>\n<td>New requisition request</td>\n</tr>\n<tr>\n<td>requisition_reminders</td>\n<td>notification_requisition_reminder</td>\n<td>Requisition awaiting your approval</td>\n</tr>\n<tr>\n<td>hiring_team_candidate_applies_for_job</td>\n<td>notification_new_resume_as_hiring_team</td>\n<td>Candidate applies for a job</td>\n</tr>\n<tr>\n<td>daily_digest_email</td>\n<td>notification_daily_digest</td>\n<td>Daily digest with all activity for a job</td>\n</tr>\n<tr>\n<td>candidate_partner_result</td>\n<td>notification_new_partner_result</td>\n<td>Candidate gets a new result from a partner</td>\n</tr>\n<tr>\n<td>recruiter_candidate_applies_for_job</td>\n<td>notification_new_resume_as_recruiter</td>\n<td>Candidate applies for a job</td>\n</tr>\n<tr>\n<td>gdpr_removal_request</td>\n<td>notification_removal_request</td>\n<td>Removal request realtime notification</td>\n</tr>\n<tr>\n<td>gdpr_digest</td>\n<td>notification_gdpr_digest</td>\n<td>GDPR activity daily digest</td>\n</tr>\n<tr>\n<td>candidate_answered_questionnaire</td>\n<td>N/A</td>\n<td>Candidate answered questionnaire</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>IMPORTANT:</strong> <em>OLD keys are for reference only for companies migrating from api-version 20161108 if you are developing a new solution pay no attention to them</em></p>\n<p>Each of these notifications key can have email, browser or mobile setting. All of them are guaranteed to have an email setting but not necessarily browser or mobile</p>\n<h3 id=\"attributes\">Attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>notification_key</td>\n<td>string</td>\n<td>Notification to be modified</td>\n</tr>\n<tr>\n<td>email</td>\n<td>boolean</td>\n<td>Email notification status</td>\n</tr>\n<tr>\n<td>browser</td>\n<td>boolean</td>\n<td>Browser notification status</td>\n</tr>\n<tr>\n<td>mobile</td>\n<td>boolean</td>\n<td>mobile notification status</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"relations\">Relations</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Relation</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>user</td>\n<td>user notification setting</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"cf23b1a0-7e3b-48c6-a9e3-e5db00b75d01","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}}},{"name":"Movements","item":[{"name":"List Movements","id":"e759e4e5-bb26-4d09-9585-13b9db8bb862","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.teamtailor.com/v1/movements","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","movements"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"e759e4e5-bb26-4d09-9585-13b9db8bb862"},{"name":"Show Movement","id":"b58b18b5-2425-49ea-a5f4-3340a18c165d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.teamtailor.com/v1/movements/{{movement_id}}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}},"urlObject":{"protocol":"https","path":["v1","movements","{{movement_id}}"],"host":["api.teamtailor.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"b58b18b5-2425-49ea-a5f4-3340a18c165d"}],"id":"47c3b0d3-8fca-4a34-bb6b-e7cca66631ea","description":"<h1 id=\"movements\">Movements</h1>\n<p><strong>Read-only</strong> API.</p>\n<h3 id=\"attributes\">Attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>created-at</td>\n<td>datetime</td>\n<td>Date and time of Movement creation</td>\n</tr>\n<tr>\n<td>updated-at</td>\n<td>datetime</td>\n<td>Date and time of Movement last update</td>\n</tr>\n<tr>\n<td>from-stage-id</td>\n<td>integer</td>\n<td>ID of the stage the job application moved from</td>\n</tr>\n<tr>\n<td>to-stage-id</td>\n<td>integer</td>\n<td>ID of the stage the job application moved to</td>\n</tr>\n<tr>\n<td>is-rejected</td>\n<td>boolean</td>\n<td>Whether the movement represents a rejection</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"relations\">Relations</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Relation</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>job-application</td>\n<td>job application that was moved</td>\n</tr>\n<tr>\n<td>from-stage</td>\n<td>stage the job application moved from</td>\n</tr>\n<tr>\n<td>to-stage</td>\n<td>stage the job application moved to</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"filters\">Filters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Filter</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>job-application</td>\n<td>integer</td>\n<td>Filter by job application ID</td>\n</tr>\n<tr>\n<td>is-rejected</td>\n<td>boolean</td>\n<td>Filter by rejection status</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"47c3b0d3-8fca-4a34-bb6b-e7cca66631ea","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]},"isInherited":true,"source":{"_postman_id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","id":"ea35cd8a-2c6c-425d-bbb3-7db25693ab67","name":"Teamtailor API","type":"collection"}}}],"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9"}]}},"event":[{"listen":"prerequest","script":{"id":"3142b210-207d-4252-8df0-d19166a4cc16","type":"text/javascript","requests":{},"exec":[""]}},{"listen":"test","script":{"id":"9b8bb71c-8e57-40e2-a7d2-00df79224ff9","type":"text/javascript","requests":{},"exec":[""]}}],"variable":[{"key":"api_key","value":"<insert your api key here>"},{"key":"api_url","value":"api.teamtailor.com"},{"key":"api_version","value":"20240904"},{"key":"activity_id","value":"1"},{"key":"answer_id","value":"1"},{"key":"question_id","value":"1"},{"key":"candidate_id","value":"1"},{"key":"audit_event","value":"1"},{"key":"company_uuid","value":"<insert your company uuid>"},{"key":"user_id","value":"1"},{"key":"custom_field_value_id","value":"1"},{"key":"custom_field_id","value":"1"},{"key":"custom_field_selects_id","value":"1"},{"key":"custom_field_option_id","value":"1"},{"key":"division_id","value":"1"},{"key":"department_id","value":"1"},{"key":"job_id","value":"1"},{"key":"location_id","value":"1"},{"key":"job_application_id","value":"1"},{"key":"note_id","value":"1"},{"key":"partner_result_id","value":"<insert your partner result uuid>"},{"key":"referral_id","value":"1"},{"key":"region_id","value":"1"},{"key":"reject_reason_id","value":"1"},{"key":"requisition_id","value":"1"},{"key":"requisition_step_verdict_id","value":"1"},{"key":"role_id","value":"1"},{"key":"stage_id","value":"1"},{"key":"team_id","value":"1"},{"key":"team_membership_id","value":"1"},{"key":"todo_id","value":"1"},{"key":"trigger_id","value":"1"},{"key":"notification_setting_id","value":"1"},{"key":"job_offer_id","value":"1"},{"key":"form_id","value":"1"},{"key":"onboarding_id","value":"12"},{"key":"form_question_id","value":"573924"},{"key":"form_answer_id","value":"18280637"},{"key":"interview_id","value":"","type":"default"},{"key":"scorecard_score_id","value":"","type":"default"},{"key":"scorecard_pick_id","value":"","type":"default"},{"key":"scorecard_criterium_id","value":"","type":"default"}]}