{"info":{"_postman_id":"47f33eb7-53ed-45cd-be7d-a771fcb6cd61","name":"MyInterview API","description":"<html><head></head><body><p>The myInterview API enables you to build services and solutions where you can utilise the myInterview platform and one-way (async) video interviews.</p>\n<h1 id=\"overview\">Overview</h1>\n<h1 id=\"getting-started-with-the-api\">Getting Started with the API</h1>\n<p>This guide provides an overview of the basic flow for using the API, from creating a job and inviting candidates to receiving notifications and analyzing completed video interviews.</p>\n<h2 id=\"1-create-a-job\">1. Create a Job</h2>\n<p>Start by creating a Job Model, which serves as the foundation for your video interviews. Use the <code>createJob</code> or <code>createJobWithCandidates</code> API endpoints to define various aspects of the interview, such as questions, link appearance, and description.</p>\n<h2 id=\"2-create-a-candidate\">2. Create a Candidate</h2>\n<p>Next, create a Candidate Model for each candidate you want to invite to the video interview. Provide the necessary information for generating an invitation and ensure the Candidate Model is associated with the Job Model created earlier.</p>\n<h2 id=\"3-invite-a-candidate-to-a-job\">3. Invite a Candidate to a Job</h2>\n<p>Utilize the candidate information to generate a personalized myInterview video interview link and send it to the candidates, inviting them to participate in the video interview associated with the Job Model.</p>\n<h2 id=\"4-setup-a-webhook-notification\">4. Setup a Webhook Notification</h2>\n<p>Once candidates have been invited, set up a webhook to receive real-time notifications when candidates complete their video interviews. Configure the webhook by providing a URL where POST requests will be sent upon video completion.</p>\n<h2 id=\"5-get-candidates-video-analysis\">5. Get Candidate's Video Analysis</h2>\n<p>After candidates have completed their video interviews, use the API to access and analyze the videos. Retrieve information about the candidate's performance, including video content and any available metadata, to evaluate their suitability for the position.</p>\n<h2 id=\"api-flow\">API Flow</h2>\n<ol>\n<li><strong>Create a Job</strong>: Configure a Job Model using the <code>createJob</code> or <code>createJobWithCandidates</code> API endpoints.</li>\n<li><strong>Create a Candidate</strong>: Create a Candidate Model for each candidate and associate it with the Job Model.</li>\n<li><strong>Invite a Candidate to a Job</strong>: Send personalized interview links to candidates, inviting them to participate in the video interview.</li>\n<li><strong>Setup a Webhook Notification</strong>: Monitor the status of candidate video interviews using the webhook notifications.</li>\n<li><strong>Get Candidate's Video Analysis</strong>: Access completed video interviews and analyze the candidate's performance.</li>\n</ol>\n<p>By following this basic flow, you can efficiently manage and monitor video interviews, streamlining the recruitment process and helping you identify the best talent for your organization.</p>\n<blockquote>\n<p>Note </p>\n</blockquote>\n<ul>\n<li>We packaged in a single call job creation, candidate creation and inviting the candidates for convenience, as it is the most common use case.</li>\n</ul>\n<p>SDK's</p>\n<p>Server-side helper libraries (AKA Server-side SDKs) make it easy for you to use MyInterview's REST APIs.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>sdk</strong></th>\n<th><strong>url</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Node.js</td>\n<td><a href=\"https://www.npmjs.com/package/myinterview\">https://www.npmjs.com/package/myinterview</a></td>\n</tr>\n</tbody>\n</table>\n</div><p>The rootURL for myInterview web service is <a href=\"https://api-ga.myinterview.com/api\">https://api-ga.myinterview.com/api</a>.</p>\n<p>The myInterview API is organized around <a href=\"http://en.wikipedia.org/wiki/Representational_State_Transfer\">REST</a>. Our API has predictable resource-oriented URLs, accepts <a href=\"https://en.wikipedia.org/wiki/POST_(HTTP)#Use_for_submitting_web_forms\">form-encoded</a> request bodies, returns <a href=\"http://www.json.org/\">JSON-encoded</a> responses, and uses standard HTTP response codes, authentication, and verbs.</p>\n<h1 id=\"authentication\">Authentication</h1>\n<p>The myInterview API uses API keys to authenticate requests. Contact your account success manager to get your keys. (You will need company_id, secret_key, access_key)</p>\n<p>Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret API keys in publicly accessible areas such as Git, client-side code, and so forth.</p>\n<p>All API requests must be made over <a href=\"http://en.wikipedia.org/wiki/HTTP_Secure\">HTTPS</a>. Calls made over plain HTTP will fail. API requests without authentication will also fail.</p>\n<p>Authenticate to the myInterview API requires your to implement the following:</p>\n<ol>\n<li>header 'x-myinterview-timestamp' with timestamp in UTC epoch time (milliseconds).</li>\n<li>header 'x-myinterview-key' with their access key.</li>\n<li>header 'x-myinterview-signed' base64 token using hmac 'SHA-256' hashed by the secret, hashing the timestamp in 'milliseconds'+\".\"+company_id together</li>\n</ol>\n<h3 id=\"example-in-nodejs\">Example in NodeJS</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">// How to populate the header\nconst crypto = require('crypto');\nconst config = {\n  accessKey: \"yourAccessKey\"\n  secret: \"myinterviewsecret\",\n  companyId: \"companyId\",\n}\nfunction makeApiToken(secret, clientId, accessKEY, timestamp) {\n  return crypto\n    .createHmac('sha256', secret)\n    .update(timestamp.toString() + '.' + clientId)\n    .digest('base64');\n}\nfunction populateHeaders(config) {\n    const timestamp = Date.now();\n    const token = makeApiToken(config.secret, config.companyId, config.accessKey, timestamp);\n    return {\n      'x-myinterview-timestamp': timestamp.toString(),\n      'x-myinterview-key': config.accessKey,\n      'x-myinterview-signed': token,\n    };\n}\n\n</code></pre>\n<h3 id=\"example-in-ruby\">Example in Ruby</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-ruby\">require 'openssl'\n# How to populate the header\nconfig = {\n  accessKey: \"yourAccessKey\",\n  secret: \"myinterviewsecret\",\n  companyId: \"companyId\",\n}\ndef make_api_token(secret, client_id, access_key, timestamp)\n  hmac = OpenSSL::HMAC.new(secret, OpenSSL::Digest.new('sha256'))\n  hmac.update(\"#{timestamp}.#{client_id}\")\n  Base64.strict_encode64(hmac.digest)\nend\ndef populate_headers(config)\n  current_time = Time.now\n  timestamp = (current_time.to_f * 1000).to_i # milliseconds\n  token = make_api_token(config[:secret], config[:companyId], config[:accessKey], timestamp)\n  {\n    'x-myinterview-timestamp' =&gt; timestamp.to_s,\n    'x-myinterview-key' =&gt; config[:accessKey],\n    'x-myinterview-signed' =&gt; token\n  }\nend\n\n</code></pre>\n<h1 id=\"rate-limits\">Rate Limits</h1>\n<p>We currently rate limit by the number of calls per hour. We also limit by the number of assets (jobs, candidates etc) you are allowed to create according to your subscription.</p>\n<p>Response headers:</p>\n<ol>\n<li>X-RateLimit-Limit : The maximum number of requests you're permitted to make per hour.</li>\n<li>X-RateLimit-Remaining : The number of requests remaining in the current rate limit window.</li>\n<li>X-RateLimit-Reset : the time left in seconds at which the current rate limit window resets in UTC epoch.</li>\n</ol>\n<h1 id=\"webhooks\">Webhooks</h1>\n<p>Webhooks allow you to get event notifications back to your system. When one of those events is triggered, we’ll send a HTTP POST payload to the webhook’s configured URL. You can specify a custom webhook URL for each event type in MyInterview.</p>\n<h1 id=\"pagination\">Pagination</h1>\n<p>All resources with a list endpoint (candidates, videos) have pagination support. By default, the limit is set to 20 results.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>#</strong></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>limit</td>\n<td>A limit on the number of objects to be returned. The limit can range between 1 and 100 items. If no limit is specified, the default for that endpoint is used.</td>\n</tr>\n<tr>\n<td>skip</td>\n<td>An offset token specifying the next page of results to return. A paginated list response will include a next attribute that includes an offset token, which can be used as an input parameter to the next request. If an offset is not passed in, the API will fetch the first page of results.</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"errors\">Errors</h1>\n<p>MyInterview uses conventional HTTP response codes to indicate the success or failure of an API request. In general: Codes in the 2xx range indicate success. Codes in the 4xx range indicate an error that failed given the information provided (e.g., a required parameter was omitted, a candidate invite failed, etc.). Codes in the 5xx range indicate an error with myInterview's servers (these are rare).</p>\n<p>Some errors that could be handled programmatically include an error code that briefly explains the error reported.</p>\n<p>HTTP STATUS CODE SUMMARY</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>#</th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>200 - OK</td>\n<td>Everything worked as expected.</td>\n</tr>\n<tr>\n<td>400 - Bad Request</td>\n<td>The request was unacceptable, often due to missing a required parameter.</td>\n</tr>\n<tr>\n<td>401 - Unauthorized</td>\n<td>No valid API key provided.</td>\n</tr>\n<tr>\n<td>402 - Request Failed</td>\n<td>The parameters were valid but the request failed.</td>\n</tr>\n<tr>\n<td>403 - Forbidden</td>\n<td>The API key doesn't have permissions to perform the request.</td>\n</tr>\n<tr>\n<td>404 - Not Found</td>\n<td>The requested resource doesn't exist.</td>\n</tr>\n<tr>\n<td>429 - Too Many Requests</td>\n<td>Too many requests hit the API too quickly. We recommend an exponential backoff of your requests.</td>\n</tr>\n<tr>\n<td>500, 502, 503, 504 - Server Errors</td>\n<td>Something went wrong on myInterview's end. (These are rare.)</td>\n</tr>\n</tbody>\n</table>\n</div><p>myInterview ERROR CODES</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>#</th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>0</td>\n<td>OK</td>\n</tr>\n<tr>\n<td>1</td>\n<td>CREATED</td>\n</tr>\n<tr>\n<td>2</td>\n<td>UPDATED</td>\n</tr>\n<tr>\n<td>3</td>\n<td>DELETED</td>\n</tr>\n<tr>\n<td>10000</td>\n<td>WRONG_ACCESS_KEY</td>\n</tr>\n<tr>\n<td>10001</td>\n<td>WRONG_TOKEN</td>\n</tr>\n<tr>\n<td>10002</td>\n<td>TOKEN EXPIRED</td>\n</tr>\n<tr>\n<td>10003</td>\n<td>ACCESS_DENIED</td>\n</tr>\n<tr>\n<td>10004</td>\n<td>TOO_MANY_REQUESTS</td>\n</tr>\n<tr>\n<td>10005</td>\n<td>UNAUTHORIZED</td>\n</tr>\n<tr>\n<td>10006</td>\n<td>UNAUTHORIZED_SCOPE</td>\n</tr>\n<tr>\n<td>10007</td>\n<td>NOT_FOUND</td>\n</tr>\n<tr>\n<td>10008</td>\n<td>VALIDATION</td>\n</tr>\n<tr>\n<td>10009</td>\n<td>BAD_WEBHOOK_REQUEST</td>\n</tr>\n<tr>\n<td>10010</td>\n<td>UNAUTHORIZED_IP</td>\n</tr>\n<tr>\n<td>10011</td>\n<td>EXPIRED</td>\n</tr>\n<tr>\n<td>10012</td>\n<td>MISSING_QUERY_PARAMS</td>\n</tr>\n<tr>\n<td>10013</td>\n<td>OVER_USAGE_SUBSCRIPTION</td>\n</tr>\n<tr>\n<td>10014</td>\n<td>UNAUTHORIZED_REFERRER</td>\n</tr>\n<tr>\n<td>10015</td>\n<td>UNAUTHORIZED_INTEGRATION</td>\n</tr>\n<tr>\n<td>50000</td>\n<td>SERVER_ERROR</td>\n</tr>\n<tr>\n<td>50001</td>\n<td>MISSING_CONFIG</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"api-keys\">API Keys</h1>\n<p>Your API keys are available under integrations page of your myInterview dashboard.</p>\n<p>The following table outlines the key management activities.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Category</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>test mode Keys</td>\n<td>Private keys used for API authentication with the test mode environment. You can validate your api calls format, before going live. MyInterview generates the initial set of keys when you add \"myInterview API \" from integrations page.</td>\n</tr>\n<tr>\n<td>Production Keys</td>\n<td>Private keys used for API authentication with the Production environment. MyInterview generates the initial set of keys when you add \"myInterview API \" from integrations page.</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>DO not expose your myInterview credentials to end-users as part of the bundled HTML/JavaScript sent to their browser.</strong></th>\n</tr>\n</thead>\n<tbody>\n</tbody>\n</table>\n</div><h1 id=\"testmode\">TestMode</h1>\n<p>The test mode is not connected to any Database all the call are just checking if the payload or the url are correct if you try to create or update nothing will be saved as all the response are mock data.</p>\n<h2 id=\"timezoneforinvite\">TimezoneForInvite</h2>\n<p>You can get the list of timezones on this <a href=\"https://api-ga.myinterview.com/timezones\">link</a></p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Overview","slug":"overview"},{"content":"Getting Started with the API","slug":"getting-started-with-the-api"},{"content":"Authentication","slug":"authentication"},{"content":"Rate Limits","slug":"rate-limits"},{"content":"Webhooks","slug":"webhooks"},{"content":"Pagination","slug":"pagination"},{"content":"Errors","slug":"errors"},{"content":"API Keys","slug":"api-keys"},{"content":"TestMode","slug":"testmode"}],"owner":"15331641","collectionId":"47f33eb7-53ed-45cd-be7d-a771fcb6cd61","publishedId":"TzCV3jmZ","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"f15c5a"},"publishDate":"2021-12-21T16:21:29.000Z"},"item":[{"name":"API Reference","item":[{"name":"Jobs","item":[{"name":"Job details","id":"a0771ef1-2865-42d0-93d5-8badc329e861","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"}],"url":"https://api-ga.myinterview.com/api/v1/jobs/:jobId","urlObject":{"path":["v1","jobs",":jobId"],"host":["https://api-ga.myinterview.com/api"],"query":[],"variable":[]}},"response":[{"id":"1b27388a-e3ce-43ed-bcca-7f5f56252332","name":"200","originalRequest":{"method":"GET","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"}],"url":"https://api-ga.myinterview.com/api/v1/jobs/:jobId"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1340"},{"key":"ETag","value":"W/\"53c-z4p1d7w4Qr3q0zDX+HFyBwllHos\""},{"key":"Date","value":"Mon, 07 Feb 2022 09:12:37 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 200,\n    \"errorCode\": 0,\n    \"statusReason\": \"OK\",\n    \"callId\": \"v1a6L0DZYGoG\",\n    \"data\": {\n        \"categories\": [],\n        \"skills\": [],\n        \"reminderValues\": [],\n        \"intelligenceIDs\": [],\n        \"jobInputFields\": [],\n        \"job_id\": \"b0ut1082ptq9iq4cem79i0zf\",\n        \"creatorId\": \"qzhscubwqtky3cdc9vfp8vm7\",\n        \"title\": \"Test Limit\",\n        \"introVideo\": \"\",\n        \"apiKey\": \"xrng4ikkspuuybry7zn7tbdn\",\n        \"company\": \"myInterview\",\n        \"questions\": [\n            {\n                \"question\": \"Please introduce yourself\",\n                \"partDuration\": 45,\n                \"numOfRetakes\": 3,\n                \"thinkingTime\": 0\n            }\n        ],\n        \"config\": {\n            \"hideQuestions\": false,\n            \"practice\": true\n        },\n        \"company_id\": \"cv7bijkskrmd4g3zbrs9q2b6\",\n        \"status\": \"active\",\n        \"slug\": \"test-limit\",\n        \"experience\": \"\",\n        \"jobDescription\": \"\",\n        \"intelligenceSurvey\": [],\n        \"companySlug\": \"myinterview\",\n        \"language\": \"en\",\n        \"transcriptLanguage\": \"en-GB\",\n        \"kanban\": [\n            {\n                \"id\": \"2\",\n                \"columnLabel\": \"Shortlisted\",\n                \"columnOrder\": 2\n            },\n            {\n                \"id\": \"3\",\n                \"columnLabel\": \"Hired\",\n                \"columnOrder\": 3\n            }\n        ],\n        \"permissions\": [\n            {\n                \"_id\": \"61e80a02b101040016420cdc\",\n                \"name\": \"David Sellam\",\n                \"user_id\": \"qzhscubwqtky3cdc9vfp8vm7\",\n                \"permission\": \"admin\",\n                \"follow\": true,\n                \"email\": \"david+chargebee@myinterview.com\",\n                \"createdAt\": \"2022-01-19T12:54:26.805Z\"\n            }\n        ],\n        \"updatedAt\": \"2022-01-19T12:54:26.805Z\",\n        \"createdAt\": \"2022-01-19T12:54:26.805Z\",\n        \"backgroundImage\": \"\",\n        \"logo\": \"https://logo.clearbit.com/myinterview.com\",\n        \"overlay\": \"\",\n        \"direct_link\": \"https://start-staging.myinterview.com/b0ut1082ptq9iq4cem79i0zf/myinterview/test-limit\"\n    },\n    \"time\": 1644225157872\n}"},{"id":"0071f4fb-15de-44e1-8688-25393a406f5a","name":"404","originalRequest":{"method":"GET","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"}],"url":"https://api-ga.myinterview.com/api/v1/jobs/:jobId"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"143"},{"key":"ETag","value":"W/\"8f-0yy6RqzHnKu3X1iBQXbNcekyKc4\""},{"key":"Date","value":"Mon, 07 Feb 2022 09:13:46 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusReason\": \"Not Found\",\n    \"errorMessage\": \"Job was not found\",\n    \"errorCode\": 10007,\n    \"statusCode\": 404,\n    \"callId\": \"drAUdtHP8eUM\",\n    \"time\": 1644225226529\n}"},{"id":"6c20cf6e-c714-4c25-b9fe-c2a803997203","name":"401","originalRequest":{"method":"GET","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"}],"url":"https://api-ga.myinterview.com/api/v1/jobs/:jobId"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"183"},{"key":"ETag","value":"W/\"b7-mqzDhXwaQbKwKyKIgiuhhbWhD4Q\""},{"key":"Date","value":"Mon, 07 Feb 2022 09:14:10 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusReason\": \"Unauthorized\",\n    \"errorMessage\": \"Access denied with access key: mtu4xlm5ao88kibo6jbilky\",\n    \"errorCode\": 10000,\n    \"statusCode\": 401,\n    \"callId\": \"SnRVAzWFHks2\",\n    \"time\": 1644225250554\n}"}],"_postman_id":"a0771ef1-2865-42d0-93d5-8badc329e861"},{"name":"Jobs list","id":"4df16585-abfd-480e-b048-0e86fa788510","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"}],"url":"https://api-ga.myinterview.com/api/v1/jobs","description":"<p>Get the entire list of jobs.</p>\n","urlObject":{"path":["v1","jobs"],"host":["https://api-ga.myinterview.com/api"],"query":[],"variable":[]}},"response":[{"id":"b9ff027b-4101-4112-ba80-cf8fedff5c1a","name":"200","originalRequest":{"method":"GET","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"}],"url":"https://api-ga.myinterview.com/api/v1/jobs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"6596"},{"key":"ETag","value":"W/\"19c4-zNpjJeX/WdPrAa9tfiQ2qVsQCb0\""},{"key":"Date","value":"Mon, 07 Feb 2022 09:09:19 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 200,\n    \"errorCode\": 0,\n    \"statusReason\": \"OK\",\n    \"callId\": \"HceTIkwzlugJ\",\n    \"data\": [\n        {\n            \"config\": {\n                \"practice\": true,\n                \"hideQuestions\": false\n            },\n            \"status\": \"active\",\n            \"expiry_email_sent\": false,\n            \"job_id\": \"b0ut1082ptq9iq4cem79i0zf\",\n            \"creatorId\": \"qzhscubwqtky3cdc9vfp8vm7\",\n            \"title\": \"Test Limit\",\n            \"introVideo\": \"\",\n            \"apiKey\": \"xrng4ikkspuuybry7zn7tbdn\",\n            \"company\": \"myInterview\",\n            \"questions\": [\n                {\n                    \"question\": \"Please introduce yourself\",\n                    \"partDuration\": 45,\n                    \"numOfRetakes\": 3,\n                    \"thinkingTime\": 0\n                }\n            ],\n            \"company_id\": \"cv7bijkskrmd4g3zbrs9q2b6\",\n            \"slug\": \"test-limit\",\n            \"experience\": \"\",\n            \"jobDescription\": \"\",\n            \"intelligenceSurvey\": [],\n            \"companySlug\": \"myinterview\",\n            \"language\": \"en\",\n            \"transcriptLanguage\": \"en-GB\",\n            \"updatedAt\": \"2022-01-19T12:54:26.805Z\",\n            \"createdAt\": \"2022-01-19T12:54:26.805Z\",\n            \"backgroundImage\": \"\",\n            \"logo\": \"https://logo.clearbit.com/myinterview.com\",\n            \"overlay\": \"\"\n        },\n        {\n            \"config\": {\n                \"practice\": true,\n                \"hideQuestions\": false\n            },\n            \"status\": \"active\",\n            \"location\": \"US\",\n            \"jobInputFields\": [],\n            \"job_id\": \"a8x4ql9sebjo8ooxh5nu0scd\",\n            \"creatorId\": \"qzhscubwqtky3cdc9vfp8vm7\",\n            \"title\": \"Test new fields\",\n            \"introVideo\": \"\",\n            \"apiKey\": \"xrng4ikkspuuybry7zn7tbdn\",\n            \"company\": \"myInterview\",\n            \"questions\": [\n                {\n                    \"question\": \"Please introduce yourself\",\n                    \"partDuration\": 45,\n                    \"numOfRetakes\": 3,\n                    \"thinkingTime\": 0\n                }\n            ],\n            \"company_id\": \"cv7bijkskrmd4g3zbrs9q2b6\",\n            \"slug\": \"test-new-fields\",\n            \"experience\": \"3-5 years\",\n            \"jobDescription\": \"\",\n            \"intelligenceSurvey\": [],\n            \"companySlug\": \"myinterview\",\n            \"language\": \"en\",\n            \"transcriptLanguage\": \"en-GB\",\n            \"updatedAt\": \"2022-01-20T08:26:52.533Z\",\n            \"createdAt\": \"2022-01-20T08:26:52.533Z\",\n            \"backgroundImage\": \"\",\n            \"logo\": \"https://logo.clearbit.com/myinterview.com\",\n            \"overlay\": \"\",\n            \"deadlineDate\": null\n        },\n        {\n            \"config\": {\n                \"practice\": true,\n                \"hideQuestions\": false\n            },\n            \"status\": \"draft\",\n            \"jobInputFields\": [\n                {\n                    \"fieldName\": \"cvUrl\",\n                    \"label\": \"CV - Resume\",\n                    \"type\": \"document\",\n                    \"required\": true\n                }\n            ],\n            \"job_id\": \"ir6sm9hgttflygdkkzpfs3ey\",\n            \"creatorId\": \"qzhscubwqtky3cdc9vfp8vm7\",\n            \"title\": \"sssssssss\",\n            \"introVideo\": \"\",\n            \"apiKey\": \"xrng4ikkspuuybry7zn7tbdn\",\n            \"company\": \"myInterview\",\n            \"questions\": [\n                {\n                    \"question\": \"Please introduce yourself\",\n                    \"partDuration\": 45,\n                    \"numOfRetakes\": 3,\n                    \"thinkingTime\": 0\n                },\n                {\n                    \"question\": \"What makes you the best person for this role?\",\n                    \"partDuration\": 30,\n                    \"numOfRetakes\": 3,\n                    \"thinkingTime\": 0\n                }\n            ],\n            \"company_id\": \"cv7bijkskrmd4g3zbrs9q2b6\",\n            \"experience\": \"\",\n            \"jobDescription\": \"\",\n            \"intelligenceSurvey\": [],\n            \"companySlug\": \"myinterview\",\n            \"language\": \"en\",\n            \"transcriptLanguage\": \"en-GB\",\n            \"updatedAt\": \"2022-01-20T10:51:37.668Z\",\n            \"createdAt\": \"2022-01-20T10:51:37.668Z\",\n            \"backgroundImage\": \"\",\n            \"logo\": \"https://logo.clearbit.com/myinterview.com\",\n            \"overlay\": \"\"\n        },\n        {\n            \"config\": {\n                \"practice\": true,\n                \"hideQuestions\": false\n            },\n            \"status\": \"active\",\n            \"jobInputFields\": [],\n            \"job_id\": \"6ho82ai2v4hkjt2wepolvfwq\",\n            \"creatorId\": \"qzhscubwqtky3cdc9vfp8vm7\",\n            \"title\": \"Test Transcript \",\n            \"introVideo\": \"\",\n            \"apiKey\": \"xrng4ikkspuuybry7zn7tbdn\",\n            \"company\": \"myInterview\",\n            \"questions\": [\n                {\n                    \"question\": \"Please introduce yourself\",\n                    \"partDuration\": 45,\n                    \"numOfRetakes\": 3,\n                    \"thinkingTime\": 0\n                },\n                {\n                    \"question\": \"What makes you the best person for this role?\",\n                    \"partDuration\": 30,\n                    \"numOfRetakes\": 3,\n                    \"thinkingTime\": 0\n                }\n            ],\n            \"company_id\": \"cv7bijkskrmd4g3zbrs9q2b6\",\n            \"slug\": \"test-transcript\",\n            \"experience\": \"\",\n            \"jobDescription\": \"\",\n            \"intelligenceSurvey\": [\n                {\n                    \"trait\": \"O\",\n                    \"score\": 4\n                },\n                {\n                    \"trait\": \"C\",\n                    \"score\": 1\n                },\n                {\n                    \"trait\": \"E\",\n                    \"score\": 3\n                },\n                {\n                    \"trait\": \"A\",\n                    \"score\": 3\n                },\n                {\n                    \"trait\": \"N\",\n                    \"score\": 0\n                }\n            ],\n            \"companySlug\": \"myinterview\",\n            \"language\": \"en\",\n            \"transcriptLanguage\": \"en-GB\",\n            \"updatedAt\": \"2022-01-24T09:05:14.171Z\",\n            \"createdAt\": \"2022-01-24T09:05:14.171Z\",\n            \"backgroundImage\": \"\",\n            \"logo\": \"https://logo.clearbit.com/myinterview.com\",\n            \"overlay\": \"\",\n            \"deadlineDate\": null\n        },\n        {\n            \"config\": {\n                \"practice\": false,\n                \"hideQuestions\": true\n            },\n            \"status\": \"active\",\n            \"company\": \"myInterview\",\n            \"companySlug\": \"myinterview\",\n            \"company_id\": \"cv7bijkskrmd4g3zbrs9q2b6\",\n            \"job_id\": \"f1kggk4hjk8la7g47r95stdw\",\n            \"slug\": \"administration-interview\",\n            \"title\": \"Administration Interview\",\n            \"apiKey\": \"xrng4ikkspuuybry7zn7tbdn\",\n            \"logo\": \"https://logo.clearbit.com/myinterview.com\",\n            \"questions\": [\n                {\n                    \"question\": \"Please walk us through your resume\",\n                    \"partDuration\": 120,\n                    \"numOfRetakes\": 1,\n                    \"thinkingTime\": 30\n                },\n                {\n                    \"question\": \"What does a job well done mean to you?\",\n                    \"partDuration\": 120,\n                    \"numOfRetakes\": 1,\n                    \"thinkingTime\": 30\n                },\n                {\n                    \"question\": \"What has been your proudest moment?\",\n                    \"partDuration\": 120,\n                    \"numOfRetakes\": 1,\n                    \"thinkingTime\": 30\n                },\n                {\n                    \"question\": \"What would you like to achieve in this role?\",\n                    \"partDuration\": 120,\n                    \"numOfRetakes\": 1,\n                    \"thinkingTime\": 30\n                }\n            ],\n            \"jobInputFields\": [],\n            \"updatedAt\": \"2022-02-04T11:04:02.772Z\",\n            \"createdAt\": \"2022-02-04T11:04:02.772Z\"\n        },\n        {\n            \"config\": {\n                \"practice\": false,\n                \"hideQuestions\": true\n            },\n            \"status\": \"active\",\n            \"company\": \"myInterview\",\n            \"companySlug\": \"myinterview\",\n            \"company_id\": \"cv7bijkskrmd4g3zbrs9q2b6\",\n            \"job_id\": \"4m1xo01flc6vygmj3zu6syyx\",\n            \"slug\": \"test-comeet\",\n            \"title\": \"Test Comeet\",\n            \"apiKey\": \"xrng4ikkspuuybry7zn7tbdn\",\n            \"introVideo\": \"\",\n            \"logo\": \"https://logo.clearbit.com/myinterview.com\",\n            \"questions\": [\n                {\n                    \"question\": \"Question 1\",\n                    \"description\": \"\",\n                    \"partDuration\": 45,\n                    \"numOfRetakes\": 3,\n                    \"thinkingTime\": 30\n                }\n            ],\n            \"jobInputFields\": [],\n            \"updatedAt\": \"2022-02-04T11:46:13.060Z\",\n            \"createdAt\": \"2022-02-04T11:12:47.012Z\",\n            \"intelligenceSurvey\": []\n        }\n    ],\n    \"time\": 1644224959224\n}"},{"id":"cfc6a7d0-f1f1-4108-be75-e5ea0b4c2cd8","name":"401","originalRequest":{"method":"GET","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"}],"url":"https://api-ga.myinterview.com/api/v1/jobs"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"183"},{"key":"ETag","value":"W/\"b7-TO6s5+hJiU+AhUkqrAAhDJ2nNzs\""},{"key":"Date","value":"Mon, 07 Feb 2022 09:11:21 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusReason\": \"Unauthorized\",\n    \"errorMessage\": \"Access denied with access key: mtu4xlm5ao88kibo6jbilky\",\n    \"errorCode\": 10000,\n    \"statusCode\": 401,\n    \"callId\": \"RuAxJoDb3gOl\",\n    \"time\": 1644225081445\n}"}],"_postman_id":"4df16585-abfd-480e-b048-0e86fa788510"},{"name":"Update a job","id":"98dc9a72-c270-4875-a804-fce3b420c095","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"config\": {\n        \"hideQuestions\": true,\n        \"practice\": false\n    },\n    \"skills\": [\n        \"reading\"\n    ],\n    \"logo\": \"logo url\",\n    \"questions\": [\n        {\n            \"question\": \"Please introduce yourself\",\n            \"partDuration\": 45,\n            \"numOfRetakes\": 3\n        },\n        {\n            \"question\": \"What makes you the best person for this role?\",\n            \"partDuration\": 30,\n            \"numOfRetakes\": 3\n        }\n    ],\n    \"experience\": \"\",\n    \"jobDescription\": \"\",\n    \"introVideo\": \"\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api-ga.myinterview.com/api/v1/jobs/:jobId","description":"<p>Update job's properties by job id.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</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>Title of the job</td>\n</tr>\n<tr>\n<td>template_id</td>\n<td>string</td>\n<td>If the template ID is given you will update your job with the template questions</td>\n</tr>\n<tr>\n<td>language</td>\n<td>string</td>\n<td>Language of the job</td>\n</tr>\n<tr>\n<td>overlay</td>\n<td>string</td>\n<td>Overlay of the of the application page (Value in Color Hexa #000000)</td>\n</tr>\n<tr>\n<td>termsUrl</td>\n<td>string</td>\n<td>Url of the Terms of Service</td>\n</tr>\n<tr>\n<td>privacyUrl</td>\n<td>string</td>\n<td>Url of the Privacy</td>\n</tr>\n<tr>\n<td>backgroundImage</td>\n<td>string</td>\n<td>Background Image of the of the application page</td>\n</tr>\n<tr>\n<td>transcriptLanguage</td>\n<td>string</td>\n<td>Language of the transcript video</td>\n</tr>\n<tr>\n<td>config</td>\n<td>Config Object</td>\n<td>Configuration object</td>\n</tr>\n<tr>\n<td>deadlineDate</td>\n<td>ISO Date string</td>\n<td>Deadline date for the job</td>\n</tr>\n<tr>\n<td>experience</td>\n<td>string</td>\n<td>experience of the job</td>\n</tr>\n<tr>\n<td>jobDescription</td>\n<td>string</td>\n<td>Job description</td>\n</tr>\n<tr>\n<td>logo</td>\n<td>string</td>\n<td>Logo</td>\n</tr>\n<tr>\n<td>questions</td>\n<td>Array of job questions</td>\n<td>Array of job questions objects</td>\n</tr>\n<tr>\n<td>practiceQuestions</td>\n<td>Array of job practiceQuestions</td>\n<td>Array of job questions objects</td>\n</tr>\n<tr>\n<td>skills</td>\n<td>Array of string</td>\n<td>skills</td>\n</tr>\n<tr>\n<td>introVideo</td>\n<td>string</td>\n<td>introduction video for application page</td>\n</tr>\n<tr>\n<td>jobInputFields</td>\n<td>array</td>\n<td>list of document that you will ask the candidate for. (Maximum length is 3 elements)</td>\n</tr>\n<tr>\n<td>jobInputFields.*.fieldName</td>\n<td>string</td>\n<td>name of document need to be in the following (cvUrl,phoneNumber,additionalFile,coverLetter,socialProfile,website,linkedin,address)</td>\n</tr>\n<tr>\n<td>jobInputFields.*.required</td>\n<td>boolean</td>\n<td>flag indicating if the document is required</td>\n</tr>\n<tr>\n<td>*required field</td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","jobs",":jobId"],"host":["https://api-ga.myinterview.com/api"],"query":[],"variable":[]}},"response":[{"id":"94da319c-5a38-4a66-8af6-97fb093e254c","name":"200","originalRequest":{"method":"PATCH","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"config\": {\n        \"hideQuestions\": true,\n        \"practice\": false\n    },\n    \"skills\": [\n        \"reading\"\n    ],\n    \"logo\": \"logo url\",\n    \"questions\": [\n        {\n            \"question\": \"Please introduce yourself\",\n            \"partDuration\": 45,\n            \"numOfRetakes\": 3\n        },\n        {\n            \"question\": \"What makes you the best person for this role?\",\n            \"partDuration\": 30,\n            \"numOfRetakes\": 3\n        }\n    ],\n    \"experience\": \"\",\n    \"jobDescription\": \"\",\n    \"introVideo\": \"\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api-ga.myinterview.com/api/v1/jobs/:jobId"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1551"},{"key":"ETag","value":"W/\"60f-7jxFUhHemF3GqmYv7aZ9Fb7GPSQ\""},{"key":"Date","value":"Mon, 07 Feb 2022 09:23:26 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 200,\n    \"errorCode\": 2,\n    \"statusReason\": \"Updated\",\n    \"callId\": \"N35rrIFCQvgK\",\n    \"data\": {\n        \"intelligenceIDs\": [\n            0,\n            7,\n            2,\n            4,\n            8\n        ],\n        \"jobInputFields\": [],\n        \"job_id\": \"b0ut1082ptq9iq4cem79i0zf\",\n        \"creatorId\": \"qzhscubwqtky3cdc9vfp8vm7\",\n        \"title\": \"Test Limit\",\n        \"introVideo\": \"\",\n        \"apiKey\": \"xrng4ikkspuuybry7zn7tbdn\",\n        \"company\": \"myInterview\",\n        \"questions\": [\n            {\n                \"question\": \"Please introduce yourself\",\n                \"partDuration\": 45,\n                \"numOfRetakes\": 3\n            },\n            {\n                \"question\": \"What makes you the best person for this role?\",\n                \"partDuration\": 30,\n                \"numOfRetakes\": 3\n            }\n        ],\n        \"config\": {\n            \"hideQuestions\": true,\n            \"practice\": false\n        },\n        \"company_id\": \"cv7bijkskrmd4g3zbrs9q2b6\",\n        \"status\": \"active\",\n        \"slug\": \"test-limit\",\n        \"experience\": \"\",\n        \"jobDescription\": \"\",\n        \"intelligenceSurvey\": [\n            {\n                \"trait\": \"O\",\n                \"score\": 5\n            },\n            {\n                \"trait\": \"A\",\n                \"score\": 4\n            },\n            {\n                \"trait\": \"C\",\n                \"score\": 3\n            },\n            {\n                \"trait\": \"E\",\n                \"score\": 2\n            },\n            {\n                \"trait\": \"N\",\n                \"score\": -1\n            }\n        ],\n        \"companySlug\": \"myinterview\",\n        \"language\": \"en\",\n        \"transcriptLanguage\": \"en-GB\",\n        \"kanban\": [\n            {\n                \"id\": \"2\",\n                \"columnLabel\": \"Shortlisted\",\n                \"columnOrder\": 2\n            },\n            {\n                \"id\": \"3\",\n                \"columnLabel\": \"Hired\",\n                \"columnOrder\": 3\n            }\n        ],\n        \"updatedAt\": \"2022-02-07T09:23:26.276Z\",\n        \"createdAt\": \"2022-01-19T12:54:26.805Z\",\n        \"backgroundImage\": \"\",\n        \"logo\": \"logo url\",\n        \"overlay\": \"\",\n        \"direct_link\": \"https://start-staging.myinterview.com/b0ut1082ptq9iq4cem79i0zf/myinterview/test-limit\"\n    },\n    \"time\": 1644225806576\n}"},{"id":"9ba386d6-4abc-4d40-bacd-533cb654521c","name":"401","originalRequest":{"method":"PATCH","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"config\": {\n        \"hideQuestions\": true,\n        \"practice\": false\n    },\n    \"skills\": [\n        \"reading\"\n    ],\n    \"logo\": \"logo url\",\n    \"questions\": [\n        {\n            \"question\": \"Please introduce yourself\",\n            \"partDuration\": 45,\n            \"numOfRetakes\": 3\n        },\n        {\n            \"question\": \"What makes you the best person for this role?\",\n            \"partDuration\": 30,\n            \"numOfRetakes\": 3\n        }\n    ],\n    \"experience\": \"\",\n    \"jobDescription\": \"\",\n    \"introVideo\": \"\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api-ga.myinterview.com/api/v1/jobs/:jobId"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"141"},{"key":"ETag","value":"W/\"8d-rkxz0rKA1kqnb4si1GYeja325bA\""},{"key":"Date","value":"Mon, 07 Feb 2022 09:24:33 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusReason\": \"Unauthorized\",\n    \"errorMessage\": \"Unauthorized\",\n    \"errorCode\": 10005,\n    \"statusCode\": 401,\n    \"callId\": \"cuExvgvA4MbR\",\n    \"time\": 1644225873174\n}"}],"_postman_id":"98dc9a72-c270-4875-a804-fce3b420c095"},{"name":"Create a job","id":"85881e60-60d5-4ff9-818d-c209dbed310f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"title\": \"job title\",\n    \"config\": {\n        \"hideQuestions\": false,\n        \"practice\": false\n    },\n    \"skills\": [],\n    \"questions\": [\n        {\n            \"question\": \"Please introduce yourself\",\n            \"partDuration\": 45,\n            \"numOfRetakes\": 3\n        },\n        {\n            \"question\": \"What makes you the best person for this role?\",\n            \"partDuration\": 30,\n            \"numOfRetakes\": 3\n        }\n    ],\n    \"url\": \"logo url\",\n    \"experience\": \"\",\n    \"jobDescription\": \"\",\n    \"introVideo\": \"\",\n    \"followers\": [\n        {\n            \"name\": \"follower name\",\n            \"email\": \"xxx@xxx.xxx\"\n        }\n    ],\n    \"template_id\": \"any-template-id\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api-ga.myinterview.com/api/v1/jobs","description":"<p>Creates a new job.</p>\n<p>If the template ID is given in the body you will create your job with the template questions.</p>\n<p>You can get the id of the templates with Company templates call in the documentation.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</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>Title of the job</td>\n</tr>\n<tr>\n<td>template_id</td>\n<td>string</td>\n<td>If the template ID is given you will create your job with the template questions</td>\n</tr>\n<tr>\n<td>language</td>\n<td>string</td>\n<td>Language of the job</td>\n</tr>\n<tr>\n<td>overlay</td>\n<td>string</td>\n<td>Overlay of the of the application page (Value in Color Hexa #000000)</td>\n</tr>\n<tr>\n<td>termsUrl</td>\n<td>string</td>\n<td>Url of the Terms of Service</td>\n</tr>\n<tr>\n<td>privacyUrl</td>\n<td>string</td>\n<td>Url of the Privacy</td>\n</tr>\n<tr>\n<td>backgroundImage</td>\n<td>string</td>\n<td>Background Image of the of the application page</td>\n</tr>\n<tr>\n<td>transcriptLanguage</td>\n<td>string</td>\n<td>Language of the transcript video</td>\n</tr>\n<tr>\n<td>*config</td>\n<td>Config Object</td>\n<td>Configuration object</td>\n</tr>\n<tr>\n<td>deadlineDate</td>\n<td>ISO Date string</td>\n<td>Deadline date for the job</td>\n</tr>\n<tr>\n<td>experience</td>\n<td>string</td>\n<td>experience of the job</td>\n</tr>\n<tr>\n<td>jobDescription</td>\n<td>string</td>\n<td>Job description</td>\n</tr>\n<tr>\n<td>logo</td>\n<td>string</td>\n<td>Logo</td>\n</tr>\n<tr>\n<td>*questions</td>\n<td>Array of job questions</td>\n<td>Array of job questions objects</td>\n</tr>\n<tr>\n<td>practiceQuestions</td>\n<td>Array of job practice questions</td>\n<td>Array of job practice questions objects</td>\n</tr>\n<tr>\n<td>skills</td>\n<td>Array of string</td>\n<td>skills</td>\n</tr>\n<tr>\n<td>introVideo</td>\n<td>string</td>\n<td>introduction video for application page</td>\n</tr>\n<tr>\n<td>jobInputFields</td>\n<td>array</td>\n<td>list of document that you will ask the candidate for. (Maximum length is 3 elements)</td>\n</tr>\n<tr>\n<td>jobInputFields.*.fieldName</td>\n<td>string</td>\n<td>name of document need to be in the following (cvUrl,phoneNumber,additionalFile,coverLetter,socialProfile,website,linkedin,address)</td>\n</tr>\n<tr>\n<td>jobInputFields.*.required</td>\n<td>boolean</td>\n<td>flag indicating if the document is required</td>\n</tr>\n<tr>\n<td>*required field</td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","jobs"],"host":["https://api-ga.myinterview.com/api"],"query":[],"variable":[]}},"response":[{"id":"2db5802e-e378-401d-a247-ca3f34b3b64a","name":"201","originalRequest":{"method":"POST","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"title\": \"job title\",\n    \"config\": {\n        \"hideQuestions\": false,\n        \"practice\": false\n    },\n    \"skills\": [],\n    \"questions\": [\n        {\n            \"question\": \"Please introduce yourself\",\n            \"partDuration\": 45,\n            \"numOfRetakes\": 3\n        },\n        {\n            \"question\": \"What makes you the best person for this role?\",\n            \"partDuration\": 30,\n            \"numOfRetakes\": 3\n        }\n    ],\n    \"url\": \"logo url\",\n    \"experience\": \"\",\n    \"jobDescription\": \"\",\n    \"introVideo\": \"\",\n    \"followers\": [\n        {\n            \"name\": \"follower name\",\n            \"email\": \"xxx@xxx.xxx\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api-ga.myinterview.com/api/v1/jobs"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1245"},{"key":"ETag","value":"W/\"4dd-5Gn5hxOzd/3vpFCYp2YJATHsoBM\""},{"key":"Date","value":"Mon, 07 Feb 2022 09:22:29 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 201,\n    \"errorCode\": 1,\n    \"statusReason\": \"Created\",\n    \"callId\": \"0gFohOTpJu4Y\",\n    \"data\": {\n        \"config\": {\n            \"practice\": false,\n            \"hideQuestions\": false\n        },\n        \"status\": \"active\",\n        \"title\": \"job title\",\n        \"questions\": [\n            {\n                \"question\": \"Please introduce yourself\",\n                \"partDuration\": 45,\n                \"numOfRetakes\": 3\n            },\n            {\n                \"question\": \"What makes you the best person for this role?\",\n                \"partDuration\": 30,\n                \"numOfRetakes\": 3\n            }\n        ],\n        \"url\": \"logo url\",\n        \"experience\": \"\",\n        \"jobDescription\": \"\",\n        \"introVideo\": \"\",\n        \"company\": \"myInterview\",\n        \"companySlug\": \"myinterview\",\n        \"company_id\": \"cv7bijkskrmd4g3zbrs9q2b6\",\n        \"job_id\": \"hreglb894s9kqun8hjv07psn\",\n        \"slug\": \"job-title\",\n        \"apiKey\": \"xrng4ikkspuuybry7zn7tbdn\",\n        \"kanban\": [\n            {\n                \"id\": \"2\",\n                \"columnLabel\": \"Shortlisted\",\n                \"columnOrder\": 2\n            },\n            {\n                \"id\": \"3\",\n                \"columnLabel\": \"Hired\",\n                \"columnOrder\": 3\n            }\n        ],\n        \"logo\": \"https://logo.clearbit.com/myinterview.com\",\n        \"jobInputFields\": [],\n        \"updatedAt\": \"2022-02-07T09:22:29.729Z\",\n        \"createdAt\": \"2022-02-07T09:22:29.729Z\",\n        \"intelligenceSurvey\": [],\n        \"direct_link\": \"https://start-staging.myinterview.com/hreglb894s9kqun8hjv07psn/myinterview/job-title\"\n    },\n    \"time\": 1644225749890\n}"},{"id":"53556b31-ff8d-4be0-95b0-6cde6a1b568b","name":"400","originalRequest":{"method":"POST","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\n    \"config\": {\n        \"hideQuestions\": false,\n        \"practice\": false\n    },\n    \"skills\": [],\n    \"questions\": [\n        {\n            \"question\": \"Please introduce yourself\",\n            \"partDuration\": 45,\n            \"numOfRetakes\": 3\n        },\n        {\n            \"question\": \"What makes you the best person for this role?\",\n            \"partDuration\": 30,\n            \"numOfRetakes\": 3\n        }\n    ],\n    \"url\": \"logo url\",\n    \"experience\": \"\",\n    \"jobDescription\": \"\",\n    \"introVideo\": \"\",\n    \"followers\": [\n        {\n            \"name\": \"follower name\",\n            \"email\": \"xxx@xxx.xxx\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api-ga.myinterview.com/api/v1/jobs"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"188"},{"key":"ETag","value":"W/\"bc-rqqdgtOmO4T700RHdMLruk3LQpg\""},{"key":"Date","value":"Mon, 07 Feb 2022 09:22:44 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusReason\": \"Validation\",\n    \"errorMessage\": [\n        {\n            \"msg\": \"Title is required\",\n            \"param\": \"title\",\n            \"location\": \"body\"\n        }\n    ],\n    \"errorCode\": 10008,\n    \"statusCode\": 400,\n    \"callId\": \"bTCOJskHOm9d\",\n    \"time\": 1644225764502\n}"}],"_postman_id":"85881e60-60d5-4ff9-818d-c209dbed310f"},{"name":"Create job with candidates","id":"b3063ae1-26fc-4526-af22-529cbc8197e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"title\": \"job title\",\n    \"config\": {\n        \"hideQuestions\": false,\n        \"practice\": false\n    },\n    \"followers\": [\n        {\n            \"name\": \"follower name\",\n            \"email\": \"xxx@xxx.xxx\"\n        }\n    ],\n    \"skills\": [],\n    \"template_id\": \"your template id\",\n    \"questions\": [\n        {\n            \"question\": \"Please introduce yourself\",\n            \"partDuration\": 45,\n            \"numOfRetakes\": 3\n        },\n        {\n            \"question\": \"What makes you the best person for this role?\",\n            \"partDuration\": 30,\n            \"numOfRetakes\": 3\n        }\n    ],\n    \"url\": \"logo url\",\n    \"experience\": \"\",\n    \"jobDescription\": \"\",\n    \"introVideo\": \"\",\n    \"logo\": \"logo url\",\n    \"candidates\": {\n        \"communication\": true,\n        \"deadlineDate\": \"2022-10-20T08:42:59.537+00:00\",\n        \"candidates\": [\n            {\n                \"username\": \"canddiate name\",\n                \"email\": \"xxx@xxx.xxx\",\n                \"phone\": \"+972521111111\"\n            }\n        ]\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api-ga.myinterview.com/api/v1/jobs/candidates","description":"<p>This call will create for you the job, candidate and will send an invite email to the candidate.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>template_id</td>\n<td>string</td>\n<td>If the template ID is given you will create your job with the template questions</td>\n</tr>\n<tr>\n<td>*title</td>\n<td>string</td>\n<td>Title of the job</td>\n</tr>\n<tr>\n<td>questions</td>\n<td>Array of job questions</td>\n<td>Array of job questions objects is required if you don't provide template_id</td>\n</tr>\n<tr>\n<td>practiceQuestions</td>\n<td>Array of job practiceQuestions</td>\n<td>Array of job questions objects</td>\n</tr>\n<tr>\n<td>language</td>\n<td>string</td>\n<td>Language of the job</td>\n</tr>\n<tr>\n<td>overlay</td>\n<td>string</td>\n<td>Overlay of the of the application page (Value in Color Hexa #000000)</td>\n</tr>\n<tr>\n<td>termsUrl</td>\n<td>string</td>\n<td>Url of the Terms of Service</td>\n</tr>\n<tr>\n<td>privacyUrl</td>\n<td>string</td>\n<td>Url of the Privacy</td>\n</tr>\n<tr>\n<td>backgroundImage</td>\n<td>string</td>\n<td>Background Image of the of the application page</td>\n</tr>\n<tr>\n<td>transcriptLanguage</td>\n<td>string</td>\n<td>Language of the transcript video</td>\n</tr>\n<tr>\n<td>config</td>\n<td>Config Object</td>\n<td>Configuration object</td>\n</tr>\n<tr>\n<td>deadlineDate</td>\n<td>ISO Date string</td>\n<td>Deadline date for the job</td>\n</tr>\n<tr>\n<td>experience</td>\n<td>string</td>\n<td>experience of the job</td>\n</tr>\n<tr>\n<td>jobDescription</td>\n<td>string</td>\n<td>Job description</td>\n</tr>\n<tr>\n<td>logo</td>\n<td>string</td>\n<td>Logo</td>\n</tr>\n<tr>\n<td>skills</td>\n<td>Array of string</td>\n<td>skills</td>\n</tr>\n<tr>\n<td>introVideo</td>\n<td>string</td>\n<td>introduction video for application page</td>\n</tr>\n<tr>\n<td>jobInputFields</td>\n<td>array</td>\n<td>list of document that you will ask the candidate for. (Maximum length is 3 elements)</td>\n</tr>\n<tr>\n<td>jobInputFields.*.fieldName</td>\n<td>string</td>\n<td>name of document need to be in the following (cvUrl,phoneNumber,additionalFile,coverLetter,socialProfile,website,linkedin,address)</td>\n</tr>\n<tr>\n<td>jobInputFields.*.required</td>\n<td>boolean</td>\n<td>flag indicating if the document is required</td>\n</tr>\n<tr>\n<td>*required field</td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v1","jobs","candidates"],"host":["https://api-ga.myinterview.com/api"],"query":[],"variable":[]}},"response":[{"id":"b01afe13-c5fb-4ec5-b630-43994a4daaad","name":"201","originalRequest":{"method":"POST","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"title\": \"job title\",\n    \"config\": {\n        \"hideQuestions\": false,\n        \"practice\": false\n    },\n    \"followers\": [\n        {\n            \"name\": \"follower name\",\n            \"email\": \"xxx@xxx.xxx\"\n        }\n    ],\n    \"skills\": [],\n    \"template_id\": \"b2e4b0f4-4a80-4b71-9d02-e7941d9a2545\",\n    \"questions\": [\n        {\n            \"question\": \"Please introduce yourself\",\n            \"partDuration\": 45,\n            \"numOfRetakes\": 3\n        },\n        {\n            \"question\": \"What makes you the best person for this role?\",\n            \"partDuration\": 30,\n            \"numOfRetakes\": 3\n        }\n    ],\n    \"url\": \"logo url\",\n    \"experience\": \"\",\n    \"jobDescription\": \"\",\n    \"introVideo\": \"\",\n    \"logo\": \"logo url\",\n    \"candidates\": {\n        \"communication\": true,\n        \"deadlineDate\": \"2022-10-20T08:42:59.537+00:00\",\n        \"candidates\": [\n            {\n                \"username\": \"canddiate name\",\n                \"email\": \"xxx@xxx.xxx\",\n                \"phone\": \"+972521111111\"\n            }\n        ]\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api-ga.myinterview.com/api/v1/jobs/candidates"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1984"},{"key":"ETag","value":"W/\"7c0-qZTGfCylbp6RPseL5h3LosJLyYM\""},{"key":"Date","value":"Mon, 07 Feb 2022 09:34:24 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 201,\n    \"errorCode\": 1,\n    \"statusReason\": \"Created\",\n    \"callId\": \"O7uTxIwbI5Py\",\n    \"data\": {\n        \"candidates\": [\n            {\n                \"location\": \"US\",\n                \"candidate_id\": \"wzkh74b9jb96z66b54rkjqsr\",\n                \"company_id\": \"cv7bijkskrmd4g3zbrs9q2b6\",\n                \"deadline\": \"2022-10-20T08:42:59.537Z\",\n                \"phone\": \"+972521111111\",\n                \"username\": \"candidate name\",\n                \"email\": \"xxx@xxx.xxx\",\n                \"link\": \"https://start-staging.myinterview.com/wzkh74b9jb96z66b54rkjqsr\",\n                \"inviteUrl\": \"https://start-staging.myinterview.com/wzkh74b9jb96z66b54rkjqsr\",\n                \"job_id\": \"g55aczzn84ooux8dhbv8i3se\",\n                \"apiKey\": \"xrng4ikkspuuybry7zn7tbdn\",\n                \"status\": \"pending\",\n                \"reminders\": [],\n                \"updatedAt\": \"2022-02-07T09:34:21.741Z\",\n                \"createdAt\": \"2022-02-07T09:34:21.741Z\"\n            }\n        ],\n        \"message\": \"1 have been created successfully\",\n        \"job\": {\n            \"config\": {\n                \"practice\": false,\n                \"hideQuestions\": false\n            },\n            \"status\": \"active\",\n            \"location\": \"US\",\n            \"title\": \"job title\",\n            \"questions\": [\n                {\n                    \"question\": \"Please walk us through your resume\",\n                    \"partDuration\": 120,\n                    \"numOfRetakes\": 1,\n                    \"thinkingTime\": 30\n                },\n                {\n                    \"question\": \"Why would you like to join us?\",\n                    \"partDuration\": 120,\n                    \"numOfRetakes\": 1,\n                    \"thinkingTime\": 30\n                },\n                {\n                    \"question\": \"What has been your proudest moment?\",\n                    \"partDuration\": 120,\n                    \"numOfRetakes\": 1,\n                    \"thinkingTime\": 30\n                },\n                {\n                    \"question\": \"Who is your role model and why do you respect them?\",\n                    \"partDuration\": 120,\n                    \"numOfRetakes\": 1,\n                    \"thinkingTime\": 30\n                }\n            ],\n            \"url\": \"logo url\",\n            \"experience\": \"\",\n            \"jobDescription\": \"\",\n            \"introVideo\": \"\",\n            \"logo\": \"logo url\",\n            \"company\": \"myInterview\",\n            \"companySlug\": \"myinterview\",\n            \"company_id\": \"cv7bijkskrmd4g3zbrs9q2b6\",\n            \"job_id\": \"g55aczzn84ooux8dhbv8i3se\",\n            \"slug\": \"job-title\",\n            \"apiKey\": \"xrng4ikkspuuybry7zn7tbdn\",\n            \"kanban\": [\n                {\n                    \"id\": \"2\",\n                    \"columnLabel\": \"Shortlisted\",\n                    \"columnOrder\": 2\n                },\n                {\n                    \"id\": \"3\",\n                    \"columnLabel\": \"Hired\",\n                    \"columnOrder\": 3\n                }\n            ],\n            \"jobInputFields\": [],\n            \"updatedAt\": \"2022-02-07T09:34:21.441Z\",\n            \"createdAt\": \"2022-02-07T09:34:21.441Z\",\n            \"intelligenceSurvey\": [],\n            \"direct_link\": \"https://start-staging.myinterview.com/g55aczzn84ooux8dhbv8i3se/myinterview/job-title\"\n        }\n    },\n    \"time\": 1644226464547\n}"},{"id":"740cec3c-477b-4e5f-bfd2-ed34a5c3249a","name":"404","originalRequest":{"method":"POST","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"title\": \"job title\",\n    \"config\": {\n        \"hideQuestions\": false,\n        \"practice\": false\n    },\n    \"followers\": [\n        {\n            \"name\": \"follower name\",\n            \"email\": \"xxx@xxx.xxx\"\n        }\n    ],\n    \"skills\": [],\n    \"template_id\": \"your template id\",\n    \"questions\": [\n        {\n            \"question\": \"Please introduce yourself\",\n            \"partDuration\": 45,\n            \"numOfRetakes\": 3\n        },\n        {\n            \"question\": \"What makes you the best person for this role?\",\n            \"partDuration\": 30,\n            \"numOfRetakes\": 3\n        }\n    ],\n    \"url\": \"logo url\",\n    \"experience\": \"\",\n    \"jobDescription\": \"\",\n    \"introVideo\": \"\",\n    \"logo\": \"logo url\",\n    \"candidates\": {\n        \"communication\": true,\n        \"deadlineDate\": \"2022-10-20T08:42:59.537+00:00\",\n        \"candidates\": [\n            {\n                \"username\": \"canddiate name\",\n                \"email\": \"xxx@xxx.xxx\",\n                \"phone\": \"+972521111111\"\n            }\n        ]\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api-ga.myinterview.com/api/v1/jobs/candidates"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"148"},{"key":"ETag","value":"W/\"94-Ujd9I/CclVM//vEhxgYzOCvOHSQ\""},{"key":"Date","value":"Mon, 07 Feb 2022 09:26:50 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusReason\": \"Not Found\",\n    \"errorMessage\": \"Template was not found\",\n    \"errorCode\": 10007,\n    \"statusCode\": 404,\n    \"callId\": \"pHhKOX6pjJ6y\",\n    \"time\": 1644226010003\n}"}],"_postman_id":"b3063ae1-26fc-4526-af22-529cbc8197e5"},{"name":"Configure job's candidates qualities","id":"572aae14-d827-45f0-9ead-af9b676ec657","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"intelligence\": [\n        {\n            \"name\": \"Creative\",\n            \"order\": 1\n        },\n        {\n            \"name\": \"Persuasive\",\n            \"order\": 2\n        },\n        {\n            \"name\": \"Disciplined\",\n            \"order\": 3\n        },\n        {\n            \"name\": \"Friendly\",\n            \"order\": 4\n        },\n        {\n            \"name\": \"Stress Tolerant\",\n            \"order\": 5\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api-ga.myinterview.com/api/v1/jobs/intelligence/:jobId","description":"<p>Create/Edit the top 5 qualities in the ideal candidate. candidates will be scored according to that.</p>\n<p>You need to send 5 items from this list: Creative,Strategic,Disciplined,Driven,Friendly,Outgoing,Assertive,Persuasive,Stress Tolerant,Optimism</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>*job_id</td>\n<td>string</td>\n<td>job_id</td>\n</tr>\n<tr>\n<td>*intelligence.order</td>\n<td>number</td>\n<td>order from 1 to 5</td>\n</tr>\n<tr>\n<td>*intelligence.name</td>\n<td>string</td>\n<td>trait name needs to be one of the following values: Creative, Strategic, Disciplined, Driven, Friendly, Outgoing, Assertive, Persuasive, Stress Tolerant, Optimism</td>\n</tr>\n</tbody>\n</table>\n</div><p>*required field</p>\n","urlObject":{"path":["v1","jobs","intelligence",":jobId"],"host":["https://api-ga.myinterview.com/api"],"query":[],"variable":[]}},"response":[{"id":"a61b1e2a-9c5b-4114-8e6a-0c4e8e31a757","name":"200","originalRequest":{"method":"POST","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"intelligence\": [\n        {\n            \"name\": \"Creative\",\n            \"order\": 1\n        },\n        {\n            \"name\": \"Persuasive\",\n            \"order\": 2\n        },\n        {\n            \"name\": \"Disciplined\",\n            \"order\": 3\n        },\n        {\n            \"name\": \"Friendly\",\n            \"order\": 4\n        },\n        {\n            \"name\": \"Stress Tolerant\",\n            \"order\": 5\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api-ga.myinterview.com/api/v1/jobs/intelligence/:jobId"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"343"},{"key":"ETag","value":"W/\"157-OTJ/qt92Fu3oV+oi+vOauihEjqQ\""},{"key":"Date","value":"Mon, 07 Feb 2022 09:19:44 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 200,\n    \"errorCode\": 0,\n    \"statusReason\": \"OK\",\n    \"callId\": \"W0VkD9WHcphX\",\n    \"data\": {\n        \"intelligence\": [\n            {\n                \"name\": \"Creative\",\n                \"order\": 1\n            },\n            {\n                \"name\": \"Persuasive\",\n                \"order\": 2\n            },\n            {\n                \"name\": \"Disciplined\",\n                \"order\": 3\n            },\n            {\n                \"name\": \"Friendly\",\n                \"order\": 4\n            },\n            {\n                \"name\": \"Stress Tolerant\",\n                \"order\": 5\n            }\n        ],\n        \"message\": \"The intelligence on you job has been updated.\"\n    },\n    \"time\": 1644225584334\n}"},{"id":"4cef2b43-0506-4cfe-85ca-a3635da0ecce","name":"400","originalRequest":{"method":"POST","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"intelligence\": [\n        {\n            \"name\": \"Creative\",\n            \"order\": 1\n        },\n        {\n            \"name\": \"Persuasive\",\n            \"order\": 2\n        },\n        {\n            \"name\": \"Disciplined\",\n            \"order\": 3\n        },\n        {\n            \"name\": \"Disciplined\",\n            \"order\": 4\n        },\n        {\n            \"name\": \"Stress Tolerant\",\n            \"order\": 5\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api-ga.myinterview.com/api/v1/jobs/intelligence/:jobId"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"559"},{"key":"ETag","value":"W/\"22f-z+JGQWPcoKW3SKsN74rJ/MxoB48\""},{"key":"Date","value":"Mon, 07 Feb 2022 09:20:34 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusReason\": \"Validation\",\n    \"errorMessage\": [\n        {\n            \"value\": [\n                {\n                    \"name\": \"Creative\",\n                    \"order\": 1\n                },\n                {\n                    \"name\": \"Persuasive\",\n                    \"order\": 2\n                },\n                {\n                    \"name\": \"Disciplined\",\n                    \"order\": 3\n                },\n                {\n                    \"name\": \"Disciplined\",\n                    \"order\": 4\n                },\n                {\n                    \"name\": \"Stress Tolerant\",\n                    \"order\": 5\n                }\n            ],\n            \"msg\": \"intelligence.*.name - intelligence array can't contain 2 of the same value, please check your payload. (Creative,Strategic,Disciplined,Driven,Friendly,Outgoing,Assertive,Persuasive,Stress Tolerant,Optimism)\",\n            \"param\": \"intelligence\",\n            \"location\": \"body\"\n        }\n    ],\n    \"errorCode\": 10008,\n    \"statusCode\": 400,\n    \"callId\": \"9T4e9eYyz3Wn\",\n    \"time\": 1644225634629\n}"},{"id":"86d3d854-2a72-4196-87c3-f8e5e6398a7e","name":"401","originalRequest":{"method":"POST","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"intelligence\": [\n        {\n            \"name\": \"Creative\",\n            \"order\": 1\n        },\n        {\n            \"name\": \"Persuasive\",\n            \"order\": 2\n        },\n        {\n            \"name\": \"Disciplined\",\n            \"order\": 3\n        },\n        {\n            \"name\": \"Friendly\",\n            \"order\": 4\n        },\n        {\n            \"name\": \"Stress Tolerant\",\n            \"order\": 5\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api-ga.myinterview.com/api/v1/jobs/intelligence/:jobId"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"183"},{"key":"ETag","value":"W/\"b7-86xg0j0jnaalh79B3+ddW57+fKw\""},{"key":"Date","value":"Mon, 07 Feb 2022 09:14:37 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusReason\": \"Unauthorized\",\n    \"errorMessage\": \"Access denied with access key: mtu4xlm5ao88kibo6jbilky\",\n    \"errorCode\": 10000,\n    \"statusCode\": 401,\n    \"callId\": \"ACptcUOAJMYB\",\n    \"time\": 1644225277761\n}"}],"_postman_id":"572aae14-d827-45f0-9ead-af9b676ec657"},{"name":"Get Job Update Secure Url","id":"2852fb55-6618-4bd2-b3fa-3f76a05d595e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"}],"url":"https://api-ga.myinterview.com/api/v1/jobs/:jobId/update_url","description":"<p>You can obtain the new update URL to access a sleek and user-friendly interface in myInterview, which makes it easy to update your created job.</p>\n<p><img src=\"https://app-service-upload.s3.amazonaws.com/uploads/update-job.gif\" alt=\"Job Service\" /></p>\n","urlObject":{"path":["v1","jobs",":jobId","update_url"],"host":["https://api-ga.myinterview.com/api"],"query":[],"variable":[]}},"response":[{"id":"5813c4b2-c851-4dc8-af7e-99fd7a2c2033","name":"Get Job Update Secure Url","originalRequest":{"method":"GET","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"}],"url":"https://api-ga.myinterview.com/api/v1/jobs/:jobId/update_url"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 24 Sep 2024 09:38:55 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"407"},{"key":"Connection","value":"keep-alive"},{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-RateLimit-Limit","value":"1000"},{"key":"X-RateLimit-Remaining","value":"997"},{"key":"X-RateLimit-Reset","value":"3414"},{"key":"ETag","value":"W/\"197-KcyvTsSD8zZmXhsELkUTRZu230g\""}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 200,\n    \"errorCode\": 0,\n    \"callId\": \"t8MJIObv3dT4\",\n    \"statusReason\": \"OK\",\n    \"time\": \"2024-09-24T09:38:55.378Z\",\n    \"data\": {\n        \"url\": \"https://dashboard.myinterview.com/edit-job-integration/ec2c9e51e291fafff1c9450354f6c2784deb6defd33850fe8a0ce8c3e3d1113c88d64a7f69316d833f6383466c973ba93acba358f4296a059ad4511a620e51789889159c4474eee801406d888181cd4081d9c18bcc89e1db33fc9a9085bbcddac914648ab3c21cdc12627289a5f849e7\"\n    }\n}"}],"_postman_id":"2852fb55-6618-4bd2-b3fa-3f76a05d595e"}],"id":"5abed79d-6633-4d56-8da2-055b852c4763","description":"<p>The Job Model serves as the starting point for setting up video interviews. It allows you to configure various aspects of the interview, such as questions, link appearance, description, and more.</p>\n<blockquote>\n<p><strong>Note</strong>: To invite a candidate for a myInterview video interview, a Job Model must be set up first.</p>\n</blockquote>\n<p>There are several ways to create a Job Model:</p>\n<ol>\n<li>Use the <code>createJob</code> API endpoint to create a Job Model with the required information.</li>\n<li>Use the <code>createJobWithCandidates</code> API endpoint to create a Job Model along with associated candidate(s) by providing the necessary information in the request.</li>\n<li>Obtain a secure, updated URL to access a sleek and user-friendly interface in myInterview by using the <code>getJobUpdateUrl</code> API endpoint, or by adding the option in <code>createJob</code>. This allows for easy updates to your created Job Model. For more details, refer to the documentation below.</li>\n</ol>\n<p>Once the Job Model is set up, you can manage and monitor the progress of your video interviews. You can view the status of individual candidates, review completed interviews, and make informed decisions based on the candidates' responses. The Job Model ensures a streamlined and efficient interview process, enabling you to find the best talent for your organization.</p>\n<blockquote>\n<p><strong>Note</strong>: When creating a job, there are two ways to invite a candidate:</p>\n<ol>\n<li>Explicitly create a candidate and send a personalized invitation.</li>\n<li>Obtain the direct link from the response, which can be sent to any candidate without a formal invitation.</li>\n</ol>\n</blockquote>\n<blockquote>\n<p><strong>Note</strong>: Setting up the AI for a job including its persona qualities is made via “Configure job's candidates qualities“ endpoint. You can find it under jobs section.</p>\n</blockquote>\n","_postman_id":"5abed79d-6633-4d56-8da2-055b852c4763"},{"name":"Candidates","item":[{"name":"Create candidate","id":"90b14e57-ef4d-4d34-804c-db47b33365e9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"communication\": false,\n    \"deadlineDate\": \"2021-10-20T08:42:59.537+00:00\",\n    \"candidates\": [\n        {\n            \"username\": \"john doe\",\n            \"email\": \"xxx@xxx.xxx\",\n            \"phone\": \"+972521111111\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api-ga.myinterview.com/api/v1/candidates/jobs/:jobId","description":"<p>Create one or more candidates</p>\n<p><em>Note:</em> The limit for Create Candidate is <strong>100</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>communication</td>\n<td>boolean</td>\n<td>Flag to send mail to invited candidates (default = false)</td>\n</tr>\n<tr>\n<td>reminders</td>\n<td>boolean</td>\n<td>Flag to activate reminders mails</td>\n</tr>\n<tr>\n<td>deadlineDate</td>\n<td>ISO Date string</td>\n<td>Deadline date for the candidate/s</td>\n</tr>\n<tr>\n<td>timezoneForInvite</td>\n<td>string</td>\n<td>Timezone for the deadline</td>\n</tr>\n<tr>\n<td>*candidates</td>\n<td>Array of candidate object</td>\n<td>Array of candidate objects</td>\n</tr>\n</tbody>\n</table>\n</div><p>*required field</p>\n","urlObject":{"path":["v1","candidates","jobs",":jobId"],"host":["https://api-ga.myinterview.com/api"],"query":[],"variable":[]}},"response":[{"id":"8c44250d-183c-4596-b407-05522f4b00fa","name":"201","originalRequest":{"method":"POST","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"communication\": false,\n    \"deadlineDate\": \"2021-10-20T08:42:59.537+00:00\",\n    \"candidates\": [\n        {\n            \"username\": \"john doe\",\n            \"email\": \"xxx@xxx.xxx\",\n            \"phone\": \"+972521111111\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api-ga.myinterview.com/api/v1/candidates/jobs/:jobId"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"436"},{"key":"ETag","value":"W/\"1b4-K7+vkIuD+HFPQ8wQA3cR2cXJZjA\""},{"key":"Date","value":"Mon, 07 Feb 2022 09:39:21 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 201,\n    \"errorCode\": 1,\n    \"statusReason\": \"Created\",\n    \"callId\": \"0nthkQWAw21p\",\n    \"data\": {\n        \"candidates\": [\n            {\n                \"candidate_id\": \"2plr4vfrwejx0yyk8yakea2g\",\n                \"username\": \"john doe\",\n                \"email\": \"xxx@xxx.xxx\",\n                \"phone\": \"+972521111111\",\n                \"job_id\": \"b0ut1082ptq9iq4cem79i0zf\",\n                \"company_id\": \"cv7bijkskrmd4g3zbrs9q2b6\",\n                \"inviteUrl\": \"https://start-staging.myinterview.com/2plr4vfrwejx0yyk8yakea2g\"\n            }\n        ],\n        \"message\": \"1 have been created successfully\"\n    },\n    \"time\": 1644226761646\n}"},{"id":"4c9236ba-6a8e-496c-af34-98be5baefc1d","name":"401","originalRequest":{"method":"POST","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"communication\": false,\n    \"deadlineDate\": \"2021-10-20T08:42:59.537+00:00\",\n    \"candidates\": [\n        {\n            \"username\": \"john doe\",\n            \"email\": \"xxx@xxx.xxx\",\n            \"phone\": \"+972521111111\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api-ga.myinterview.com/api/v1/candidates/jobs/:jobId"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"141"},{"key":"ETag","value":"W/\"8d-R5lZMWrePBNyadaSh8cDwaS9gJo\""},{"key":"Date","value":"Mon, 07 Feb 2022 09:40:39 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusReason\": \"Unauthorized\",\n    \"errorMessage\": \"Unauthorized\",\n    \"errorCode\": 10005,\n    \"statusCode\": 401,\n    \"callId\": \"Lt3G4H3YNswM\",\n    \"time\": 1644226839538\n}"}],"_postman_id":"90b14e57-ef4d-4d34-804c-db47b33365e9"},{"name":"Job's candidates","id":"84a90f82-bddf-4c17-9086-6298103a25e8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"}],"url":"https://api-ga.myinterview.com/api/v1/candidates/jobs/:jobId","description":"<p><strong>Lists all candidates of a job including their created date, their invite status and personal details like name and email.</strong></p>\n","urlObject":{"path":["v1","candidates","jobs",":jobId"],"host":["https://api-ga.myinterview.com/api"],"query":[],"variable":[]}},"response":[{"id":"c3ee6d28-2d4d-451b-8b02-f7f681212cba","name":"200","originalRequest":{"method":"GET","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"}],"url":"https://api-ga.myinterview.com/api/v1/candidates/jobs/:jobId"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"720"},{"key":"ETag","value":"W/\"2d0-gOd9sjbEx7FrVbxJKfeuS5NAzyk\""},{"key":"Date","value":"Mon, 07 Feb 2022 09:42:58 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 200,\n    \"errorCode\": 0,\n    \"statusReason\": \"OK\",\n    \"callId\": \"qmBy4lan6EWe\",\n    \"data\": [\n        {\n            \"location\": \"US\",\n            \"candidate_id\": \"2plr4vfrwejx0yyk8yakea2g\",\n            \"company_id\": \"cv7bijkskrmd4g3zbrs9q2b6\",\n            \"deadline\": \"2021-10-20T08:42:59.537Z\",\n            \"phone\": \"+972521111111\",\n            \"username\": \"john doe\",\n            \"email\": \"xxx@xxx.xxx\",\n            \"link\": \"https://start-staging.myinterview.com/2plr4vfrwejx0yyk8yakea2g\",\n            \"inviteUrl\": \"https://start-staging.myinterview.com/2plr4vfrwejx0yyk8yakea2g\",\n            \"job_id\": \"b0ut1082ptq9iq4cem79i0zf\",\n            \"apiKey\": \"xrng4ikkspuuybry7zn7tbdn\",\n            \"status\": \"pending\",\n            \"updatedAt\": \"2022-02-07T09:39:21.361Z\",\n            \"createdAt\": \"2022-02-07T09:39:21.361Z\"\n        }\n    ],\n    \"time\": 1644226978124\n}"},{"id":"e91426d6-1251-4988-a8f2-450ab6cb7128","name":"401","originalRequest":{"method":"GET","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"}],"url":"https://api-ga.myinterview.com/api/v1/candidates/jobs/:jobId"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"141"},{"key":"ETag","value":"W/\"8d-vJgo5B2NGaShdX4d0wYIz6E9+Zs\""},{"key":"Date","value":"Mon, 07 Feb 2022 09:40:55 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusReason\": \"Unauthorized\",\n    \"errorMessage\": \"Unauthorized\",\n    \"errorCode\": 10005,\n    \"statusCode\": 401,\n    \"callId\": \"9ra9ZEQX4rMY\",\n    \"time\": 1644226855414\n}"}],"_postman_id":"84a90f82-bddf-4c17-9086-6298103a25e8"},{"name":"Candidate details","id":"eeabb510-e788-4d60-aa00-32fbea981c0a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"}],"url":"https://api-ga.myinterview.com/api/v1/candidates/:candidateId","urlObject":{"path":["v1","candidates",":candidateId"],"host":["https://api-ga.myinterview.com/api"],"query":[],"variable":[]}},"response":[{"id":"3b25640d-3a15-4007-b62e-b370520f59c6","name":"200","originalRequest":{"method":"GET","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"}],"url":"https://api-ga.myinterview.com/api/v1/candidates/:candidateId"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"683"},{"key":"ETag","value":"W/\"2ab-SkeXDoXNx5tby8lB1PtudPxXHCg\""},{"key":"Date","value":"Mon, 07 Feb 2022 09:46:14 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 200,\n    \"errorCode\": 0,\n    \"statusReason\": \"OK\",\n    \"callId\": \"H2Eme6ldzLpX\",\n    \"data\": {\n        \"location\": \"US\",\n        \"candidate_id\": \"2plr4vfrwejx0yyk8yakea2g\",\n        \"company_id\": \"cv7bijkskrmd4g3zbrs9q2b6\",\n        \"deadline\": \"2021-10-20T08:42:59.537Z\",\n        \"phone\": \"+972521111111\",\n        \"username\": \"john doe\",\n        \"email\": \"xxx@xxx.xxx\",\n        \"link\": \"https://start-staging.myinterview.com/2plr4vfrwejx0yyk8yakea2g\",\n        \"inviteUrl\": \"https://start-staging.myinterview.com/2plr4vfrwejx0yyk8yakea2g\",\n        \"job_id\": \"b0ut1082ptq9iq4cem79i0zf\",\n        \"apiKey\": \"xrng4ikkspuuybry7zn7tbdn\",\n        \"status\": \"pending\",\n        \"updatedAt\": \"2022-02-07T09:39:21.361Z\",\n        \"createdAt\": \"2022-02-07T09:39:21.361Z\"\n    },\n    \"time\": 1644227174518\n}"},{"id":"d8500a07-5f14-4f00-b481-68744f3b28b0","name":"401","originalRequest":{"method":"GET","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"}],"url":"https://api-ga.myinterview.com/api/v1/candidates/:candidateId"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"141"},{"key":"ETag","value":"W/\"8d-FthYCmuQ9jRMyIOv8xq9ulIk+cI\""},{"key":"Date","value":"Mon, 07 Feb 2022 09:43:56 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusReason\": \"Unauthorized\",\n    \"errorMessage\": \"Unauthorized\",\n    \"errorCode\": 10005,\n    \"statusCode\": 401,\n    \"callId\": \"aQST8shv5Zko\",\n    \"time\": 1644227036585\n}"},{"id":"d9426a57-17c0-4387-a945-2e30beae21b6","name":"404","originalRequest":{"method":"GET","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"}],"url":"https://api-ga.myinterview.com/api/v1/candidates/:candidateId"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"149"},{"key":"ETag","value":"W/\"95-1yhhAqUaBuwoRtUQvdcawfuSHv0\""},{"key":"Date","value":"Mon, 07 Feb 2022 09:45:39 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusReason\": \"Not Found\",\n    \"errorMessage\": \"Candidate was not found\",\n    \"errorCode\": 10007,\n    \"statusCode\": 404,\n    \"callId\": \"3owp4JFUpIHZ\",\n    \"time\": 1644227139940\n}"}],"_postman_id":"eeabb510-e788-4d60-aa00-32fbea981c0a"},{"name":"Update a candidate","id":"1f3267b4-7ec0-427e-9def-237270cf3f5c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"username\": \"john doe\",\n    \"phone\": \"+972521111111\",\n    \"deadline\": \"2021-10-20T08:42:59.537+00:00\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api-ga.myinterview.com/api/v1/candidates/:candidateId","description":"<p>Update candidates details, deadline change is optional.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>phone</td>\n<td>string</td>\n<td>Phone number</td>\n</tr>\n<tr>\n<td>username</td>\n<td>string</td>\n<td>Username of the candidate</td>\n</tr>\n<tr>\n<td>deadline</td>\n<td>ISO Date string</td>\n<td>Deadline date for the candidate/s</td>\n</tr>\n<tr>\n<td>timezoneForInvite</td>\n<td>string</td>\n<td>Timezone for the deadline</td>\n</tr>\n</tbody>\n</table>\n</div><p>*required field</p>\n","urlObject":{"path":["v1","candidates",":candidateId"],"host":["https://api-ga.myinterview.com/api"],"query":[],"variable":[]}},"response":[{"id":"cf128ba0-6b44-4126-b2f6-49fa5d87caef","name":"200","originalRequest":{"method":"PATCH","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"username\": \"john doe\",\n    \"phone\": \"+972521111111\",\n    \"deadline\": \"2021-10-20T08:42:59.537+00:00\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api-ga.myinterview.com/api/v1/candidates/:candidateId"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"431"},{"key":"ETag","value":"W/\"1af-IkmpL2PxjxYRbi4SK7CcVJPT7KE\""},{"key":"Date","value":"Mon, 07 Feb 2022 09:46:41 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 200,\n    \"errorCode\": 2,\n    \"statusReason\": \"Updated\",\n    \"callId\": \"Sw1XHkD8FxIK\",\n    \"data\": {\n        \"candidate\": {\n            \"candidate_id\": \"2plr4vfrwejx0yyk8yakea2g\",\n            \"username\": \"john doe\",\n            \"email\": \"xxx@xxx.xxx\",\n            \"phone\": \"+972521111111\",\n            \"job_id\": \"b0ut1082ptq9iq4cem79i0zf\",\n            \"company_id\": \"cv7bijkskrmd4g3zbrs9q2b6\",\n            \"inviteUrl\": \"https://start-staging.myinterview.com/2plr4vfrwejx0yyk8yakea2g\"\n        },\n        \"message\": \"Candidate updated successfully\"\n    },\n    \"time\": 1644227201256\n}"}],"_postman_id":"1f3267b4-7ec0-427e-9def-237270cf3f5c"},{"name":"Reminder email","id":"60ff344f-4021-4b7e-b0f8-e762be49321b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"reminders\": [\n        {\n            \"Content\": \"some content\",\n            \"reminderDate\": \"2021-10-20T08:42:59.537+00:00\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api-ga.myinterview.com/api/v1/candidates/:candidateId/reminders","description":"<p>Sends a reminder email, if reminderDate is not sent the email will be sent immediately.</p>\n","urlObject":{"path":["v1","candidates",":candidateId","reminders"],"host":["https://api-ga.myinterview.com/api"],"query":[],"variable":[]}},"response":[{"id":"8436a5f4-b955-4b46-800b-401b7570efab","name":"200","originalRequest":{"method":"POST","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"reminders\": [\n        {\n            \"Content\": \"some content\",\n            \"reminderDate\": \"2021-10-20T08:42:59.537+00:00\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api-ga.myinterview.com/api/v1/candidates/:candidateId/reminders"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"964"},{"key":"ETag","value":"W/\"3c4-7xY13bTsOOqFxlrKhfWRCtG4ib0\""},{"key":"Date","value":"Mon, 07 Feb 2022 09:46:56 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 200,\n    \"errorCode\": 2,\n    \"statusReason\": \"Updated\",\n    \"callId\": \"pqImuiKP8eYq\",\n    \"data\": {\n        \"candidate_id\": \"2plr4vfrwejx0yyk8yakea2g\",\n        \"company_id\": \"cv7bijkskrmd4g3zbrs9q2b6\",\n        \"deadline\": \"2021-10-20T08:42:59.537Z\",\n        \"phone\": \"+972521111111\",\n        \"username\": \"john doe\",\n        \"email\": \"xxx@xxx.xxx\",\n        \"link\": \"https://start-staging.myinterview.com/2plr4vfrwejx0yyk8yakea2g\",\n        \"inviteUrl\": \"https://start-staging.myinterview.com/2plr4vfrwejx0yyk8yakea2g\",\n        \"job_id\": \"b0ut1082ptq9iq4cem79i0zf\",\n        \"apiKey\": \"xrng4ikkspuuybry7zn7tbdn\",\n        \"status\": \"pending\",\n        \"reminders\": [\n            {\n                \"reminder_id\": \"3agmyj8y8d9gmizvvtyoq2gt\",\n                \"isSent\": false,\n                \"_id\": \"6200ea8de4a1382b28fb9f6a\",\n                \"Content\": \"some content\",\n                \"reminderDate\": \"2021-10-20T08:42:59.537Z\",\n                \"companyName\": \"myInterview\"\n            }\n        ],\n        \"updatedAt\": \"2022-02-07T09:46:41.105Z\",\n        \"createdAt\": \"2022-02-07T09:39:21.361Z\",\n    },\n    \"time\": 1644227216433\n}"},{"id":"9d8b4ba4-29b2-4c76-8aab-3c1e704020a6","name":"404","originalRequest":{"method":"POST","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"reminders\": [\n        {\n            \"Content\": \"some content\",\n            \"reminderDate\": \"2021-10-20T08:42:59.537+00:00\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api-ga.myinterview.com/api/v1/candidates/:candidateId/reminders"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"149"},{"key":"ETag","value":"W/\"95-tk6/Os9T/LlpGVThAcEncQV+kOk\""},{"key":"Date","value":"Mon, 07 Feb 2022 09:47:35 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusReason\": \"Not Found\",\n    \"errorMessage\": \"Candidate was not found\",\n    \"errorCode\": 10007,\n    \"statusCode\": 404,\n    \"callId\": \"9tgMIYMUD4qN\",\n    \"time\": 1644227255644\n}"}],"_postman_id":"60ff344f-4021-4b7e-b0f8-e762be49321b"},{"name":"Delete a candidate","id":"73505894-8790-4d3a-bce5-04a25b6b7585","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api-ga.myinterview.com/api/v1/candidates/:candidateId","description":"<p>Delete a candidate (invitation) by id.</p>\n<p>*required field</p>\n","urlObject":{"path":["v1","candidates",":candidateId"],"host":["https://api-ga.myinterview.com/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"73505894-8790-4d3a-bce5-04a25b6b7585"},{"name":"Delete a candidate bulk","id":"8e9541c0-ef48-4054-ab70-a15f94c2e8f3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"candidateIds\": [\n        \"id1\",\n        \"id2\",\n        \"id3\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api-ga.myinterview.com/api/v1/candidates/bulk","description":"<p>Delete a candidate bulk (invitations) by ids.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>candidateIds</td>\n<td>string[] array</td>\n<td>Ids of the candidates you want to delete</td>\n</tr>\n</tbody>\n</table>\n</div><p>*required field</p>\n","urlObject":{"path":["v1","candidates","bulk"],"host":["https://api-ga.myinterview.com/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"8e9541c0-ef48-4054-ab70-a15f94c2e8f3"}],"id":"f318ac5f-2037-4807-93c7-6c097935836e","description":"<p>The Candidate Model is designed to facilitate inviting a candidate for a job interview. It stores all necessary information for generating an invitation and must be linked to a pre-existing job. This information is used to invite the candidate and generate a personalized myInterview video interview link.</p>\n<p>Within the Candidate Model, there is a <strong>status field</strong> that indicates the current state of the invitation.</p>\n<blockquote>\n<p><strong>Note</strong>: The Candidate Model itself is not the video; the video refers to the actual video interview that can be played back.</p>\n</blockquote>\n<p>Upon the Candidate Model's status changing to \"completed,\" a <strong>video_id</strong> will be assigned to both the Candidate Model and the associated video. This identifier can be utilized to access the video interview for playback.</p>\n","_postman_id":"f318ac5f-2037-4807-93c7-6c097935836e"},{"name":"Videos","item":[{"name":"Get Video","id":"a86d80da-34d0-4e83-b0eb-fa60167ca65c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"}],"url":"https://api-ga.myinterview.com/api/v1/videos/:videoId/signed?ai=1&transcript=1","description":"<p>Get the video information including the video playable url and transcript and AI results.<br />(according to your subscription)</p>\n","urlObject":{"path":["v1","videos",":videoId","signed"],"host":["https://api-ga.myinterview.com/api"],"query":[{"key":"ai","value":"1"},{"key":"transcript","value":"1"}],"variable":[]}},"response":[{"id":"49d786f8-005b-49cd-8891-7262c34c147b","name":"200","originalRequest":{"method":"GET","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"}],"url":{"raw":"https://api-ga.myinterview.com/api/v1/videos/:videoId/signed?ai=1&transcript=1","host":["https://api-ga.myinterview.com/api"],"path":["v1","videos",":videoId","signed"],"query":[{"key":"ai","value":"1"},{"key":"transcript","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"3048"},{"key":"ETag","value":"W/\"be8-erPOH7mhx1GbyvkpCElhF53eB7Y\""},{"key":"Date","value":"Mon, 07 Feb 2022 10:08:19 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 200,\n    \"errorCode\": 0,\n    \"statusReason\": \"OK\",\n    \"callId\": \"HCQ3teYAaFBM\",\n    \"data\": {\n        \"webhook\": {\n            \"createdAt\": \"2022-01-19T10:00:00.757Z\"\n        },\n        \"time_viewed\": 0,\n        \"files\": [],\n        \"company_id\": \"cv7bijkskrmd4g3zbrs9q2b6\",\n        \"email\": \"sales@myinterview.com\",\n        \"username\": \"Stephanie\",\n        \"video_id\": \"1tsdpj3x4osy4l7hb8pp8co6\",\n        \"job_id\": \"hijzbe2xcon6amx1u2mgd7y6\",\n        \"apiKey\": \"xrng4ikkspuuybry7zn7tbdn\",\n        \"isFake\": true,\n        \"videos\": [\n            {\n                \"date\": \"2019-01-14T14:24:14.162Z\",\n                \"filename\": \"627b9dc0-bd9f-4ac1-9894-41508c8e0d40\",\n                \"videoLength\": 8,\n                \"transcript\": \"\",\n                \"question\": \"Introduce yourself\",\n                \"transcoded\": true,\n                \"completed\": true,\n                \"textTracks\": [],\n                \"sources\": {\n                    \"src\": \"https://video.myinterview.com/mp4/720p/627b9dc0-bd9f-4ac1-9894-41508c8e0d40.mp4?AWSAccessKeyId=AKIAVTISTZ4YCGEMJ3GI&Expires=1644232099&Signature=1asn7HfBVfLAMEf9Iux%2BJcgGFWQ%3D\"\n                },\n                \"thumbnail\": \"https://video.myinterview.com/mp4/720p/627b9dc0-bd9f-4ac1-9894-41508c8e0d40-00001.jpg\",\n                \"poster\": \"https://video.myinterview.com/mp4/720p/627b9dc0-bd9f-4ac1-9894-41508c8e0d40-00001.jpg\"\n            },\n            {\n                \"date\": \"2019-01-14T14:26:20.256Z\",\n                \"filename\": \"cb9cffff-1319-4c6c-a385-23fc32134359\",\n                \"videoLength\": 17,\n                \"transcript\": \"\",\n                \"question\": \"What is your greatest strength?\",\n                \"transcoded\": true,\n                \"completed\": true,\n                \"textTracks\": [],\n                \"sources\": {\n                    \"src\": \"https://video.myinterview.com/mp4/720p/cb9cffff-1319-4c6c-a385-23fc32134359.mp4?AWSAccessKeyId=AKIAVTISTZ4YCGEMJ3GI&Expires=1644232099&Signature=U92CXwdfX4WVRMtPK6fUdyLrJDs%3D\"\n                },\n                \"thumbnail\": \"https://video.myinterview.com/mp4/720p/cb9cffff-1319-4c6c-a385-23fc32134359-00001.jpg\",\n                \"poster\": \"https://video.myinterview.com/mp4/720p/cb9cffff-1319-4c6c-a385-23fc32134359-00001.jpg\"\n            },\n            {\n                \"_id\": \"61e7e120aa3bff001281ea5b\",\n                \"date\": \"2019-01-14T14:27:50.738Z\",\n                \"filename\": \"d9d8912a-7ba5-4ad0-b7ed-bddfde50aab4\",\n                \"videoLength\": 7,\n                \"transcript\": \"\",\n                \"question\": \"Why would you like to work with us? \",\n                \"transcoded\": true,\n                \"completed\": true,\n                \"textTracks\": [],\n                \"sources\": {\n                    \"src\": \"https://video.myinterview.com/mp4/720p/d9d8912a-7ba5-4ad0-b7ed-bddfde50aab4.mp4?AWSAccessKeyId=AKIAVTISTZ4YCGEMJ3GI&Expires=1644232099&Signature=Z0fFTVHEtlRi9xJXh3s5%2FseTz%2FI%3D\"\n                },\n                \"thumbnail\": \"https://video.myinterview.com/mp4/720p/d9d8912a-7ba5-4ad0-b7ed-bddfde50aab4-00001.jpg\",\n                \"poster\": \"https://video.myinterview.com/mp4/720p/d9d8912a-7ba5-4ad0-b7ed-bddfde50aab4-00001.jpg\"\n            }\n        ],\n        \"ratingsArr\": [\n            {\n                \"reviewerId\": \"6410737b-1872-4cf8-adcf-b36c098d335f\",\n                \"value\": 4,\n                \"ratingTime\": \"2022-01-19T10:00:00.757Z\"\n            },\n            {\n                \"reviewerId\": \"7eacebf1-01a1-4f04-85f0-6ed48653d9c1\",\n                \"value\": 5,\n                \"ratingTime\": \"2022-01-19T10:00:00.757Z\"\n            }\n        ],\n        \"commentsArr\": [\n            {\n                \"reviewerId\": \"7eacebf1-01a1-4f04-85f0-6ed48653d9c1\",\n                \"comment\": \"Great candidate, I think they will be the perfect fit for our team.\",\n                \"reviewer\": \"Sarah Smith\",\n                \"commentTime\": \"2018-01-13T12:54:55.946Z\"\n            },\n            {\n                \"reviewerId\": \"6410737b-1872-4cf8-adcf-b36c098d335f\",\n                \"comment\": \"This is the type of enthusiasm we need.\",\n                \"reviewer\": \"Jim Chu\",\n                \"commentTime\": \"2018-01-13T15:54:55.946Z\"\n            }\n        ],\n        \"updatedAt\": \"2020-01-21T13:44:10.805Z\",\n        \"createdAt\": \"2022-01-19T10:00:00.757Z\",\n        \"notes\": [],\n        \"likes\": []\n    },\n    \"time\": 1644228499195\n}"},{"id":"55316262-76e9-4ccc-88da-dd4e5bab4a35","name":"404","originalRequest":{"method":"GET","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"}],"url":{"raw":"https://api-ga.myinterview.com/api/v1/videos/:videoId/signed?ai=1&transcript=1","host":["https://api-ga.myinterview.com/api"],"path":["v1","videos",":videoId","signed"],"query":[{"key":"ai","value":"1"},{"key":"transcript","value":"1"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"145"},{"key":"ETag","value":"W/\"91-eNYhltvzDAEUCnUwu5CDADKXZqk\""},{"key":"Date","value":"Mon, 07 Feb 2022 10:09:02 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusReason\": \"Not Found\",\n    \"errorMessage\": \"Video was not found\",\n    \"errorCode\": 10007,\n    \"statusCode\": 404,\n    \"callId\": \"tcnfYXEfYvBz\",\n    \"time\": 1644228542987\n}"}],"_postman_id":"a86d80da-34d0-4e83-b0eb-fa60167ca65c"},{"name":"Get Video interview recording","id":"73525c98-ba19-4c0d-bfc4-f26d75750b7c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"}],"url":"https://api-ga.myinterview.com/api/v1/videos/:videoId/share","description":"<p>Get the candidate/video recording share url. With this video url you can watch and review the application on myinterview share page without login.  </p>\n<p><img src=\"https://app-service-upload.s3.amazonaws.com/uploads/sharelinkexemple.gif\" alt=\"ShareLink\" /></p>\n","urlObject":{"path":["v1","videos",":videoId","share"],"host":["https://api-ga.myinterview.com/api"],"query":[],"variable":[]}},"response":[{"id":"2848219e-1f4a-42e5-aac3-12b4060c2a0d","name":"200","originalRequest":{"method":"GET","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"}],"url":"https://api-ga.myinterview.com/api/v1/videos/:videoId/share"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"189"},{"key":"ETag","value":"W/\"bd-VwJvaI+Z8DY3XBHAJQJMKk9ryUs\""},{"key":"Date","value":"Mon, 07 Feb 2022 10:09:40 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 200,\n    \"errorCode\": 0,\n    \"statusReason\": \"OK\",\n    \"callId\": \"DvdKUWfgzF1G\",\n    \"data\": {\n        \"shareLink\": \"https://share-staging.myinterview.com/video/F48WxhwPwV08q1Oa4GrRWwIs\"\n    },\n    \"time\": 1644228580182\n}"},{"id":"b676bd10-04fd-4937-8ede-3c822f72de22","name":"404","originalRequest":{"method":"GET","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"}],"url":"https://api-ga.myinterview.com/api/v1/videos/:videoId/share"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"145"},{"key":"ETag","value":"W/\"91-CFSXFdR1XMgS9oKeNwn6v+TXUeE\""},{"key":"Date","value":"Mon, 07 Feb 2022 10:09:18 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusReason\": \"Not Found\",\n    \"errorMessage\": \"Video was not found\",\n    \"errorCode\": 10007,\n    \"statusCode\": 404,\n    \"callId\": \"4kxWgCWj0qOT\",\n    \"time\": 1644228558685\n}"}],"_postman_id":"73525c98-ba19-4c0d-bfc4-f26d75750b7c"},{"name":"Get all Videos","id":"650501d3-e2dc-4d7d-bf24-d3b962542f3f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"}],"url":"https://api-ga.myinterview.com/api/v1/videos?ai=1&transcript=1&username=john doe&email=xxx@xxx.com","description":"<p>Get all videos, including the video playable url and transcript and AI results.<br />(according to your subscription)</p>\n","urlObject":{"path":["v1","videos"],"host":["https://api-ga.myinterview.com/api"],"query":[{"key":"ai","value":"1"},{"key":"transcript","value":"1"},{"key":"username","value":"john doe"},{"key":"email","value":"xxx@xxx.com"}],"variable":[]}},"response":[{"id":"673fa0c7-8687-4dfd-b03b-e2c2daf6b1ea","name":"200","originalRequest":{"method":"GET","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"}],"url":{"raw":"https://api-ga.myinterview.com/api/v1/videos?ai=1&transcript=1&username=john doe&email=xxx@xxx.com","host":["https://api-ga.myinterview.com/api"],"path":["v1","videos"],"query":[{"key":"ai","value":"1"},{"key":"transcript","value":"1"},{"key":"username","value":"john doe"},{"key":"email","value":"xxx@xxx.com"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"107"},{"key":"ETag","value":"W/\"6b-2re4eSYBPUGV8rFfI+6I0GL6joU\""},{"key":"Date","value":"Mon, 07 Feb 2022 10:10:00 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 200,\n    \"errorCode\": 0,\n    \"statusReason\": \"OK\",\n    \"callId\": \"P1JAQHoDhS6X\",\n    \"data\": [],\n    \"time\": 1644228600850\n}"}],"_postman_id":"650501d3-e2dc-4d7d-bf24-d3b962542f3f"},{"name":"Job's Videos","id":"089b8ebc-95fb-432d-984e-5b7eb922e71e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"}],"url":"https://api-ga.myinterview.com/api/v1/videos/jobs/:jobId","description":"<p>Get the videos of the candidates who applied to a job.</p>\n","urlObject":{"path":["v1","videos","jobs",":jobId"],"host":["https://api-ga.myinterview.com/api"],"query":[],"variable":[]}},"response":[{"id":"04fcb5f8-adc2-4d44-ba4b-730db1c7d973","name":"200","originalRequest":{"method":"GET","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"}],"url":"https://api-ga.myinterview.com/api/v1/videos/jobs/:jobId"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"3377"},{"key":"ETag","value":"W/\"d31-jgbkQ/qpK+NuYk6hNkmvN/zsPCQ\""},{"key":"Date","value":"Mon, 07 Feb 2022 10:10:12 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 200,\n    \"errorCode\": 0,\n    \"statusReason\": \"OK\",\n    \"callId\": \"WiBFBhQlzQO8\",\n    \"data\": [\n        {\n            \"video_id\": \"7cb42d26-cf8a-4e1f-8f25-c61ef0b9a18f\",\n            \"apiKey\": \"xrng4ikkspuuybry7zn7tbdn\",\n            \"candidate_id\": \"5puv2d21hipec5tv5p9lajy2\",\n            \"candidate_location\": \"Netanya, Israel\",\n            \"commentsArr\": [],\n            \"company_id\": \"cv7bijkskrmd4g3zbrs9q2b6\",\n            \"createdAt\": \"2022-01-19T12:55:44.891Z\",\n            \"cvUrl\": null,\n            \"email\": \"dvdsellam+1@gmail.com\",\n            \"ip\": \"199.203.247.18\",\n            \"job_id\": \"b0ut1082ptq9iq4cem79i0zf\",\n            \"language\": \"en\",\n            \"likes\": [],\n            \"notes\": [],\n            \"platform\": {\n                \"description\": \"Chrome 97.0.4692.71 on OS X 10.15.7 64-bit\",\n                \"layout\": \"Blink\",\n                \"manufacturer\": null,\n                \"name\": \"Chrome\",\n                \"prerelease\": null,\n                \"product\": null,\n                \"ua\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.71 Safari/537.36\",\n                \"version\": \"97.0.4692.71\",\n                \"os\": {\n                    \"architecture\": 64,\n                    \"family\": \"OS X\",\n                    \"version\": \"10.15.7\"\n                },\n                \"transcoded\": false\n            },\n            \"ratingsArr\": [],\n            \"referrer\": \"\",\n            \"status\": \"candidate\",\n            \"time_viewed\": 0,\n            \"updatedAt\": \"2022-01-19T13:37:59.903Z\",\n            \"username\": \"candidate one\",\n            \"videos\": [\n                {\n                    \"filename\": \"f4f28ca5-96ae-452b-9086-7a1ee23e3586\",\n                    \"question\": \"Please introduce yourself\",\n                    \"date\": \"2022-01-19T12:55:32.245Z\",\n                    \"transcoded\": true,\n                    \"completed\": true,\n                    \"videoLength\": 4,\n                    \"textTracks\": [],\n                    \"sources\": {\n                        \"src\": \"https://video.myinterview.com/mp4/720p/f4f28ca5-96ae-452b-9086-7a1ee23e3586.mp4?AWSAccessKeyId=AKIAVTISTZ4YCGEMJ3GI&Expires=1644232211&Signature=0j3GYr8PO25mxfZn53HbBIkp808%3D\"\n                    },\n                    \"thumbnail\": \"https://video.myinterview.com/mp4/720p/f4f28ca5-96ae-452b-9086-7a1ee23e3586-00001.jpg\",\n                    \"poster\": \"https://video.myinterview.com/mp4/720p/f4f28ca5-96ae-452b-9086-7a1ee23e3586-00001.jpg\"\n                }\n            ],\n            \"location\": \"US\",\n            \"personalInfo\": {},\n            \"unlockedAt\": \"1970-01-01T00:00:00.000Z\"\n        },\n        {\n            \"video_id\": \"30c61f35-2b9a-43a5-a728-b1e87efd0c2e\",\n            \"apiKey\": \"xrng4ikkspuuybry7zn7tbdn\",\n            \"candidate_id\": \"6m84go83oylb3q0etyzuyeaf\",\n            \"candidate_location\": \"Netanya, Israel\",\n            \"commentsArr\": [],\n            \"company_id\": \"cv7bijkskrmd4g3zbrs9q2b6\",\n            \"createdAt\": \"2022-01-19T12:57:17.484Z\",\n            \"cvUrl\": null,\n            \"email\": \"dvdsellam+2@gmail.com\",\n            \"ip\": \"199.203.247.18\",\n            \"job_id\": \"b0ut1082ptq9iq4cem79i0zf\",\n            \"language\": \"en\",\n            \"likes\": [],\n            \"notes\": [],\n            \"platform\": {\n                \"description\": \"Chrome 97.0.4692.71 on OS X 10.15.7 64-bit\",\n                \"layout\": \"Blink\",\n                \"manufacturer\": null,\n                \"name\": \"Chrome\",\n                \"prerelease\": null,\n                \"product\": null,\n                \"ua\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.71 Safari/537.36\",\n                \"version\": \"97.0.4692.71\",\n                \"os\": {\n                    \"architecture\": 64,\n                    \"family\": \"OS X\",\n                    \"version\": \"10.15.7\"\n                },\n                \"transcoded\": false\n            },\n            \"ratingsArr\": [],\n            \"referrer\": \"\",\n            \"status\": \"candidate\",\n            \"time_viewed\": 0,\n            \"updatedAt\": \"2022-01-19T12:56:42.270Z\",\n            \"username\": \"candidate  10 sec\",\n            \"videos\": [\n                {\n                    \"filename\": \"4a04f07e-f626-4400-bd78-e9a6b4707398\",\n                    \"question\": \"Please introduce yourself\",\n                    \"date\": \"2022-01-19T12:56:41.820Z\",\n                    \"transcoded\": true,\n                    \"completed\": true,\n                    \"videoLength\": 30,\n                    \"textTracks\": [],\n                    \"sources\": {\n                        \"src\": \"https://video.myinterview.com/mp4/720p/4a04f07e-f626-4400-bd78-e9a6b4707398.mp4?AWSAccessKeyId=AKIAVTISTZ4YCGEMJ3GI&Expires=1644232211&Signature=Z8ySLimBYtwSk75kq2u0HHCHlbI%3D\"\n                    },\n                    \"thumbnail\": \"https://video.myinterview.com/mp4/720p/4a04f07e-f626-4400-bd78-e9a6b4707398-00001.jpg\",\n                    \"poster\": \"https://video.myinterview.com/mp4/720p/4a04f07e-f626-4400-bd78-e9a6b4707398-00001.jpg\"\n                }\n            ]\n        }\n    ],\n    \"time\": 1644228612118\n}"}],"_postman_id":"089b8ebc-95fb-432d-984e-5b7eb922e71e"},{"name":"Delete Video by Id","id":"117d25e2-f8f4-4783-9d7a-742e48b57cc9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"}],"url":"https://api-ga.myinterview.com/api/v1/videos/:videoId","description":"<p>Delete a Video by Id</p>\n","urlObject":{"path":["v1","videos",":videoId"],"host":["https://api-ga.myinterview.com/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"117d25e2-f8f4-4783-9d7a-742e48b57cc9"},{"name":"Delete Video by Id Bulk","id":"b7f349bc-7417-4a2a-9bdf-efa0bda33fc5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"videoIds\":  [\n        \"id1\",\n        \"id2\",\n        \"id3\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api-ga.myinterview.com/api/v1/videos/bulk","description":"<p>Delete a video bulk by ids.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>videoIds</td>\n<td>string[] array</td>\n<td>Ids of the videos you want to delete</td>\n</tr>\n</tbody>\n</table>\n</div><p>*required field</p>\n","urlObject":{"path":["v1","videos","bulk"],"host":["https://api-ga.myinterview.com/api"],"query":[],"variable":[]}},"response":[],"_postman_id":"b7f349bc-7417-4a2a-9bdf-efa0bda33fc5"}],"id":"5d186497-626b-400b-87b3-67abdef12929","description":"<p>The Video Model represents the final stage of the typical workflow when a candidate has completed their video recording.</p>\n<blockquote>\n<p>Note </p>\n</blockquote>\n<p>There are two options to view the video:</p>\n<ol>\n<li>Use the API to obtain the video in JSON format, which includes signed URLs for all video questions.</li>\n<li>Obtain a sleek share link that can be opened anywhere by calling the <code>get video recording</code> API endpoint.</li>\n</ol>\n","_postman_id":"5d186497-626b-400b-87b3-67abdef12929"},{"name":"Companies","item":[{"name":"Company info","id":"76f9b387-39b6-43df-a5a2-f10a8bb9f4e3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"}],"url":"https://api-ga.myinterview.com/api/v1/company","urlObject":{"path":["v1","company"],"host":["https://api-ga.myinterview.com/api"],"query":[],"variable":[]}},"response":[{"id":"4ce4d460-ae1a-4278-bd3a-44887aff2199","name":"200","originalRequest":{"method":"GET","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"}],"url":"https://api-ga.myinterview.com/api/v1/company"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"550"},{"key":"ETag","value":"W/\"226-8/HX+IQsGqEkDuNB3eycrWBzMig\""},{"key":"Date","value":"Mon, 07 Feb 2022 09:27:17 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 200,\n    \"errorCode\": 0,\n    \"statusReason\": \"OK\",\n    \"callId\": \"J8udwC5vUw98\",\n    \"data\": {\n        \"country_code\": \"IL\",\n        \"region\": \"eu\",\n        \"language\": \"en\",\n        \"applicationService_domain\": \"https://start.myinterview.com/\",\n        \"apiKey\": {\n            \"api_key\": \"xrng4ikkspuuybry7zn7tbdn\"\n        },\n        \"name\": \"myInterview\",\n        \"logo\": \"https://logo.clearbit.com/myinterview.com\",\n        \"company_id\": \"cv7bijkskrmd4g3zbrs9q2b6\",\n        \"updatedAt\": \"2022-02-07T00:05:11.886Z\",\n        \"createdAt\": \"2022-01-19T10:00:00.228Z\",\n        \"branding\": {\n            \"overlay\": \"\",\n            \"backgroundImage\": \"\"\n        }\n    },\n    \"time\": 1644226037481\n}"}],"_postman_id":"76f9b387-39b6-43df-a5a2-f10a8bb9f4e3"},{"name":"Company templates","id":"6c0cd7b9-3eb5-4a8b-a909-732799625901","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"}],"url":"https://api-ga.myinterview.com/api/v1/templates","description":"<p>Returns an array of job questionnaire templates.</p>\n","urlObject":{"path":["v1","templates"],"host":["https://api-ga.myinterview.com/api"],"query":[],"variable":[]}},"response":[{"id":"da701aaa-b775-4f43-a585-d7997c7c1392","name":"200","originalRequest":{"method":"GET","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"}],"url":"https://api-ga.myinterview.com/api/v1/templates"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"7477"},{"key":"ETag","value":"W/\"1d35-fj4D2vZml2reoidLwsUSZ3vpDdo\""},{"key":"Date","value":"Mon, 07 Feb 2022 09:27:35 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 200,\n    \"errorCode\": 0,\n    \"statusReason\": \"OK\",\n    \"callId\": \"k7QcOqHHijM9\",\n    \"data\": [\n        {\n            \"hideQuestions\": true,\n            \"id\": \"b2e4b0f4-4a80-4b71-9d02-e7941d9a2545\",\n            \"name\": \"Graduate Interview\",\n            \"questions\": [\n                {\n                    \"_id\": \"61ee69aa4aff7b0011e89928\",\n                    \"question\": \"Please walk us through your resume\",\n                    \"partDuration\": 120,\n                    \"numOfRetakes\": 1,\n                    \"thinkingTime\": 30\n                },\n                {\n                    \"_id\": \"61ee69aa4aff7b0011e89929\",\n                    \"question\": \"Why would you like to join us?\",\n                    \"partDuration\": 120,\n                    \"numOfRetakes\": 1,\n                    \"thinkingTime\": 30\n                },\n                {\n                    \"_id\": \"61ee69aa4aff7b0011e8992a\",\n                    \"question\": \"What has been your proudest moment?\",\n                    \"partDuration\": 120,\n                    \"numOfRetakes\": 1,\n                    \"thinkingTime\": 30\n                },\n                {\n                    \"_id\": \"61ee69aa4aff7b0011e8992b\",\n                    \"question\": \"Who is your role model and why do you respect them?\",\n                    \"partDuration\": 120,\n                    \"numOfRetakes\": 1,\n                    \"thinkingTime\": 30\n                }\n            ]\n        },\n        {\n            \"hideQuestions\": true,\n            \"id\": \"4b6497e7-39ed-47b8-919b-63f818f590da\",\n            \"name\": \"Customer Services Interview\",\n            \"questions\": [\n                {\n                    \"_id\": \"61ee69aa4aff7b0011e8992c\",\n                    \"question\": \"Please walk us through your resume\",\n                    \"partDuration\": 120,\n                    \"numOfRetakes\": 1,\n                    \"thinkingTime\": 30\n                },\n                {\n                    \"_id\": \"61ee69aa4aff7b0011e8992d\",\n                    \"question\": \"You are encountered by an angry customer who is refusing to pay their bill. How do you react?\",\n                    \"partDuration\": 120,\n                    \"numOfRetakes\": 1,\n                    \"thinkingTime\": 30\n                },\n                {\n                    \"_id\": \"61ee69aa4aff7b0011e8992e\",\n                    \"question\": \"What does a happy customer look like to you?\",\n                    \"partDuration\": 120,\n                    \"numOfRetakes\": 1,\n                    \"thinkingTime\": 30\n                },\n                {\n                    \"_id\": \"61ee69aa4aff7b0011e8992f\",\n                    \"question\": \"What do you think your day will look like with us?\",\n                    \"partDuration\": 120,\n                    \"numOfRetakes\": 1,\n                    \"thinkingTime\": 30\n                }\n            ]\n        },\n        {\n            \"hideQuestions\": true,\n            \"id\": \"49f4a0f5-5e1b-44d4-902e-13974a8365f2\",\n            \"name\": \"Management Interview\",\n            \"questions\": [\n                {\n                    \"_id\": \"61ee69aa4aff7b0011e89930\",\n                    \"question\": \"Please walk us through your resume\",\n                    \"partDuration\": 120,\n                    \"numOfRetakes\": 1,\n                    \"thinkingTime\": 30\n                },\n                {\n                    \"_id\": \"61ee69aa4aff7b0011e89931\",\n                    \"question\": \"A member of your team is underperforming, what are your next steps?\",\n                    \"partDuration\": 120,\n                    \"numOfRetakes\": 1,\n                    \"thinkingTime\": 30\n                },\n                {\n                    \"_id\": \"61ee69aa4aff7b0011e89932\",\n                    \"question\": \"What can you bring to this team?\",\n                    \"partDuration\": 120,\n                    \"numOfRetakes\": 1,\n                    \"thinkingTime\": 30\n                },\n                {\n                    \"_id\": \"61ee69aa4aff7b0011e89933\",\n                    \"question\": \"What has been your proudest moment\",\n                    \"partDuration\": 120,\n                    \"numOfRetakes\": 1,\n                    \"thinkingTime\": 30\n                }\n            ]\n        },\n        {\n            \"hideQuestions\": true,\n            \"id\": \"f825dd80-6f96-488d-a71a-a7c70eb3b545\",\n            \"name\": \"Sales Interview\",\n            \"questions\": [\n                {\n                    \"_id\": \"61ee69aa4aff7b0011e89934\",\n                    \"question\": \"Please walk us through your resume\",\n                    \"partDuration\": 120,\n                    \"numOfRetakes\": 1,\n                    \"thinkingTime\": 30\n                },\n                {\n                    \"_id\": \"61ee69aa4aff7b0011e89935\",\n                    \"question\": \"What is the last thing you sold and why should I buy it?\",\n                    \"partDuration\": 120,\n                    \"numOfRetakes\": 1,\n                    \"thinkingTime\": 30\n                },\n                {\n                    \"_id\": \"61ee69aa4aff7b0011e89936\",\n                    \"question\": \"What do you want to achieve in this role?\",\n                    \"partDuration\": 120,\n                    \"numOfRetakes\": 1,\n                    \"thinkingTime\": 30\n                },\n                {\n                    \"_id\": \"61ee69aa4aff7b0011e89937\",\n                    \"question\": \"What has been your proudest moment?\",\n                    \"partDuration\": 120,\n                    \"numOfRetakes\": 1,\n                    \"thinkingTime\": 30\n                }\n            ]\n        },\n        {\n            \"hideQuestions\": true,\n            \"id\": \"82f052b4-7a9b-4656-89bf-3268268c6bbf\",\n            \"name\": \"Administration Interview\",\n            \"questions\": [\n                {\n                    \"_id\": \"61ee69aa4aff7b0011e89938\",\n                    \"question\": \"Please walk us through your resume\",\n                    \"partDuration\": 120,\n                    \"numOfRetakes\": 1,\n                    \"thinkingTime\": 30\n                },\n                {\n                    \"_id\": \"61ee69aa4aff7b0011e89939\",\n                    \"question\": \"What does a job well done mean to you?\",\n                    \"partDuration\": 120,\n                    \"numOfRetakes\": 1,\n                    \"thinkingTime\": 30\n                },\n                {\n                    \"_id\": \"61ee69aa4aff7b0011e8993a\",\n                    \"question\": \"What has been your proudest moment?\",\n                    \"partDuration\": 120,\n                    \"numOfRetakes\": 1,\n                    \"thinkingTime\": 30\n                },\n                {\n                    \"_id\": \"61ee69aa4aff7b0011e8993b\",\n                    \"question\": \"What would you like to achieve in this role?\",\n                    \"partDuration\": 120,\n                    \"numOfRetakes\": 1,\n                    \"thinkingTime\": 30\n                }\n            ]\n        },\n        {\n            \"hideQuestions\": true,\n            \"id\": \"cd7a3ad7-2f36-4638-9664-ab0ca63c8fa0\",\n            \"name\": \"Technical Interview\",\n            \"questions\": [\n                {\n                    \"_id\": \"61ee69aa4aff7b0011e8993c\",\n                    \"question\": \"Please walk us through your resume\",\n                    \"partDuration\": 120,\n                    \"numOfRetakes\": 1,\n                    \"thinkingTime\": 30\n                },\n                {\n                    \"_id\": \"61ee69aa4aff7b0011e8993d\",\n                    \"question\": \"What is the greatest challenge you have overcome at work?\",\n                    \"partDuration\": 120,\n                    \"numOfRetakes\": 1,\n                    \"thinkingTime\": 30\n                },\n                {\n                    \"_id\": \"61ee69aa4aff7b0011e8993e\",\n                    \"question\": \"What is the most exciting part of your job?\",\n                    \"partDuration\": 120,\n                    \"numOfRetakes\": 1,\n                    \"thinkingTime\": 30\n                },\n                {\n                    \"_id\": \"61ee69aa4aff7b0011e8993f\",\n                    \"question\": \"How do you usually plan out your tasks at work?\",\n                    \"partDuration\": 120,\n                    \"numOfRetakes\": 1,\n                    \"thinkingTime\": 30\n                }\n            ]\n        },\n        {\n            \"hideQuestions\": true,\n            \"id\": \"edee7f2c-5b96-4233-967e-a81448a19009\",\n            \"name\": \"Health Interview\",\n            \"questions\": [\n                {\n                    \"_id\": \"61ee69aa4aff7b0011e89940\",\n                    \"question\": \"Please walk us through your resume\",\n                    \"partDuration\": 120,\n                    \"numOfRetakes\": 1,\n                    \"thinkingTime\": 30\n                },\n                {\n                    \"_id\": \"61ee69aa4aff7b0011e89941\",\n                    \"question\": \"What was the most challenging part of your previous role, how did you grow from it?\",\n                    \"partDuration\": 120,\n                    \"numOfRetakes\": 1,\n                    \"thinkingTime\": 30\n                },\n                {\n                    \"_id\": \"61ee69aa4aff7b0011e89942\",\n                    \"question\": \"What does 'bedside manner' mean to you?\",\n                    \"partDuration\": 120,\n                    \"numOfRetakes\": 1,\n                    \"thinkingTime\": 30\n                },\n                {\n                    \"_id\": \"61ee69aa4aff7b0011e89943\",\n                    \"question\": \"What is one subject you wish you knew more about and why?\",\n                    \"partDuration\": 120,\n                    \"numOfRetakes\": 1,\n                    \"thinkingTime\": 30\n                }\n            ]\n        },\n        {\n            \"hideQuestions\": true,\n            \"id\": \"ba84a3eb-a1b5-4841-9055-4fae47ec11a8\",\n            \"name\": \"Legal Interview\",\n            \"questions\": [\n                {\n                    \"_id\": \"61ee69aa4aff7b0011e89944\",\n                    \"question\": \"Please walk us through your resume\",\n                    \"partDuration\": 120,\n                    \"numOfRetakes\": 1,\n                    \"thinkingTime\": 30\n                },\n                {\n                    \"_id\": \"61ee69aa4aff7b0011e89945\",\n                    \"question\": \"How do you manage your day?\",\n                    \"partDuration\": 120,\n                    \"numOfRetakes\": 1,\n                    \"thinkingTime\": 30\n                },\n                {\n                    \"_id\": \"61ee69aa4aff7b0011e89946\",\n                    \"question\": \"What decisions do you find difficult to make?\",\n                    \"partDuration\": 120,\n                    \"numOfRetakes\": 1,\n                    \"thinkingTime\": 30\n                },\n                {\n                    \"_id\": \"61ee69aa4aff7b0011e89947\",\n                    \"question\": \"What sort of response would we get from your referees about your professional as well as social manner?\",\n                    \"partDuration\": 120,\n                    \"numOfRetakes\": 1,\n                    \"thinkingTime\": 30\n                }\n            ]\n        },\n        {\n            \"hideQuestions\": true,\n            \"id\": \"a8f4f717-07b3-4367-a3a9-ffd68b2ccf8f\",\n            \"name\": \"Accountancy Interview\",\n            \"questions\": [\n                {\n                    \"_id\": \"61ee69aa4aff7b0011e89948\",\n                    \"question\": \"Please walk us through your resume\",\n                    \"partDuration\": 120,\n                    \"numOfRetakes\": 1,\n                    \"thinkingTime\": 30\n                },\n                {\n                    \"_id\": \"61ee69aa4aff7b0011e89949\",\n                    \"question\": \"Describe a time when you helped to reduce costs at a previous accounting job.\",\n                    \"partDuration\": 120,\n                    \"numOfRetakes\": 1,\n                    \"thinkingTime\": 30\n                },\n                {\n                    \"_id\": \"61ee69aa4aff7b0011e8994a\",\n                    \"question\": \"You spot an error in your ledger after it has been submitted to our largest client. What do you do next?\",\n                    \"partDuration\": 120,\n                    \"numOfRetakes\": 1,\n                    \"thinkingTime\": 30\n                },\n                {\n                    \"_id\": \"61ee69aa4aff7b0011e8994b\",\n                    \"question\": \"What would you like a achieve during this role?\",\n                    \"partDuration\": 120,\n                    \"numOfRetakes\": 1,\n                    \"thinkingTime\": 30\n                }\n            ]\n        },\n        {\n            \"hideQuestions\": true,\n            \"id\": \"862e9f06-917c-4b33-8b75-99fc8ec315a4\",\n            \"name\": \"Getting to know you Interview\",\n            \"questions\": [\n                {\n                    \"_id\": \"61ee69aa4aff7b0011e8994c\",\n                    \"question\": \"What has been your greatest achievement and why?\",\n                    \"partDuration\": 120,\n                    \"numOfRetakes\": 1,\n                    \"thinkingTime\": 30\n                },\n                {\n                    \"_id\": \"61ee69aa4aff7b0011e8994d\",\n                    \"question\": \"Is there a time to lie? Justify your position\",\n                    \"partDuration\": 120,\n                    \"numOfRetakes\": 1,\n                    \"thinkingTime\": 30\n                },\n                {\n                    \"_id\": \"61ee69aa4aff7b0011e8994e\",\n                    \"question\": \"If you didn't have to work, what would you do?\",\n                    \"partDuration\": 120,\n                    \"numOfRetakes\": 1,\n                    \"thinkingTime\": 30\n                },\n                {\n                    \"_id\": \"61ee69aa4aff7b0011e8994f\",\n                    \"question\": \"What is your greatest weakness and how do you compensate for it?\",\n                    \"partDuration\": 120,\n                    \"numOfRetakes\": 1,\n                    \"thinkingTime\": 30\n                }\n            ]\n        },\n        {\n            \"introVideo\": \"\",\n            \"id\": \"fb715265-4dff-4c4a-b62c-3c47725ca182\",\n            \"name\": \"Test Comeet\",\n            \"hideQuestions\": true,\n            \"questions\": [\n                {\n                    \"question\": \"Question 1\",\n                    \"description\": \"\",\n                    \"partDuration\": 45,\n                    \"numOfRetakes\": 3,\n                    \"thinkingTime\": 30\n                }\n            ]\n        }\n    ],\n    \"time\": 1644226055629\n}"}],"_postman_id":"6c0cd7b9-3eb5-4a8b-a909-732799625901"},{"name":"Create template","id":"8f42ab70-76e2-43fd-b545-60be78b0bc29","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"hideQuestions\": true,\n    \"name\": \"template name\",\n    \"questions\": [\n        {\n            \"numOfRetakes\": 2,\n            \"partDuration\": 60,\n            \"question\": \"The question you are asking the candidate\",\n            \"videoQuestion\": \"video url\",\n            \"description\": \"some question description\"\n        }\n    ],\n    \"introVideo\": \"video url\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api-ga.myinterview.com/api/v1/templates","description":"<p>Create job questionnaire templates. These questions will be displayed to the candidates when they apply during the video recording session.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>hideQuestions</td>\n<td>boolean</td>\n<td>questions will not be displayed upfront</td>\n</tr>\n<tr>\n<td>*name</td>\n<td>string</td>\n<td>Name of the template</td>\n</tr>\n<tr>\n<td>introVideo</td>\n<td>string</td>\n<td>Url of the introduction video on the application page</td>\n</tr>\n<tr>\n<td>*questions</td>\n<td>Array of job questions</td>\n<td>Array of job questions objects</td>\n</tr>\n</tbody>\n</table>\n</div><p> *required field</p>\n","urlObject":{"path":["v1","templates"],"host":["https://api-ga.myinterview.com/api"],"query":[],"variable":[]}},"response":[{"id":"5bea1c56-413c-44b0-8462-66e102bd897b","name":"200","originalRequest":{"method":"POST","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"hideQuestions\": true,\n    \"name\": \"template name\",\n    \"questions\": [\n        {\n            \"numOfRetakes\": 2,\n            \"partDuration\": 60,\n            \"question\": \"The question you are asking the candidate\",\n            \"videoQuestion\": \"video url\",\n            \"description\": \"some question description\"\n        }\n    ],\n    \"introVideo\": \"video url\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api-ga.myinterview.com/api/v1/templates"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"437"},{"key":"ETag","value":"W/\"1b5-eP8V/Bhdm88sxfgttGfrccV+gkI\""},{"key":"Date","value":"Mon, 07 Feb 2022 09:36:14 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 200,\n    \"errorCode\": 0,\n    \"statusReason\": \"OK\",\n    \"callId\": \"AHoWMfzmTNI9\",\n    \"data\": {\n        \"message\": \"The template has been added.\",\n        \"template\": {\n            \"hideQuestions\": true,\n            \"name\": \"template name\",\n            \"questions\": [\n                {\n                    \"numOfRetakes\": 2,\n                    \"partDuration\": 60,\n                    \"question\": \"The question you are asking the candidate\",\n                    \"videoQuestion\": \"video url\",\n                    \"description\": \"some question description\"\n                }\n            ],\n            \"introVideo\": \"video url\",\n            \"id\": \"vmcpyv1rfmm1fw1j53908oot\"\n        }\n    },\n    \"time\": 1644226574395\n}"},{"id":"3920f9e2-1142-4efc-a34b-b5b5b6e5bb29","name":"400","originalRequest":{"method":"POST","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"hideQuestions\": true,\n\n    \"questions\": [\n        {\n            \"numOfRetakes\": 2,\n            \"partDuration\": 60,\n            \"question\": \"The question you are asking the candidate\",\n            \"videoQuestion\": \"video url\",\n            \"description\": \"some question description\"\n        }\n    ],\n    \"introVideo\": \"video url\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api-ga.myinterview.com/api/v1/templates"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"186"},{"key":"ETag","value":"W/\"ba-pYaeam8LSk+VXScd7qt3u7VjySY\""},{"key":"Date","value":"Mon, 07 Feb 2022 09:35:59 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusReason\": \"Validation\",\n    \"errorMessage\": [\n        {\n            \"msg\": \"name is required\",\n            \"param\": \"name\",\n            \"location\": \"body\"\n        }\n    ],\n    \"errorCode\": 10008,\n    \"statusCode\": 400,\n    \"callId\": \"K95hWwGHZ9qb\",\n    \"time\": 1644226559571\n}"}],"_postman_id":"8f42ab70-76e2-43fd-b545-60be78b0bc29"},{"name":"Get template","id":"2500463e-916d-4450-b56f-e57fa58975e6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"}],"url":"https://api-ga.myinterview.com/api/v1/templates/:template_id","urlObject":{"path":["v1","templates",":template_id"],"host":["https://api-ga.myinterview.com/api"],"query":[],"variable":[]}},"response":[{"id":"706a1989-390c-4cee-9d82-cf9972fcb0cc","name":"200","originalRequest":{"method":"GET","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"}],"url":"https://api-ga.myinterview.com/api/v1/templates/:template_id"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"363"},{"key":"ETag","value":"W/\"16b-RDSPs4eNBHdxgw70Ab9gGEnz2g0\""},{"key":"Date","value":"Mon, 07 Feb 2022 09:37:26 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 200,\n    \"errorCode\": 0,\n    \"statusReason\": \"OK\",\n    \"callId\": \"O0dGcV8VYFx6\",\n    \"data\": {\n        \"hideQuestions\": true,\n        \"name\": \"template name updated\",\n        \"questions\": [\n            {\n                \"numOfRetakes\": 2,\n                \"partDuration\": 60,\n                \"question\": \"The question you are asking the candidate\",\n                \"description\": \"some question description\"\n            }\n        ],\n        \"introVideo\": \"video url\",\n        \"id\": \"vmcpyv1rfmm1fw1j53908oot\"\n    },\n    \"time\": 1644226646960\n}"},{"id":"70aaa57d-76aa-4de2-a6c5-2379d26242bb","name":"404","originalRequest":{"method":"GET","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"}],"url":"https://api-ga.myinterview.com/api/v1/templates/:template_id"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"148"},{"key":"ETag","value":"W/\"94-ucQvDO4gUgfV1tmYm8wis58Cupk\""},{"key":"Date","value":"Mon, 07 Feb 2022 09:37:58 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusReason\": \"Not Found\",\n    \"errorMessage\": \"Template was not found\",\n    \"errorCode\": 10007,\n    \"statusCode\": 404,\n    \"callId\": \"dknItmak8MEU\",\n    \"time\": 1644226678322\n}"}],"_postman_id":"2500463e-916d-4450-b56f-e57fa58975e6"},{"name":"Update a template","id":"c93f5f6b-8c43-44e9-9ebe-85ad0ea20d82","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"hideQuestions\": true,\n    \"name\": \"template name updated\",\n    \"questions\": [\n        {\n            \"numOfRetakes\": 2,\n            \"partDuration\": 60,\n            \"question\": \"The question you are asking the candidate\",\n            \"videoQuestion\": \"video url\",\n            \"description\": \"some question description\"\n        }\n    ],\n    \"introVideo\": \"video url\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api-ga.myinterview.com/api/v1/templates/:template_id","urlObject":{"path":["v1","templates",":template_id"],"host":["https://api-ga.myinterview.com/api"],"query":[],"variable":[]}},"response":[{"id":"5aca5a5e-11d5-4569-bdf0-98665954aa1a","name":"200","originalRequest":{"method":"PATCH","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"hideQuestions\": true,\n    \"name\": \"template name updated\",\n    \"questions\": [\n        {\n            \"numOfRetakes\": 2,\n            \"partDuration\": 60,\n            \"question\": \"The question you are asking the candidate\",\n            \"videoQuestion\": \"video url\",\n            \"description\": \"some question description\"\n        }\n    ],\n    \"introVideo\": \"video url\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api-ga.myinterview.com/api/v1/templates/:template_id"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"155"},{"key":"ETag","value":"W/\"9b-80swb/mfZmxB0hjuWVgeTLjKHk0\""},{"key":"Date","value":"Mon, 07 Feb 2022 09:37:11 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 200,\n    \"errorCode\": 2,\n    \"statusReason\": \"Updated\",\n    \"callId\": \"18oMmUWYavvC\",\n    \"data\": {\n        \"message\": \"The template have been updated.\"\n    },\n    \"time\": 1644226631903\n}"}],"_postman_id":"c93f5f6b-8c43-44e9-9ebe-85ad0ea20d82"}],"id":"93c5cbc5-be29-4996-a62a-2fc52670cdc0","description":"<p>The Company Model consolidates all information about your company, making it an excellent starting point for retrieving your company's details in JSON format using the <code>Company info</code> API endpoint.</p>\n<p>Additionally, you can set up templates to avoid rewriting questions repeatedly. Simply use the template_id when creating a job. For an example, refer to the Job Model section.</p>\n<blockquote>\n<p><strong>Note</strong>: You can also configure templates within the myInterview dashboard and reuse them by calling the <code>Get Templates</code> API endpoint.</p>\n</blockquote>\n","_postman_id":"93c5cbc5-be29-4996-a62a-2fc52670cdc0"},{"name":"Shares","item":[{"name":"Create shortlist of candidates","id":"2441c5cc-91ad-4b81-bf43-12bf54f871a4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"candidate_videos\": [\n        {\n            \"id\": \"1tsdpj3x4osy4l7hb8pp8co6\"\n        },\n        {\n            \"id\": \"lk2nchgn28v54poy8i79a72i\"\n        }\n    ],\n    \"job_id\": \"hijzbe2xcon6amx1u2mgd7y6\",\n    \"anonymised\": true,\n    \"share_personality\": true,\n    \"recipients\": [\n        {\n            \"recipient_email\": \"teammate@email.com\",\n            \"recipient_name\": \"team mate neame\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api-ga.myinterview.com/api/v1/shares","description":"<p>Create shortlist of selected candidates and share it with your teammates.</p>\n<ul>\n<li>recipients email is optional</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>*candidate_videos</td>\n<td>Array of Object</td>\n<td>Ids of the videos you want to share</td>\n</tr>\n<tr>\n<td>*job_id</td>\n<td>string</td>\n<td>ID of the job</td>\n</tr>\n<tr>\n<td>anonymised</td>\n<td>boolean</td>\n<td>Flag to anonymised the candidates name</td>\n</tr>\n<tr>\n<td>share_personality</td>\n<td>boolean</td>\n<td>Flag to add AI Insights</td>\n</tr>\n<tr>\n<td>recipients</td>\n<td>Array of Object</td>\n<td>Array of recipients (recruiters) if you add some they will receive a mail with the link to comment the videos</td>\n</tr>\n</tbody>\n</table>\n</div><p>*required field</p>\n","urlObject":{"path":["v1","shares"],"host":["https://api-ga.myinterview.com/api"],"query":[],"variable":[]}},"response":[{"id":"a29d56b8-1066-45b4-8f85-e28f57112cbb","name":"200","originalRequest":{"method":"POST","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"candidate_videos\": [\n        {\n            \"id\": \"1tsdpj3x4osy4l7hb8pp8co6\"\n        },\n        {\n            \"id\": \"lk2nchgn28v54poy8i79a72i\"\n        }\n    ],\n    \"job_id\": \"hijzbe2xcon6amx1u2mgd7y6\",\n    \"anonymised\": true,\n    \"share_personality\": true,\n    \"recipients\": [\n        {\n            \"recipient_email\": \"teammate@email.com\",\n            \"recipient_name\": \"team mate neame\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api-ga.myinterview.com/api/v1/shares"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"197"},{"key":"ETag","value":"W/\"c5-AekfTMVtYcC7ehYPmdYY1dWxCe4\""},{"key":"Date","value":"Mon, 07 Feb 2022 10:06:46 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 200,\n    \"errorCode\": 0,\n    \"statusReason\": \"OK\",\n    \"callId\": \"acAsInS5zgOt\",\n    \"data\": {\n        \"shortlistUrl\": \"https://shortlist-staging.myinterview.com/videos/zmtis3np31ynimaxzb8ewzr9\"\n    },\n    \"time\": 1644228406665\n}"},{"id":"4c19a7ba-6843-4db4-b54f-b88f54103387","name":"401","originalRequest":{"method":"POST","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"candidate_videos\": [\n        {\n            \"id\": \"1tsdpj3x4osy4l7hb8pp8co6\"\n        },\n        {\n            \"id\": \"lk2nchgn28v54poy8i79a72i\"\n        }\n    ],\n    \"job_id\": \"hijzbe2xcon6amx1u2mgd7y6\",\n    \"anonymised\": true,\n    \"share_personality\": true,\n    \"recipients\": [\n        {\n            \"recipient_email\": \"teammate@email.com\",\n            \"recipient_name\": \"team mate neame\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api-ga.myinterview.com/api/v1/shares"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"141"},{"key":"ETag","value":"W/\"8d-tdN7Z09Dqo0LDZq6x92zMyis150\""},{"key":"Date","value":"Mon, 07 Feb 2022 10:04:26 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusReason\": \"Unauthorized\",\n    \"errorMessage\": \"Unauthorized\",\n    \"errorCode\": 10005,\n    \"statusCode\": 401,\n    \"callId\": \"vrqWETrlA5Dq\",\n    \"time\": 1644228266289\n}"}],"_postman_id":"2441c5cc-91ad-4b81-bf43-12bf54f871a4"}],"id":"7346c6ca-5d37-4393-9c88-957e1f374d06","description":"<p>The Share Model provides a method for generating a personalized URL containing the video_id(s) you want to share with others. For example, if you have several video candidates you'd like to share with a colleague or another party, you can use the <code>create shortlist</code> API endpoint to obtain a URL featuring the selected videos and comments on the candidates.</p>\n<p>This feature makes it easy to collaborate with team members, hiring managers, or other stakeholders involved in the recruitment process. By sharing a single URL, you can provide access to specific candidate videos, enabling efficient evaluation and discussion. The Share Model simplifies the process of sharing candidate information and streamlines decision-making, helping your organization identify the best talent.</p>\n","_postman_id":"7346c6ca-5d37-4393-9c88-957e1f374d06"},{"name":"Webhooks","item":[{"name":"Test webhook","id":"629e2a15-e0c2-425f-ae85-d11a80a7b876","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"url\": \"webhook url to be tested\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api-ga.myinterview.com/api/v1/webhooks/test","description":"<p>Currently a single webhook is supported for a video complete notification</p>\n","urlObject":{"path":["v1","webhooks","test"],"host":["https://api-ga.myinterview.com/api"],"query":[],"variable":[]}},"response":[{"id":"5e3348bb-23e0-4430-bcc2-dbbcf302ff30","name":"200","originalRequest":{"method":"POST","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"url\": \"https://webhook.site/132b5612-da1f-4c36-b014-4cf862fa9136\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api-ga.myinterview.com/api/v1/webhooks/test"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"134"},{"key":"ETag","value":"W/\"86-M98jrs7DzhUxV0hazOo9SRABNIA\""},{"key":"Date","value":"Mon, 07 Feb 2022 09:49:35 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 200,\n    \"errorCode\": 0,\n    \"statusReason\": \"OK\",\n    \"callId\": \"70CLpz4djL42\",\n    \"data\": {\n        \"message\": \"Success Webhook\"\n    },\n    \"time\": 1644227375279\n}"}],"_postman_id":"629e2a15-e0c2-425f-ae85-d11a80a7b876"},{"name":"Create/Update webhook","id":"33ae8b6b-9759-4872-8114-086f684290c9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"url\": \"webhook url to be added\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api-ga.myinterview.com/api/v1/webhooks/new","description":"<p>Currently a single webhook is supported for a video complete notification</p>\n","urlObject":{"path":["v1","webhooks","new"],"host":["https://api-ga.myinterview.com/api"],"query":[],"variable":[]}},"response":[{"id":"d0fa0130-4edd-4eb3-afed-0890df922ea6","name":"200","originalRequest":{"method":"POST","header":[{"key":"x-myinterview-timestamp","value":"headTimestamp","type":"text"},{"key":"x-myinterview-key","value":"headKey","type":"text"},{"key":"x-myinterview-signed","value":"headSigned","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"url\": \"https://webhook.site/132b5612-da1f-4c36-b014-4cf862fa9136\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api-ga.myinterview.com/api/v1/webhooks/new"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Security-Policy","value":"default-src 'self';base-uri 'self';block-all-mixed-content;font-src 'self' https: data:;frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Expect-CT","value":"max-age=0"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"no-referrer"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"141"},{"key":"ETag","value":"W/\"8d-Ae3PVJld+oSkivzWDNStZIJLgPE\""},{"key":"Date","value":"Mon, 07 Feb 2022 09:49:58 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"statusCode\": 200,\n    \"errorCode\": 0,\n    \"statusReason\": \"OK\",\n    \"callId\": \"dfdRyDP8khnS\",\n    \"data\": {\n        \"message\": \"Success create Webhook\"\n    },\n    \"time\": 1644227398556\n}"}],"_postman_id":"33ae8b6b-9759-4872-8114-086f684290c9"}],"id":"964a0de7-9ec4-4351-8b38-1d2fb735ba82","description":"<p>You can configure a webhook to receive notifications each time one of your candidates completes a video interview. To set up a webhook, provide a URL where a POST request will be sent with the following payload (example data):</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"videoID\": \"599bfd33-9f46-478d-be96-0490d59b2cbc\",\n  \"candidate_email\": \"candidate_email@test.com\",\n  \"candidate_name\": \"Candidate's Name\",\n  \"interview_URL\": \"https://share.myinterview.com/video/EMySrUICZPlVFYlR2ry4UKZxEDirhK53t923\",\n  \"interview_date\": \"2021-10-28T09:42:22.959Z\",\n  \"candidateID\": \"369b0d23-9f46-408d-be96-0490d8kds63gw\",\n  \"jobID\": \"k99b0po0-2w46-4pdd-b106-049338kds9ojdw\",\n  \"jobTitle\": \"Webhook Job Test\",\n  \"firstname\": \"John\",\n  \"lastname\": \"Doe\",\n  \"embed_video\": \"https://share.myinterview.com/embed/EMySrUICZPlVFYlR2ry4UKZxEDirhK53t923\",\n  \"jobTitle\": \"Sales Manager\",\n  \"phoneNumber\": \"+61 123 456 789\",\n  \"thumbnail\": \"https://any.thumbnail\"\n}\n\n</code></pre>\n<p>By implementing a webhook, you can automate the process of receiving updates about candidate video completions, making it easier to track and manage your recruitment process. This helps you stay informed of candidates' progress in real-time, enabling you to take timely actions, such as evaluating their interviews or moving them to the next stage of the hiring process. The webhook also allows for seamless integration with your existing recruitment tools and platforms, streamlining your workflow and improving overall efficiency.</p>\n","_postman_id":"964a0de7-9ec4-4351-8b38-1d2fb735ba82"}],"id":"1005f657-9dfe-4ae1-bbbf-40f0937caba8","_postman_id":"1005f657-9dfe-4ae1-bbbf-40f0937caba8","description":""}],"event":[{"listen":"prerequest","script":{"id":"1cd47e50-8f3f-41cd-95e8-37b7c382b1ea","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"5c35c122-ae38-4297-abe8-0bd9041bec8a","type":"text/javascript","exec":[""]}}],"variable":[{"key":"base_url","value":"https://api-ga.myinterview.com/api"},{"key":"head_timestamp","value":"headTimestamp"},{"key":"head_key","value":"headKey"},{"key":"head_signed","value":"headSigned"},{"key":"job_id","value":":jobId"},{"key":"candidate_id","value":":candidateId"},{"key":"live_interview_id","value":":liveInterviewId"},{"key":"video_id","value":":videoId"},{"key":"template_id","value":":template_id"}]}