{"info":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","description":"<html><head></head><body><p>Welcome to our Postman Collection! Here you can find and test all public Embloy-API endpoints using Postman.</p>\n<h1 id=\"common-error-codes\">Common Error Codes</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Error</th>\n<th>Description</th>\n<th>Solution</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>400 Bad Request</td>\n<td>Our server could not understand the request due to invalid syntax.</td>\n<td>Ensure all required fields are correctly filled.</td>\n</tr>\n<tr>\n<td>401 Unauthorized</td>\n<td>The request requires user authentication.</td>\n<td>Verify your access token is valid and included in the request headers (see <a href=\"https://www.rfc-editor.org/rfc/rfc6750\">RFC 6750: Bearer Token</a>).</td>\n</tr>\n<tr>\n<td>403 Forbidden</td>\n<td>You do not have permission to access the requested resource.</td>\n<td>Check your user permissions and API scopes. The action you performed might require a subscription.</td>\n</tr>\n<tr>\n<td>404 Not Found</td>\n<td>The requested resource could not be found.</td>\n<td>Ensure the endpoint URL and resource ID are correct.</td>\n</tr>\n<tr>\n<td>409 Conflict</td>\n<td>The request could not be completed due to a conflict with the current state of the target resource.</td>\n<td>Resolve the conflict before retrying the request (e.g., you already applied to a job or are trying to reject an already rejected application).</td>\n</tr>\n<tr>\n<td>429 Too Many Requests / Unprocessable Entity</td>\n<td>You have exhausted the limit of a resource given your current subscription or trying to persist more entites than allowed.</td>\n<td>Make sure that you have a valid subscription and don't have surpassed its usage limits (e.g., trying to create more jobs than your subscription allows or applying for the same job twice).</td>\n</tr>\n<tr>\n<td>500 Internal Server Error</td>\n<td>Our server encountered an unexpected condition that prevented it from fulfilling the request.</td>\n<td>Try again later or check <a href=\"https://status.embloy.com\">status.embloy.com</a>.  <br>If the issue persists, please contact our support.</td>\n</tr>\n<tr>\n<td>503 Service Unavailable</td>\n<td>The server is currently unable to handle the request due to maintenance or you probably have sent too many requests in a given amount of time (\"rate limiting\").</td>\n<td>Try again later or reduce the frequency of requests.</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"getting-started\">Getting Started</h1>\n<h2 id=\"step-1-fork-the-collection-using-run-in-postman\">Step 1: Fork the collection using Run in Postman</h2>\n<p><a href=\"https://god.gw.postman.com/run-collection/24977803-e44099dd-6647-4b78-bd7a-03293e47dee5?action=collection%2Ffork&amp;source=rip_markdown&amp;collection-url=entityId%3D24977803-e44099dd-6647-4b78-bd7a-03293e47dee5%26entityType%3Dcollection%26workspaceId%3D6b47d1cc-f4b3-4522-8ab1-98a55f18324c\"><img src=\"https://run.pstmn.io/button.svg\"></a></p>\n<h2 id=\"step-2-method-1-create-a-new-access-token-automatically\">Step 2 (method 1): Create a new access token automatically</h2>\n<ol>\n<li><p>Sign into our <a href=\"https://genius.embloy.com\">recruiter portal</a> or <a href=\"https://embloy.com/register\">create a new Embloy account</a></p>\n</li>\n<li><p>Create a new access token by going to the \"secrets\" tab of your <a href=\"https://genius.embloy.com/settings?tab=secrets\">Embloy Genius settings</a> and pressing on the \"create access token\" button and save it to the <code>access_token</code> variable in Postman</p>\n</li>\n</ol>\n<h2 id=\"step-2-method-2-get-your-access-token-manually\">Step 2 (method 2): Get your access token manually</h2>\n<h4 id=\"if-you-dont-have-an-account-yet\">If you don't have an account yet:</h4>\n<ol>\n<li><p>Create new user <code>POST:/user</code></p>\n</li>\n<li><p>Verify user <code>GET:/user/verify</code></p>\n</li>\n<li><p>Activate account using the link sent to your email</p>\n</li>\n<li><p>Request new refresh token via <code>POST:/user/auth/token/refresh</code> using your credentials</p>\n</li>\n<li><p>Save the JWT you received in the variable <code>refresh_token</code></p>\n</li>\n<li><p>Request new access token with <code>POST:/user/auth/token/access</code></p>\n</li>\n<li><p>Save access token to variable <code>access_token</code></p>\n</li>\n</ol>\n<h4 id=\"else-sign-in-with-existing-account\">Else, sign in with existing account:</h4>\n<ol>\n<li><p>Request new refresh token via <code>POST:/user/auth/token/refresh</code> using your credentials</p>\n</li>\n<li><p>Save the JWT you received in the variable <code>refresh_token</code></p>\n</li>\n<li><p>Request new access token with <code>POST:/user/auth/token/access</code></p>\n</li>\n<li><p>Save access token to variable <code>access_token</code></p>\n</li>\n</ol>\n<h2 id=\"step-3-make-your-first-api-call\">Step 3: Make your first API call</h2>\n<p>Embloy recommends starting with the Jobs and Quicklink APIs. These steps will use the Jobs and Quicklink APIs to create a job and capture applications using <a href=\"https://developers.embloy.com/docs/core/subscriptions/subscription_features\">sandbox accounts</a> linked to your Developer Dashboard account.</p>\n<p>To create a job:</p>\n<ol>\n<li><p>In your workspace, navigate to your fork of the Embloy collection.</p>\n</li>\n<li><p>Select <strong>Jobs &gt; Create job</strong>.</p>\n</li>\n<li><p>Select the <strong>Send</strong> button to create the job. On a successful call, the API returns a <code>201 Created</code> response code.</p>\n</li>\n</ol>\n<p>To upload an application:</p>\n<ol>\n<li><p>In <strong>User &gt; Get user's jobs</strong>, find the <code>id</code> of the job you created.</p>\n</li>\n<li><p>In the <strong>Variables</strong> tab, enter it into the <code>job_id</code> field.</p>\n</li>\n<li><p>Select <strong>Applications &gt; Submit application</strong>.</p>\n</li>\n<li><p>Select <strong>Send</strong>. On a successful call, the API returns a <code>201 Created</code> code.</p>\n</li>\n</ol>\n<p>Your job has been created and an application has been captured. You can review the submitted application in the <a href=\"https://genius.embloy.com/recruitment\">Embloy Genius dashboard</a>.</p>\n<h1 id=\"debugging\">Debugging</h1>\n<p>You might encounter some of the following errors when using unauthorized access tokens:</p>\n<blockquote>\n<p><strong>NOTE:</strong> <em>Find out more about our access tokens and scopes in our</em> <a href=\"https://developers.embloy.com/docs/core/tokens/token_info#access-token\">&lt;em&gt;developer docs&lt;/em&gt;</a><em>.</em> </p>\n</blockquote>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Scope</th>\n<th>Error</th>\n<th>Description</th>\n<th>Solution</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>user</td>\n<td>400: ERR_INVALID</td>\n<td>Attribute cannot be retrieved.</td>\n<td>Ensure the attribute name is correct and the attribute exists.</td>\n</tr>\n<tr>\n<td>token</td>\n<td>400: ERR_INVALID</td>\n<td>Attribute is invalid or expired.</td>\n<td>Verify the token's validity and ensure it has not expired.</td>\n</tr>\n<tr>\n<td>token</td>\n<td>403: ERR_RAC</td>\n<td>The scope 'genius.embloy.com/api.write' is not allowed because it does not match the application's base URL.</td>\n<td>Check that the scope matches the application's base URL.</td>\n</tr>\n<tr>\n<td>token</td>\n<td>403: ERR_RAC</td>\n<td>The requested path '/integrations/auth/xyz' is not allowed for scope 'api.embloy.com/api.write'.</td>\n<td>Ensure the requested path is correct and within the allowed scope.</td>\n</tr>\n<tr>\n<td>token</td>\n<td>403: ERR_RAC</td>\n<td>The scope 'api.embloy.com/api.read' is not allowed to perform the 'PATCH' method.</td>\n<td>Verify that the scope has the correct permissions for the desired HTTP method.</td>\n</tr>\n</tbody>\n</table>\n</div></body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Common Error Codes","slug":"common-error-codes"},{"content":"Getting Started","slug":"getting-started"},{"content":"Debugging","slug":"debugging"}],"owner":"24977803","collectionId":"e44099dd-6647-4b78-bd7a-03293e47dee5","publishedId":"2s9YRB2rkE","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"8a5fd5"},"publishDate":"2024-05-26T15:14:25.000Z"},"item":[{"name":"Authentication","item":[{"name":"/user/verify","id":"20ee549b-80c6-4343-baaf-c82e62cd1a7d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"your-name@example.com"},{"key":"password","value":"insert-password"}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/user/verify","description":"<p>This makes sure that the Embloy account was registerd successfully and automatically claims the initial refresh token. Verifying an account is mandatory before using any function of Embloy's plattform.</p>\n","urlObject":{"path":["api","v0","user","verify"],"host":["https://api.embloy.com"],"query":[],"variable":[]}},"response":[{"id":"3a52cd14-fad0-4616-a3c6-c9fbafd8f888","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/user/verify"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Account verified. Please check your email for the activation link.\"\n}"}],"_postman_id":"20ee549b-80c6-4343-baaf-c82e62cd1a7d"},{"name":"/user/activate","id":"85e5315d-f144-4479-822b-265bb356d0e2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/user/activate?token=insert-your-activation-token","description":"<p>Activate a user's account given an activation token. If the activation token has expired, it can be re-requested <a href=\"https://embloy.com/activation-token\">here</a> or using <a href=\"https://www.postman.com/embloy/workspace/embloy-workspace/request/24977803-75b9eed7-22e0-4978-8693-04926bb0ebf0\">this endpoint</a>.</p>\n","urlObject":{"path":["api","v0","user","activate"],"host":["https://api.embloy.com"],"query":[{"key":"token","value":"insert-your-activation-token"}],"variable":[]}},"response":[],"_postman_id":"85e5315d-f144-4479-822b-265bb356d0e2"},{"name":"/user/activate","id":"75b9eed7-22e0-4978-8693-04926bb0ebf0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"email","value":"your-name@example.com","description":"<p>Your account email to which the activation link will be sent.</p>\n","type":"text"}]},"url":"https://api.embloy.com/api/v0/user/activate","description":"<p>Re-request an activation link for the case that the activation link sent upon account creation has expired.</p>\n<p>Activation links have a validity of one day.</p>\n","urlObject":{"path":["api","v0","user","activate"],"host":["https://api.embloy.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"75b9eed7-22e0-4978-8693-04926bb0ebf0"},{"name":"Generate OTP","id":"421b8a54-9a8b-48a6-899e-a876805c07d3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"email","value":"your-name@example.com","description":"<p>Your account email to which the OTP will be sent.</p>\n","type":"text"},{"key":"request_token","value":"","description":"<p>Optional request_token for special application sessions</p>\n","type":"text","disabled":true},{"key":"first_name","value":"","description":"<p>Optional first name for special application sessions</p>\n","type":"text","disabled":true},{"key":"last_name","value":"","description":"<p>Optional last name for special application sessions</p>\n","type":"text","disabled":true}]},"url":"https://api.embloy.com/api/v0/auth/token/otp","description":"<p>Generates and sends a new One-Time Passcode (OTP) to your email if the email is linked to an account.</p>\n<p>The OTP is valid for 30 minutes and can only be used once.</p>\n","urlObject":{"path":["api","v0","auth","token","otp"],"host":["https://api.embloy.com"],"query":[],"variable":[]}},"response":[{"id":"33eee29c-a4cf-4ad0-8cff-2a9b778134e5","name":"200 OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"email","value":"your-name@example.com","description":"Your account email to which the OTP will be sent.","type":"text"},{"key":"request_token","value":"","description":"Optional request_token for special application sessions","type":"text","disabled":true},{"key":"first_name","value":"","description":"Optional first name for special application sessions","type":"text","disabled":true},{"key":"last_name","value":"","description":"Optional last name for special application sessions","type":"text","disabled":true}]},"url":"https://api.embloy.com/api/v0/auth/token/otp"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"b8adcae17f9a16d7cc597ca88b7d863f\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"065e87eb-e028-4d91-a70d-38f8b6677a3d"},{"key":"X-Runtime","value":"2.687383"},{"key":"Server-Timing","value":"sql.active_record;dur=1448.88, cache_read.active_support;dur=0.20, cache_write.active_support;dur=0.19, start_processing.action_controller;dur=0.69, unpermitted_parameters.action_controller;dur=1.56, instantiation.active_record;dur=0.12, process_action.action_controller;dur=1103.07"},{"key":"vary","value":"Origin"},{"key":"Content-Length","value":"465"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"OTP sent successfully. Please check your emails.\"\n}"}],"_postman_id":"421b8a54-9a8b-48a6-899e-a876805c07d3"},{"name":"Verify OTP","id":"686decbc-988f-49aa-9843-1a1c618bcbf2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PATCH","header":[],"body":{"mode":"formdata","formdata":[{"key":"email","value":"your-name@example.com","description":"<p>Your account email to which the OTP was sent.</p>\n","type":"text"},{"key":"otp_code","value":"insert-otp-code","description":"<p>The OTP included sent to your email.</p>\n","type":"text"}]},"url":"https://api.embloy.com/api/v0/auth/token/otp","description":"<p>Verifies a given OTP for an email. The OTP is valid for 30 minutes and can only be used once.</p>\n","urlObject":{"path":["api","v0","auth","token","otp"],"host":["https://api.embloy.com"],"query":[],"variable":[]}},"response":[{"id":"a0aebabf-2250-419f-9d4f-eceef002bf79","name":"200 OK","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"formdata","formdata":[{"key":"email","value":"your-name@example.com","description":"Your account email to which the OTP was sent.","type":"text"},{"key":"otp_code","value":"insert-otp-code","description":"The OTP included sent to your email.","type":"text"}]},"url":"https://api.embloy.com/api/v0/auth/token/otp"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"7926fd3335cdaa07b390a13699260652\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"ee736fa8-0a42-40fe-b3ee-2fdaf358bd1c"},{"key":"X-Runtime","value":"0.824950"},{"key":"Server-Timing","value":"cache_read.active_support;dur=0.17, cache_write.active_support;dur=0.07, start_processing.action_controller;dur=0.21, unpermitted_parameters.action_controller;dur=0.29, sql.active_record;dur=672.36, instantiation.active_record;dur=0.78, process_action.action_controller;dur=621.15"},{"key":"vary","value":"Origin"},{"key":"Content-Length","value":"229"}],"cookie":[],"responseTime":null,"body":"{\n    \"refresh_token\": \"...\"\n}"},{"id":"7e317aa1-dacd-4939-9589-ff874c90ce69","name":"401 Unauthorized","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"formdata","formdata":[{"key":"email","value":"your-name@example.com","description":"Your account email to which the OTP was sent.","type":"text"},{"key":"otp_code","value":"insert-otp-code","description":"The OTP included sent to your email.","type":"text"}]},"url":"https://api.embloy.com/api/v0/auth/token/otp"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"f9d038ac-93d5-4df4-8ef1-483cdc338d8c"},{"key":"X-Runtime","value":"1.029242"},{"key":"Server-Timing","value":"cache_read.active_support;dur=0.47, cache_write.active_support;dur=0.11, start_processing.action_controller;dur=0.59, unpermitted_parameters.action_controller;dur=0.72, sql.active_record;dur=331.67, instantiation.active_record;dur=0.09, process_action.action_controller;dur=121.10"},{"key":"vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"Invalid OTP\"\n}"}],"_postman_id":"686decbc-988f-49aa-9843-1a1c618bcbf2"},{"name":"Generate Refresh-Token","id":"2c38042b-45e7-4de4-8171-ddc3f53a0182","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"your-name@example.com"},{"key":"password","value":"insert-password"}]},"isInherited":false},"method":"POST","header":[],"url":"https://api.embloy.com/api/v0/auth/token/refresh","description":"<p>This first authenticates the account credentials and then issues a refresh token for this specific verified Embloy account. Refresh tokens only possess a time-limited validity. (current default validity is 2 weeks) Refresh tokens are primarily used to claim the much more powerful (but much shorter valid) access tokens.</p>\n","urlObject":{"path":["api","v0","auth","token","refresh"],"host":["https://api.embloy.com"],"query":[],"variable":[]}},"response":[{"id":"f560726c-a025-4a14-9882-b5332c17b0d3","name":"200 OK","originalRequest":{"method":"POST","header":[],"url":"https://api.embloy.com/api/v0/auth/token/refresh"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"refresh_token\": \"...\"\n}"},{"id":"84117c4f-c433-4b50-8458-ee4a17d177f5","name":"403 Forbidden","originalRequest":{"method":"POST","header":[],"url":"https://api.embloy.com/api/v0/user/auth/token/refresh"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"user\": [\n        {\n            \"error\": \"ERR_RAC\",\n            \"description\": \"Proceeding is inhibited by an access restriction\"\n        }\n    ]\n}"},{"id":"2f3eb27b-e35a-4a52-9041-29677260f16b","name":"503 Service Unavailable","originalRequest":{"method":"POST","header":[],"url":"https://api.embloy.com/api/v0/auth/token/refresh"},"status":"Service Unavailable","code":503,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"Rate limit exceeded. Please try again later."}],"_postman_id":"2c38042b-45e7-4de4-8171-ddc3f53a0182"},{"name":"Generate Access-Token","id":"e29e5a54-533b-413a-9e04-b608cc4acd68","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"refresh_token","value":"insert-refresh-token","description":"<p>A valid refresh token is needed in order to be able to create an access_token.</p>\n","type":"text"},{"key":"grant_type","value":"refresh_token","description":"<p>Specifies the type of access delegation according to the authorization grant. This parameter tells the authorization server what kind of authorization grant (i.e., method of proving identity) the client application is presenting in exchange for an access token.</p>\n","type":"text"}]},"url":"https://api.embloy.com/api/v0/auth/token/access","description":"<p>This first verifies the provided refresh token and then issues an access token for the specific account associated with the refresh token. Access tokens only possess a very short time-limited validity or 20 minutes currently. Access tokens are a very important aspect of dealing with the Embloy API. Nearly every endpoint requires the provision of a valid access token. In conclusion access tokens are quite powerfull, have a short validity interval and can be claimend with a valid refresh token. Refresh tokens are less powerfull than access tokens but they possess a longer validity intervall and are mainly used for claiming access tokens.</p>\n","urlObject":{"path":["api","v0","auth","token","access"],"host":["https://api.embloy.com"],"query":[],"variable":[]}},"response":[{"id":"2238e929-d13b-499d-b074-ed5d44499a65","name":"200 OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"refresh_token","value":"insert-refresh-token","description":"A valid refresh token is needed in order to be able to create an access_token.","type":"text"},{"key":"grant_type","value":"refresh_token","description":"Specifies the type of access delegation according to the authorization grant. This parameter tells the authorization server what kind of authorization grant (i.e., method of proving identity) the client application is presenting in exchange for an access token.","type":"text"}]},"url":"https://api.embloy.com/api/v0/auth/token/access"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"access_token\": \"...\",\n    \"token_type\": \"Bearer\",\n    \"scope\": \"https://api.embloy.com/auth/core.write\",\n    \"expires_in\": 1200\n}"},{"id":"e8149d0c-225d-4df1-bfa7-6938248ba2a8","name":"400 Bad Request","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"refresh_token","value":"insert-refresh-token","description":"A valid refresh token is needed in order to be able to create an access_token.","type":"text"},{"key":"grant_type","value":"refresh_token","description":"Specifies the type of access delegation according to the authorization grant. This parameter tells the authorization server what kind of authorization grant (i.e., method of proving identity) the client application is presenting in exchange for an access token.","type":"text"}]},"url":"https://api.embloy.com/api/v0/auth/token/access"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"Invalid request\"\n}"},{"id":"33bc38b6-186e-46b2-8716-7914c9b9ee5e","name":"401 Unauthorized","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"refresh_token","value":"abc","description":"A valid refresh token is needed in order to be able to create an access_token.","type":"text"}]},"url":"https://api.embloy.com/api/v0/auth/token/access"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"token\": [\n        {\n            \"error\": \"ERR_INVALID\",\n            \"description\": \"Attribute is invalid or expired\"\n        }\n    ]\n}"},{"id":"5adc4120-2456-41e9-9f7f-b15e78b1626d","name":"403 Forbidden","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"refresh_token","value":"insert-refresh-token","description":"A valid refresh token is needed in order to be able to create an access_token.","type":"text"},{"key":"grant_type","value":"refresh_token","description":"Specifies the type of access delegation according to the authorization grant. This parameter tells the authorization server what kind of authorization grant (i.e., method of proving identity) the client application is presenting in exchange for an access token.","type":"text"}]},"url":"https://api.embloy.com/api/v0/auth/token/access"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"user\": [\n        {\n            \"error\": \"ERR_RAC\",\n            \"description\": \"Proceeding is inhibited by an access restriction\"\n        }\n    ]\n}"}],"_postman_id":"e29e5a54-533b-413a-9e04-b608cc4acd68"}],"id":"66a77466-1308-4153-9a81-a8b0d8c679c5","description":"<p>All request regarding user authentication and access token creation.</p>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"4980d3c5-a4b8-41f2-a1ff-e4216c696e9c","type":"text/javascript","packages":{},"exec":[""]}},{"listen":"test","script":{"id":"a2f29c4a-b462-45d8-a148-ca1c92059fc8","type":"text/javascript","packages":{},"exec":[""]}}],"_postman_id":"66a77466-1308-4153-9a81-a8b0d8c679c5"},{"name":"Tokens","item":[{"name":"Get current user's tokens","id":"1026891f-139d-4a04-a922-3a1c3f312cc8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/tokens?active=1","description":"<p>Returns all current users tokens (excluding expired and inactive tokens if the <code>active</code> flag is set)</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","tokens"],"host":["https://api.embloy.com"],"query":[{"description":{"content":"<p>Flag to exclude inactive and expired tokens</p>\n","type":"text/plain"},"key":"active","value":"1"}],"variable":[]}},"response":[{"id":"a7c0dec1-ff71-43cc-b157-ab3f3fe0175f","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.embloy.com/api/v0/tokens?active=1","host":["https://api.embloy.com"],"path":["api","v0","tokens"],"query":[{"key":"active","value":"1","description":"Flag to exclude inactive and expired tokens"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"tokens\": [\n        {\n            \"id\": 6,\n            \"name\": \"Automatically generated refresh token\",\n            \"token_type\": \"refresh_token\",\n            \"issuer\": \"embloy\",\n            \"encrypted_token\": \"...\",\n            \"issued_at\": \"2024-05-26T13:57:11.000Z\",\n            \"expires_at\": \"2024-06-09T13:57:11.000Z\",\n            \"last_used_at\": null,\n            \"active\": true,\n            \"scopes\": null,\n            \"user_id\": 1,\n            \"created_at\": \"2024-05-26T13:57:11.649Z\",\n            \"updated_at\": \"2024-05-26T13:57:11.649Z\",\n            \"encrypted_token_iv\": \"trOhbshSadRNhVT6\\n\",\n            \"token\": \"...\"\n        },\n        {\n            \"id\": 11,\n            \"name\": \"Automatically generated client token\",\n            \"token_type\": \"client_token\",\n            \"issuer\": \"embloy\",\n            \"encrypted_token\": \"...\",\n            \"issued_at\": \"2024-05-26T14:12:55.000Z\",\n            \"expires_at\": \"2025-02-23T08:31:54.000Z\",\n            \"last_used_at\": null,\n            \"active\": true,\n            \"scopes\": null,\n            \"user_id\": 1,\n            \"created_at\": \"2024-05-26T14:12:55.902Z\",\n            \"updated_at\": \"2024-05-26T14:12:55.902Z\",\n            \"encrypted_token_iv\": \"D08x6VWc0Uq6RJmD\\n\",\n            \"token\": \"...\"\n        },\n        {\n            \"id\": 12,\n            \"name\": \"Automatically generated access token\",\n            \"token_type\": \"access_token\",\n            \"issuer\": \"embloy\",\n            \"encrypted_token\": \"...\",\n            \"issued_at\": \"2024-05-26T14:29:36.045Z\",\n            \"expires_at\": \"2024-05-26T14:49:36.000Z\",\n            \"last_used_at\": null,\n            \"active\": true,\n            \"scopes\": null,\n            \"user_id\": 1,\n            \"created_at\": \"2024-05-26T14:29:36.067Z\",\n            \"updated_at\": \"2024-05-26T14:29:36.067Z\",\n            \"encrypted_token_iv\": \"aWo3cvqnXJQ949up\\n\",\n            \"token\": \"...\"\n        },\n        {\n            \"id\": 13,\n            \"name\": \"Custom Job Board API key\",\n            \"token_type\": \"api_key\",\n            \"issuer\": \"ashby\",\n            \"encrypted_token\": \"...\",\n            \"issued_at\": \"2024-05-26T00:00:00.000Z\",\n            \"expires_at\": \"2025-05-26T14:32:31.230Z\",\n            \"last_used_at\": null,\n            \"active\": true,\n            \"scopes\": null,\n            \"user_id\": 1,\n            \"created_at\": \"2024-05-26T14:32:31.231Z\",\n            \"updated_at\": \"2024-05-26T14:32:31.231Z\",\n            \"encrypted_token_iv\": \"oiA/iiahdwhdlaw\\n\",\n            \"token\": \"...\"\n        }\n    ]\n}"},{"id":"78a7d8ad-739c-4fe4-807b-c6a2cf5f21e1","name":"204 No Content","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.embloy.com/api/v0/tokens?active=1","host":["https://api.embloy.com"],"path":["api","v0","tokens"],"query":[{"key":"active","value":"1","description":"Flag to exclude inactive and expired tokens"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[]"}],"_postman_id":"1026891f-139d-4a04-a922-3a1c3f312cc8"},{"name":"Create token","id":"d2f4f5c8-83c5-4be1-b0d1-57def148d57d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"Automatically generated token\",\n    \"issuer\": \"Embloy\",\n    \"token\": \"insert-refresh-token\",\n    \"issued_at\": \"Mon Jul 07 2025 13:30:09 GMT+0000 (Coordinated Universal Time)\",\n    \"expires_at\": \"Mon Nov 02 2026 05:26:03 GMT+0000 (Coordinated Universal Time)\",\n    \"token_type\": \"refresh_token\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.embloy.com/api/v0/tokens","description":"<p>Creates and stores a new token for the current user.</p>\n<ul>\n<li><p>Valid token types are <code>refresh_token</code>, <code>access_token</code>, <code>request_token</code>, <code>client_token</code>, <code>api_key</code>.</p>\n</li>\n<li><p>Valid token issuers are <code>embloy</code>, <code>ashby</code>, <code>lever</code>, <code>softgarden</code></p>\n</li>\n</ul>\n<p>Please note that only users with a valid Embloy subscription are allowed to create new tokens.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","tokens"],"host":["https://api.embloy.com"],"query":[],"variable":[]}},"response":[{"id":"8994701d-35e0-4e7c-a1ef-5694fd986ad4","name":"201 Created","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"Custom Job Board API key\",\n    \"issuer\": \"Ashby\",\n    \"token\": \"...\",\n    \"token_type\": \"api_key\"\n}\n","options":{"raw":{"language":"json"}}},"url":"https://api.embloy.com/api/v0/tokens"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"token\": {\n        \"id\": 13,\n        \"name\": \"Custom Job Board API key\",\n        \"token_type\": \"api_key\",\n        \"issuer\": \"ashby\",\n        \"encrypted_token\": \"...\",\n        \"issued_at\": \"2024-05-26T00:00:00.000Z\",\n        \"expires_at\": \"2025-05-26T14:32:31.230Z\",\n        \"last_used_at\": null,\n        \"active\": true,\n        \"scopes\": null,\n        \"user_id\": 1,\n        \"created_at\": \"2024-05-26T14:32:31.231Z\",\n        \"updated_at\": \"2024-05-26T14:32:31.231Z\",\n        \"encrypted_token_iv\": \"wdX/irXY7pF79n5c\\n\",\n        \"token\": \"...\"\n    }\n}"},{"id":"3f9ab5a1-ba84-4dbd-a0cb-c7c2868a79f1","name":"422 Unprocessable Entity","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"\",\n    \"issuer\": \"\",\n    \"token\": \"\",\n    \"token_type\": \"\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.embloy.com/api/v0/tokens"},"status":"Unprocessable Entity (WebDAV) (RFC 4918)","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"name\": [\n        \"can't be blank\"\n    ],\n    \"issuer\": [\n        \"can't be blank\",\n        \"is not included in the list\"\n    ],\n    \"token\": [\n        \"can't be blank\"\n    ],\n    \"expires_at\": [\n        \"can't be blank\"\n    ],\n    \"token_type\": [\n        \"can't be blank\",\n        \"is not included in the list\"\n    ]\n}"}],"_postman_id":"d2f4f5c8-83c5-4be1-b0d1-57def148d57d"},{"name":"Update token","id":"4345ca1b-1ee4-4eea-9fca-043546639975","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"Automatically generated refresh token\",\n    \"token_type\": \"refresh_token\",\n    \"issuer\": \"embloy\",\n    \"issued_at\": \"2024-05-26T13:57:11.000Z\",\n    \"expires_at\": \"2024-06-09T13:57:11.000Z\",\n    \"last_used_at\": null,\n    \"active\": false,\n    \"scopes\": null,\n    \"created_at\": \"2024-05-26T13:57:11.649Z\",\n    \"updated_at\": \"2024-05-26T13:57:11.649Z\",\n    \"token\": \"...\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.embloy.com/api/v0/tokens/:token_id","description":"<p>Updates a token if owned by the current user.</p>\n<p>Please note that only users with a valid Embloy subscription are allowed to update tokens.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","tokens",":token_id"],"host":["https://api.embloy.com"],"query":[],"variable":[{"description":{"content":"<p>ID of the token that the current user owns and wants to update.</p>\n","type":"text/plain"},"type":"any","value":"","key":"token_id"}]}},"response":[{"id":"0e5a5f65-dcad-4125-ae37-2206abace32f","name":"200 OK","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"Automatically generated refresh token\",\n    \"token_type\": \"refresh_token\",\n    \"issuer\": \"embloy\",\n    \"issued_at\": \"2024-05-26T13:57:11.000Z\",\n    \"expires_at\": \"2024-06-09T13:57:11.000Z\",\n    \"last_used_at\": null,\n    \"active\": false,\n    \"scopes\": null,\n    \"created_at\": \"2024-05-26T13:57:11.649Z\",\n    \"updated_at\": \"2024-05-26T13:57:11.649Z\",\n    \"token\": \"...\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.embloy.com/api/v0/tokens/:token_id","host":["https://api.embloy.com"],"path":["api","v0","tokens",":token_id"],"variable":[{"key":"token_id","value":"1","description":"ID of the token that the current user owns and wants to update."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"token\": {\n        \"user_id\": 1,\n        \"name\": \"Automatically generated refresh token\",\n        \"token_type\": \"refresh_token\",\n        \"issuer\": \"embloy\",\n        \"issued_at\": \"2024-05-26T13:57:11.000Z\",\n        \"expires_at\": \"2024-06-09T13:57:11.000Z\",\n        \"active\": false,\n        \"last_used_at\": null,\n        \"scopes\": null,\n        \"encrypted_token_iv\": \"mZWdugYJO4O6p3q8\\n\",\n        \"encrypted_token\": \"...\",\n        \"id\": 11,\n        \"created_at\": \"2024-05-26T14:12:55.902Z\",\n        \"updated_at\": \"2024-05-26T14:36:24.418Z\",\n        \"token\": \"...\"\n    }\n}"},{"id":"52a688af-5599-48c2-9139-f4a34c70d70d","name":"404 Not Found","originalRequest":{"method":"PATCH","header":[],"url":{"raw":"https://api.embloy.com/api/v0/tokens/:token_id","host":["https://api.embloy.com"],"path":["api","v0","tokens",":token_id"],"variable":[{"key":"token_id","value":"1","description":"ID of the token that the current user owns and wants to update."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"token\": [\n        {\n            \"error\": \"ERR_INVALID\",\n            \"description\": \"Attribute can not be retrieved\"\n        }\n    ]\n}"}],"_postman_id":"4345ca1b-1ee4-4eea-9fca-043546639975"},{"name":"Delete token","id":"875afd8d-2f9d-4b54-b3d8-67704d62c108","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://api.embloy.com/api/v0/tokens/:token_id","description":"<p>Deletes a token if owned by the current user.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","tokens",":token_id"],"host":["https://api.embloy.com"],"query":[],"variable":[{"description":{"content":"<p>ID of the token that the current user owns and wants to delete.</p>\n","type":"text/plain"},"type":"any","value":"","key":"token_id"}]}},"response":[{"id":"5142dc94-1f01-4fac-8343-3b0052682d03","name":"200 OK","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://api.embloy.com/api/v0/tokens/:token_id","host":["https://api.embloy.com"],"path":["api","v0","tokens",":token_id"],"variable":[{"key":"token_id","value":"1","description":"ID of the token that the current user owns and wants to delete."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Token deleted!\"\n}"},{"id":"853cf105-fa39-4d65-a519-0263080f99d8","name":"404 Not Found","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://api.embloy.com/api/v0/tokens/:token_id","host":["https://api.embloy.com"],"path":["api","v0","tokens",":token_id"],"variable":[{"key":"token_id","value":"","description":"ID of the token that the current user owns and wants to delete."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"token\": [\n        {\n            \"error\": \"ERR_INVALID\",\n            \"description\": \"Attribute can not be retrieved\"\n        }\n    ]\n}"}],"_postman_id":"875afd8d-2f9d-4b54-b3d8-67704d62c108"}],"id":"61115343-81ab-4df4-a6e2-47db9accb0ab","description":"<p>All request regarding token / API keys / third party secrets storage and creation.</p>\n<blockquote>\n<p><em><strong>Note:</strong></em> <em>The actual token encoding and decoding is done outside of this controller. These endpoints only handle already created tokens and store them for a given user.</em></p>\n</blockquote>\n","_postman_id":"61115343-81ab-4df4-a6e2-47db9accb0ab","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}}},{"name":"Jobs","item":[{"name":"[DEACTIVATED] Load feed","id":"57e944f0-7e32-41f2-ba51-2b61d02d9c38","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/jobs?longitude=-0.1293754&latitude=51.5207794","description":"<p>The provided access token is first verified, and then a user specific job feed is generated and returned.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","jobs"],"host":["https://api.embloy.com"],"query":[{"key":"longitude","value":"-0.1293754"},{"key":"latitude","value":"51.5207794"}],"variable":[]}},"response":[{"id":"dd2dcedc-ee95-46a0-ae19-f01c5cfdf9d3","name":"410 Gone","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.embloy.com/api/v0/jobs?longitude=-0.1293754&latitude=51.5207794","host":["https://api.embloy.com"],"path":["api","v0","jobs"],"query":[{"key":"longitude","value":"-0.1293754"},{"key":"latitude","value":"51.5207794"}]}},"status":"Gone","code":410,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"88bac9be-87c8-4821-95ae-6e38032c1254"},{"key":"X-Runtime","value":"0.260798"},{"key":"Server-Timing","value":"cache_read.active_support;dur=0.23, cache_write.active_support;dur=0.11, start_processing.action_controller;dur=0.49, sql.active_record;dur=154.48, instantiation.active_record;dur=0.31, process_action.action_controller;dur=143.05"},{"key":"vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"This endpoint is deprecated.\"\n}"}],"_postman_id":"57e944f0-7e32-41f2-ba51-2b61d02d9c38"},{"name":"Search jobs","id":"5b96ba65-0da2-4c0a-8b57-1a6d40065e4b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/find?query=Barista&job_type=Food&sort_by=date_desc&page=1","description":"<p>Search all jobs on embloy. Optionally filtered by <code>query</code>, <code>job_type</code> and <code>sort_by</code>.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","find"],"host":["https://api.embloy.com"],"query":[{"description":{"content":"<p>Returns jobs with titles, positions and descriptions matching your query</p>\n","type":"text/plain"},"key":"query","value":"Barista"},{"key":"job_type","value":"Food"},{"key":"sort_by","value":"date_desc"},{"description":{"content":"<p>Pagination (e.g., 1, 2, ...)</p>\n","type":"text/plain"},"key":"page","value":"1"}],"variable":[]}},"response":[{"id":"d1ba0233-7f57-4766-98fa-a7b2ef7c6361","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.embloy.com/api/v0/find?query=Barista&job_type=Food&sort_by=date_desc&page=1","host":["https://api.embloy.com"],"path":["api","v0","find"],"query":[{"key":"query","value":"Barista","description":"Returns jobs with titles, positions and descriptions matching your query"},{"key":"job_type","value":"Food"},{"key":"sort_by","value":"date_desc"},{"key":"page","value":"1","description":"Pagination (e.g., 1, 2, ...)"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"bc590c9adbcf139fe8c17a403d6d2f39\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"cf4ab0cd-b319-4668-9e45-380bf629acf3"},{"key":"X-Runtime","value":"2.371801"},{"key":"Server-Timing","value":"cache_read.active_support;dur=0.29, cache_write.active_support;dur=0.13, start_processing.action_controller;dur=0.65, sql.active_record;dur=664.44, instantiation.active_record;dur=117.96, unpermitted_parameters.action_controller;dur=0.24, service_url.active_storage;dur=29.38, process_action.action_controller;dur=1436.32"},{"key":"vary","value":"Origin"},{"key":"Content-Length","value":"25557"}],"cookie":[],"responseTime":null,"body":"{\n    \"jobs\": [\n        {\n            \"id\": 4,\n            \"title\": \"Organic coffee shop looking for a barista\",\n            \"position\": \"Barista\",\n            \"key_skills\": \"Barista, Coffee, Customer Service\",\n            \"job_type\": \"Food\",\n            \"job_slug\": \"a341e95f-a766-4273-9a6f-0e41ec5dbeba\",\n            \"job_status\": \"listed\",\n            \"activity_status\": 1,\n            \"referrer_url\": \"https://embloy.com/\",\n            \"salary\": 18,\n            \"currency\": \"USD\",\n            \"euro_salary\": null,\n            \"start_slot\": \"2042-10-02T20:42:42.356Z\",\n            \"duration\": 20,\n            \"code_lang\": null,\n            \"longitude\": 11.613942994844358,\n            \"latitude\": 48.1951076,\n            \"country_code\": null,\n            \"postal_code\": null,\n            \"city\": null,\n            \"address\": null,\n            \"view_count\": 0,\n            \"applications_count\": 0,\n            \"created_at\": \"2024-11-15T15:55:05.311Z\",\n            \"updated_at\": \"2024-11-15T15:55:06.080Z\",\n            \"image_url\": null,\n            \"description\": {\n                \"id\": 7,\n                \"name\": \"description\",\n                \"body\": \"<div>Work in the greatest espresso bar in town and make making others happy your paid job!</div>\",\n                \"record_type\": \"Job\",\n                \"record_id\": 4,\n                \"created_at\": \"2024-11-15T15:55:06.052Z\",\n                \"updated_at\": \"2024-11-15T15:55:06.052Z\"\n            },\n            \"employer\": {\n                \"employer_email\": \"info@embloy.com\",\n                \"employer_name\": \"Embloy Platforms\",\n                \"employer_phone\": \"004912345678910\",\n                \"employer_image_url\": \"http://localhost:3000/rails/active_storage/disk/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaDdDVG9JYTJWNVNTSWhNblZqT0dGb2JqaG5lVE5qYVhobGFXZDBPR3A1YkRRMGEySmhkUVk2QmtWVU9oQmthWE53YjNOcGRHbHZia2tpUjJsdWJHbHVaVHNnWm1sc1pXNWhiV1U5SW14dloyOHRiR2xuYUhRdWNHNW5JanNnWm1sc1pXNWhiV1VxUFZWVVJpMDRKeWRzYjJkdkxXeHBaMmgwTG5CdVp3WTdCbFE2RVdOdmJuUmxiblJmZEhsd1pVa2lEbWx0WVdkbEwzQnVad1k3QmxRNkVYTmxjblpwWTJWZmJtRnRaVG9LYkc5allXdz0iLCJleHAiOiIyMDI0LTExLTE1VDE5OjE5OjAzLjg0M1oiLCJwdXIiOiJibG9iX2tleSJ9fQ==--38c74f7801139bc8aa5444dba18ef4cf397941be/logo-light.png\"\n            }\n        },\n        {\n            \"id\": 3,\n            \"title\": \"Organic coffee shop looking for a barista\",\n            \"position\": \"Barista\",\n            \"key_skills\": \"Barista, Coffee, Customer Service\",\n            \"job_type\": \"Food\",\n            \"job_slug\": \"23fc4850-c26d-4770-bf26-5864c47e0492\",\n            \"job_status\": \"listed\",\n            \"activity_status\": 1,\n            \"referrer_url\": \"https://embloy.com/\",\n            \"salary\": 18,\n            \"currency\": \"USD\",\n            \"euro_salary\": null,\n            \"start_slot\": \"2042-10-02T20:42:42.356Z\",\n            \"duration\": 20,\n            \"code_lang\": null,\n            \"longitude\": 11.613942994844358,\n            \"latitude\": 48.1951076,\n            \"country_code\": null,\n            \"postal_code\": null,\n            \"city\": null,\n            \"address\": null,\n            \"view_count\": 0,\n            \"applications_count\": 0,\n            \"created_at\": \"2024-11-15T15:54:40.328Z\",\n            \"updated_at\": \"2024-11-15T15:54:41.085Z\",\n            \"image_url\": null,\n            \"description\": {\n                \"id\": 6,\n                \"name\": \"description\",\n                \"body\": \"<div>Work in the greatest espresso bar in town and make making others happy your paid job!</div>\",\n                \"record_type\": \"Job\",\n                \"record_id\": 3,\n                \"created_at\": \"2024-11-15T15:54:41.058Z\",\n                \"updated_at\": \"2024-11-15T15:54:41.058Z\"\n            },\n            \"employer\": {\n                \"employer_email\": \"info@embloy.com\",\n                \"employer_name\": \"Embloy Platforms\",\n                \"employer_phone\": \"004912345678910\",\n                \"employer_image_url\": \"http://localhost:3000/rails/active_storage/disk/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaDdDVG9JYTJWNVNTSWhNblZqT0dGb2JqaG5lVE5qYVhobGFXZDBPR3A1YkRRMGEySmhkUVk2QmtWVU9oQmthWE53YjNOcGRHbHZia2tpUjJsdWJHbHVaVHNnWm1sc1pXNWhiV1U5SW14dloyOHRiR2xuYUhRdWNHNW5JanNnWm1sc1pXNWhiV1VxUFZWVVJpMDRKeWRzYjJkdkxXeHBaMmgwTG5CdVp3WTdCbFE2RVdOdmJuUmxiblJmZEhsd1pVa2lEbWx0WVdkbEwzQnVad1k3QmxRNkVYTmxjblpwWTJWZmJtRnRaVG9LYkc5allXdz0iLCJleHAiOiIyMDI0LTExLTE1VDE5OjE5OjAzLjg1MVoiLCJwdXIiOiJibG9iX2tleSJ9fQ==--b02ca9845382f3da6c7bead3de3f034406f1747b/logo-light.png\"\n            }\n        },\n        {\n            \"id\": 2,\n            \"title\": \"Organic coffee shop looking for a barista\",\n            \"position\": \"Barista\",\n            \"key_skills\": \"Barista, Coffee, Customer Service\",\n            \"job_type\": \"Food\",\n            \"job_slug\": \"72f6d01e-55e5-4fa7-97dd-65af26494695\",\n            \"job_status\": \"listed\",\n            \"activity_status\": 1,\n            \"referrer_url\": \"https://embloy.com/\",\n            \"salary\": 18,\n            \"currency\": \"USD\",\n            \"euro_salary\": null,\n            \"start_slot\": \"2042-10-02T20:42:42.356Z\",\n            \"duration\": 20,\n            \"code_lang\": null,\n            \"longitude\": 11.613942994844358,\n            \"latitude\": 48.1951076,\n            \"country_code\": null,\n            \"postal_code\": null,\n            \"city\": null,\n            \"address\": null,\n            \"view_count\": 0,\n            \"applications_count\": 0,\n            \"created_at\": \"2024-11-15T15:20:35.491Z\",\n            \"updated_at\": \"2024-11-15T15:20:36.334Z\",\n            \"image_url\": null,\n            \"description\": {\n                \"id\": 5,\n                \"name\": \"description\",\n                \"body\": \"<div>Work in the greatest espresso bar in town and make making others happy your paid job!</div>\",\n                \"record_type\": \"Job\",\n                \"record_id\": 2,\n                \"created_at\": \"2024-11-15T15:20:36.306Z\",\n                \"updated_at\": \"2024-11-15T15:20:36.306Z\"\n            },\n            \"employer\": {\n                \"employer_email\": \"info@embloy.com\",\n                \"employer_name\": \"Embloy Platforms\",\n                \"employer_phone\": \"004912345678910\",\n                \"employer_image_url\": \"http://localhost:3000/rails/active_storage/disk/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaDdDVG9JYTJWNVNTSWhNblZqT0dGb2JqaG5lVE5qYVhobGFXZDBPR3A1YkRRMGEySmhkUVk2QmtWVU9oQmthWE53YjNOcGRHbHZia2tpUjJsdWJHbHVaVHNnWm1sc1pXNWhiV1U5SW14dloyOHRiR2xuYUhRdWNHNW5JanNnWm1sc1pXNWhiV1VxUFZWVVJpMDRKeWRzYjJkdkxXeHBaMmgwTG5CdVp3WTdCbFE2RVdOdmJuUmxiblJmZEhsd1pVa2lEbWx0WVdkbEwzQnVad1k3QmxRNkVYTmxjblpwWTJWZmJtRnRaVG9LYkc5allXdz0iLCJleHAiOiIyMDI0LTExLTE1VDE5OjE5OjAzLjg1OVoiLCJwdXIiOiJibG9iX2tleSJ9fQ==--e868d7ca618c239bd5e7605263181dc33f4005a9/logo-light.png\"\n            }\n        }\n    ]\n}"}],"_postman_id":"5b96ba65-0da2-4c0a-8b57-1a6d40065e4b"},{"name":"Load maps","id":"346404d6-7f8a-42a3-874b-de16264d1d0f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/maps?longitude=0&latitude=0","description":"<p>Returns job map (= jobs near the user's position: <code>longitude</code>, <code>latitude</code>)</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","maps"],"host":["https://api.embloy.com"],"query":[{"description":{"content":"<p>The longitute of the desired position.</p>\n","type":"text/plain"},"key":"longitude","value":"0"},{"description":{"content":"<p>The latitude of the desired position.</p>\n","type":"text/plain"},"key":"latitude","value":"0"}],"variable":[]}},"response":[{"id":"6fd2c9b5-a64b-4b8c-8f9e-42bc98653430","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.embloy.com/api/v0/maps?longitude=0&latitude=0","host":["https://api.embloy.com"],"path":["api","v0","maps"],"query":[{"key":"longitude","value":"0","description":"The longitute of the desired position."},{"key":"latitude","value":"0","description":"The latitude of the desired position."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"b5193f57c1d02edf8b87172a645a47e1\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"d3496ce7-637b-41ee-9a67-081e81ec6bdc"},{"key":"X-Runtime","value":"0.337582"},{"key":"Server-Timing","value":"cache_read.active_support;dur=0.21, cache_write.active_support;dur=0.13, start_processing.action_controller;dur=0.55, sql.active_record;dur=236.32, instantiation.active_record;dur=2.88, service_url.active_storage;dur=1.56, process_action.action_controller;dur=296.15"},{"key":"vary","value":"Origin"},{"key":"Content-Length","value":"1509"}],"cookie":[],"responseTime":null,"body":"{\n    \"jobs\": [\n        {\n            \"id\": 6,\n            \"title\": \"Organic coffee shop looking for a barista\",\n            \"position\": \"Barista\",\n            \"key_skills\": \"Barista, Coffee, Customer Service\",\n            \"job_type\": \"Food\",\n            \"job_slug\": \"44c382f2-c5d9-4e39-8843-f39ade63a756\",\n            \"job_status\": \"listed\",\n            \"activity_status\": 1,\n            \"referrer_url\": \"https://embloy.com/\",\n            \"salary\": 18,\n            \"currency\": \"USD\",\n            \"euro_salary\": null,\n            \"start_slot\": \"2042-10-02T20:42:42.356Z\",\n            \"duration\": 20,\n            \"code_lang\": null,\n            \"longitude\": 11.613942994844358,\n            \"latitude\": 48.1951076,\n            \"country_code\": null,\n            \"postal_code\": null,\n            \"city\": null,\n            \"address\": null,\n            \"view_count\": 0,\n            \"applications_count\": 0,\n            \"created_at\": \"2024-11-15T16:02:35.523Z\",\n            \"updated_at\": \"2024-11-15T16:02:36.269Z\"\n        },\n        {\n            \"id\": 3,\n            \"title\": \"Organic coffee shop looking for a barista\",\n            \"position\": \"Barista\",\n            \"key_skills\": \"Barista, Coffee, Customer Service\",\n            \"job_type\": \"Food\",\n            \"job_slug\": \"23fc4850-c26d-4770-bf26-5864c47e0492\",\n            \"job_status\": \"listed\",\n            \"activity_status\": 1,\n            \"referrer_url\": \"https://embloy.com/\",\n            \"salary\": 18,\n            \"currency\": \"USD\",\n            \"euro_salary\": null,\n            \"start_slot\": \"2042-10-02T20:42:42.356Z\",\n            \"duration\": 20,\n            \"code_lang\": null,\n            \"longitude\": 11.613942994844358,\n            \"latitude\": 48.1951076,\n            \"country_code\": null,\n            \"postal_code\": null,\n            \"city\": null,\n            \"address\": null,\n            \"view_count\": 0,\n            \"applications_count\": 0,\n            \"created_at\": \"2024-11-15T15:54:40.328Z\",\n            \"updated_at\": \"2024-11-15T15:54:41.085Z\"\n        },\n        {\n            \"id\": 10,\n            \"title\": \"Organic coffee shop looking for a barista\",\n            \"position\": \"Barista\",\n            \"key_skills\": \"Barista, Coffee, Customer Service\",\n            \"job_type\": \"Food\",\n            \"job_slug\": \"75d53abe-b292-4ee9-984e-06b987842d95\",\n            \"job_status\": \"listed\",\n            \"activity_status\": 1,\n            \"referrer_url\": \"https://embloy.com/\",\n            \"salary\": 18,\n            \"currency\": \"USD\",\n            \"euro_salary\": null,\n            \"start_slot\": \"2042-10-02T20:42:42.356Z\",\n            \"duration\": 20,\n            \"code_lang\": null,\n            \"longitude\": 11.613942994844358,\n            \"latitude\": 48.1951076,\n            \"country_code\": null,\n            \"postal_code\": null,\n            \"city\": null,\n            \"address\": null,\n            \"view_count\": 0,\n            \"applications_count\": 0,\n            \"created_at\": \"2024-11-15T16:02:40.947Z\",\n            \"updated_at\": \"2024-11-15T16:02:41.674Z\"\n        }\n    ]\n}"}],"_postman_id":"346404d6-7f8a-42a3-874b-de16264d1d0f"},{"name":"Get job","id":"c2661a5f-45ec-404f-81d6-f05b112ef1cc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/jobs/insert-your-job-id","description":"<p>The provided access token is first verified, and then the job is returned. (Only if the the user is authorized to access the resource and if the resource exists)</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","jobs","insert-your-job-id"],"host":["https://api.embloy.com"],"query":[],"variable":[]}},"response":[{"id":"b3e659cb-6141-4da6-a20c-f6700364c6a0","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/jobs/insert-your-job-id"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"fa65e404c6f9cc28860541944a6aed19\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"e7f7b38b-8804-448e-8064-0407b221409e"},{"key":"X-Runtime","value":"1.621849"},{"key":"Server-Timing","value":"cache_read.active_support;dur=0.22, cache_write.active_support;dur=0.11, start_processing.action_controller;dur=0.61, sql.active_record;dur=558.32, instantiation.active_record;dur=109.76, service_url.active_storage;dur=3.68, process_action.action_controller;dur=824.21"},{"key":"vary","value":"Origin"},{"key":"Content-Length","value":"5116"}],"cookie":[],"responseTime":null,"body":"{\n    \"job\": {\n        \"id\": 2,\n        \"title\": \"Organic coffee shop looking for a barista\",\n        \"position\": \"Barista\",\n        \"key_skills\": \"Barista, Coffee, Customer Service\",\n        \"job_type\": \"Food\",\n        \"job_slug\": \"72f6d01e-55e5-4fa7-97dd-65af26494695\",\n        \"job_status\": \"listed\",\n        \"activity_status\": 1,\n        \"referrer_url\": \"https://embloy.com/\",\n        \"salary\": 18,\n        \"currency\": \"USD\",\n        \"euro_salary\": null,\n        \"start_slot\": \"2042-10-02T20:42:42.356Z\",\n        \"duration\": 20,\n        \"code_lang\": null,\n        \"longitude\": 11.613942994844358,\n        \"latitude\": 48.1951076,\n        \"country_code\": null,\n        \"postal_code\": null,\n        \"city\": null,\n        \"address\": null,\n        \"view_count\": 0,\n        \"applications_count\": 0,\n        \"created_at\": \"2024-11-15T15:20:35.491Z\",\n        \"updated_at\": \"2024-11-15T15:20:36.334Z\",\n        \"image_url\": null,\n        \"description\": {\n            \"id\": 5,\n            \"name\": \"description\",\n            \"body\": \"<div>Work in the greatest espresso bar in town and make making others happy your paid job!</div>\",\n            \"record_type\": \"Job\",\n            \"record_id\": 2,\n            \"created_at\": \"2024-11-15T15:20:36.306Z\",\n            \"updated_at\": \"2024-11-15T15:20:36.306Z\"\n        },\n        \"employer\": {\n            \"employer_email\": \"info@embloy.com\",\n            \"employer_name\": \"Embloy Platforms\",\n            \"employer_phone\": \"004912345678910\",\n            \"employer_image_url\": \"http://localhost:3000/rails/active_storage/disk/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaDdDVG9JYTJWNVNTSWhNblZqT0dGb2JqaG5lVE5qYVhobGFXZDBPR3A1YkRRMGEySmhkUVk2QmtWVU9oQmthWE53YjNOcGRHbHZia2tpUjJsdWJHbHVaVHNnWm1sc1pXNWhiV1U5SW14dloyOHRiR2xuYUhRdWNHNW5JanNnWm1sc1pXNWhiV1VxUFZWVVJpMDRKeWRzYjJkdkxXeHBaMmgwTG5CdVp3WTdCbFE2RVdOdmJuUmxiblJmZEhsd1pVa2lEbWx0WVdkbEwzQnVad1k3QmxRNkVYTmxjblpwWTJWZmJtRnRaVG9LYkc5allXdz0iLCJleHAiOiIyMDI0LTExLTE1VDE5OjIwOjEzLjU1NVoiLCJwdXIiOiJibG9iX2tleSJ9fQ==--a41277b7aaa16b7f4493b889c704e219e73f8ec5/logo-light.png\"\n        },\n        \"application_options\": [\n            {\n                \"id\": 1,\n                \"job_id\": 2,\n                \"ext_id\": \"embloy__ab53adff-e7d7-47e3-be24-9a6c80ffe446\",\n                \"question\": \"Did you ever work as a barista?\",\n                \"question_type\": \"yes_no\",\n                \"required\": true,\n                \"options\": [],\n                \"created_at\": \"2024-11-15T15:20:35.554Z\",\n                \"updated_at\": \"2024-11-15T15:20:35.554Z\",\n                \"deleted_at\": null\n            },\n            {\n                \"id\": 2,\n                \"job_id\": 2,\n                \"ext_id\": \"embloy__03df6ef9-b589-4aaf-b1be-a41eeae4ae3a\",\n                \"question\": \"If yes, where and for how long?\",\n                \"question_type\": \"long_text\",\n                \"required\": false,\n                \"options\": [],\n                \"created_at\": \"2024-11-15T15:20:35.610Z\",\n                \"updated_at\": \"2024-11-15T15:20:35.610Z\",\n                \"deleted_at\": null\n            },\n            {\n                \"id\": 3,\n                \"job_id\": 2,\n                \"ext_id\": \"embloy__f8e869c6-2f77-4c65-accf-3d00554d1257\",\n                \"question\": \"What is your favorite coffee?\",\n                \"question_type\": \"short_text\",\n                \"required\": true,\n                \"options\": [],\n                \"created_at\": \"2024-11-15T15:20:35.668Z\",\n                \"updated_at\": \"2024-11-15T15:20:35.668Z\",\n                \"deleted_at\": null\n            },\n            {\n                \"id\": 4,\n                \"job_id\": 2,\n                \"ext_id\": \"embloy__1772d194-552e-43bd-95da-e51b9edbc092\",\n                \"question\": \"How many cups of coffee do you drink per day?\",\n                \"question_type\": \"number\",\n                \"required\": true,\n                \"options\": [],\n                \"created_at\": \"2024-11-15T15:20:35.724Z\",\n                \"updated_at\": \"2024-11-15T15:20:35.724Z\",\n                \"deleted_at\": null\n            },\n            {\n                \"id\": 5,\n                \"job_id\": 2,\n                \"ext_id\": \"embloy__1a0f4293-3a10-436b-84f7-fc03930825a5\",\n                \"question\": \"What is the most important thing when preparing coffee?\",\n                \"question_type\": \"long_text\",\n                \"required\": true,\n                \"options\": [],\n                \"created_at\": \"2024-11-15T15:20:35.784Z\",\n                \"updated_at\": \"2024-11-15T15:20:35.784Z\",\n                \"deleted_at\": null\n            },\n            {\n                \"id\": 6,\n                \"job_id\": 2,\n                \"ext_id\": \"embloy__7dbca07e-1672-4cb7-9b1a-ca6f31da8d00\",\n                \"question\": \"When did you last prepare coffee?\",\n                \"question_type\": \"date\",\n                \"required\": false,\n                \"options\": [],\n                \"created_at\": \"2024-11-15T15:20:35.840Z\",\n                \"updated_at\": \"2024-11-15T15:20:35.840Z\",\n                \"deleted_at\": null\n            },\n            {\n                \"id\": 7,\n                \"job_id\": 2,\n                \"ext_id\": \"embloy__0d00738a-82b7-42b5-82c6-17d631ff8f09\",\n                \"question\": \"Provide a link to a video of you preparing coffee.\",\n                \"question_type\": \"link\",\n                \"required\": false,\n                \"options\": [],\n                \"created_at\": \"2024-11-15T15:20:35.892Z\",\n                \"updated_at\": \"2024-11-15T15:20:35.892Z\",\n                \"deleted_at\": null\n            },\n            {\n                \"id\": 8,\n                \"job_id\": 2,\n                \"ext_id\": \"embloy__aee562a1-5809-4002-be0f-002ec8023528\",\n                \"question\": \"Should Capuccino be served after 11am?\",\n                \"question_type\": \"multiple_choice\",\n                \"required\": true,\n                \"options\": [\n                    \"No way, it should be illegal\",\n                    \"Yes, but for italians it should remain a crime\",\n                    \"Yes, it's a free world\",\n                    \"Is it 11am already?\"\n                ],\n                \"created_at\": \"2024-11-15T15:20:35.945Z\",\n                \"updated_at\": \"2024-11-15T15:20:35.945Z\",\n                \"deleted_at\": null\n            },\n            {\n                \"id\": 9,\n                \"job_id\": 2,\n                \"ext_id\": \"embloy__43d3671d-a254-4cca-956b-86bc7f60a281\",\n                \"question\": \"Are you addicted to coffee?\",\n                \"question_type\": \"single_choice\",\n                \"required\": true,\n                \"options\": [\n                    \"Yes\",\n                    \"No\",\n                    \"Maybe...\",\n                    \"I can neither confirm nor deny.\"\n                ],\n                \"created_at\": \"2024-11-15T15:20:36.046Z\",\n                \"updated_at\": \"2024-11-15T15:20:36.046Z\",\n                \"deleted_at\": null\n            },\n            {\n                \"id\": 10,\n                \"job_id\": 2,\n                \"ext_id\": \"embloy__98f02371-ae26-49fe-ba58-8ba95e468211\",\n                \"question\": \"Upload your CV\",\n                \"question_type\": \"file\",\n                \"required\": false,\n                \"options\": [\n                    \"pdf\"\n                ],\n                \"created_at\": \"2024-11-15T15:20:36.110Z\",\n                \"updated_at\": \"2024-11-15T15:20:36.110Z\",\n                \"deleted_at\": null\n            },\n            {\n                \"id\": 11,\n                \"job_id\": 2,\n                \"ext_id\": \"embloy__9957ca0a-f3a0-4199-b2de-dc07376153f9\",\n                \"question\": \"Upload an image of a perfect Espresso\",\n                \"question_type\": \"file\",\n                \"required\": false,\n                \"options\": [\n                    \"svg\",\n                    \"png\",\n                    \"jpeg\",\n                    \"jpg\"\n                ],\n                \"created_at\": \"2024-11-15T15:20:36.176Z\",\n                \"updated_at\": \"2024-11-15T15:20:36.176Z\",\n                \"deleted_at\": null\n            },\n            {\n                \"id\": 12,\n                \"job_id\": 2,\n                \"ext_id\": \"embloy__eea0876f-5e2b-49b6-bb6c-3d77470b3fd9\",\n                \"question\": \"Upload a video of you preparing coffee\",\n                \"question_type\": \"file\",\n                \"required\": false,\n                \"options\": [\n                    \"mp4\",\n                    \"avi\",\n                    \"mov\"\n                ],\n                \"created_at\": \"2024-11-15T15:20:36.229Z\",\n                \"updated_at\": \"2024-11-15T15:20:36.229Z\",\n                \"deleted_at\": null\n            }\n        ]\n    }\n}"}],"_postman_id":"c2661a5f-45ec-404f-81d6-f05b112ef1cc"},{"name":"Synchronize ATS jobs","id":"6a6e9660-2216-4cf9-9f96-fd73cbbd0e62","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://api.embloy.com/api/v0/jobs/sync/:source","description":"<p>Trigger a synchronization of a your jobs which are hosted on a third party ATS. This endpoint needs to be triggered manually, unless the ATS provides a webhook for job synchronization.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","jobs","sync",":source"],"host":["https://api.embloy.com"],"query":[],"variable":[{"id":"596d8e25-1251-4a2e-b2a2-83edf4e620ad","description":{"content":"<p>ATS name (e.g. 'lever', 'ashby', 'softgarden',...)</p>\n","type":"text/plain"},"type":"any","value":"lever","key":"source"}]}},"response":[{"id":"35020ee9-e4e9-49ae-a490-55d12c3480f8","name":"200 OK","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://api.embloy.com/api/v0/jobs/sync/:source","host":["https://api.embloy.com"],"path":["api","v0","jobs","sync",":source"],"variable":[{"key":"source","value":"lever","description":"ATS name (e.g. 'lever', 'ashby', 'softgarden',...)"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Synchronization successful!\"\n}"}],"_postman_id":"6a6e9660-2216-4cf9-9f96-fd73cbbd0e62"},{"name":"Create job","id":"7eb0d02b-4651-4024-8ffb-63a0fd7bfc41","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"title\": \"Organic coffee shop looking for a barista\",\n  \"job_type\": \"Food\",\n  \"referrer_url\": \"https://embloy.com/\",\n  \"start_slot\": \"2042-10-02T20:42:42.356Z\",\n  \"position\": \"Barista\",\n  \"key_skills\": \"Barista, Coffee, Customer Service\",\n  \"duration\": 20,\n  \"salary\": 18,\n  \"description\": \"<div>Work in the greatest espresso bar in town and make making others happy your paid job!</div>\",\n  \"job_status\": \"listed\",\n  \"longitude\": 11.613942994844358,\n  \"latitude\": 48.1951076,\n  \"job_notifications\": 1,\n  \"currency\": \"USD\"\n  }","options":{"raw":{"language":"json"}}},"url":"https://api.embloy.com/api/v0/jobs","description":"<p>The provided access token is first verified, and then a new job is created. Upon creation, a job is listed as public. Public jobs undergo evaluation by Embloy's Job Ranking Engine and may appear in a user's individual job feed. Moreover, such jobs are open to applications from interested candidates. The job creator/owner or correspondingly authorized users correspondingly authorized users are able to limit the visibility of the job to \"private\". Private jobs are ignored by the Job Ranking Engine and so do not appear to any job seeking user.</p>\n<p>The user can customize how the application process should look like by specifying <code>application_options_attributes</code>. Read more on that in the <a href=\"https://developers.embloy.com/docs/core/jobs/create_jobs\">developers documentation</a>.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","jobs"],"host":["https://api.embloy.com"],"query":[],"variable":[]}},"response":[{"id":"83afb18a-6875-46ed-91ce-2e0376a147d0","name":"201 Created","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"title\": \"Organic coffee shop looking for a barista\",\n  \"job_type\": \"Food\",\n  \"referrer_url\": \"https://embloy.com/\",\n  \"start_slot\": \"2042-10-02T20:42:42.356Z\",\n  \"position\": \"Barista\",\n  \"key_skills\": \"Barista, Coffee, Customer Service\",\n  \"duration\": 20,\n  \"salary\": 18,\n  \"description\": \"<div>Work in the greatest espresso bar in town and make making others happy your paid job!</div>\",\n  \"job_status\": \"listed\",\n  \"longitude\": 11.613942994844358,\n  \"latitude\": 48.1951076,\n  \"job_notifications\": 1,\n  \"currency\": \"USD\",\n  \"application_options_attributes\": [\n    {\n      \"question\": \"Did you ever work as a barista?\",\n      \"question_type\": \"yes_no\",\n      \"required\": true,\n      \"options\": []\n    },\n    {\n      \"question\": \"If yes, where and for how long?\",\n      \"question_type\": \"long_text\",\n      \"required\": false\n    },\n    {\n      \"question\": \"What is your favorite coffee?\",\n      \"question_type\": \"short_text\",\n      \"required\": true\n    },\n    {\n      \"question\": \"How many cups of coffee do you drink per day?\",\n      \"question_type\": \"number\",\n      \"required\": true\n    },\n    {\n      \"question\": \"What is the most important thing when preparing coffee?\",\n      \"question_type\": \"long_text\",\n      \"required\": true\n    },\n    { \n      \"question\": \"When did you last prepare coffee?\",\n      \"question_type\": \"date\",\n      \"required\": false\n    },\n    {\n      \"question\": \"Provide a link to a video of you preparing coffee.\",\n      \"question_type\": \"link\",\n      \"required\": false\n    },\n    {\n      \"question\": \"Should Capuccino be served after 11am?\",\n      \"question_type\": \"multiple_choice\",\n      \"required\": true,\n      \"options\": [\n        \"No way, it should be illegal\",\n        \"Yes, but for italians it should remain a crime\",\n        \"Yes, it's a free world\",\n        \"Is it 11am already?\"\n      ]\n    },\n    {\n      \"question\": \"Are you addicted to coffee?\",\n      \"question_type\": \"single_choice\",\n      \"required\": true,\n      \"options\": [\n        \"Yes\",\n        \"No\",\n        \"Maybe...\",\n        \"I can neither confirm nor deny.\"\n      ]\n    },\n    {\n      \"question\": \"Upload your CV\",\n      \"question_type\": \"file\",\n      \"required\": false\n    },\n    {\n      \"question\": \"Upload an image of a perfect Espresso\",\n      \"question_type\": \"file\",\n      \"required\": false,\n      \"options\": [\"svg\", \"png\", \"jpeg\", \"jpg\"]\n    },\n    {\n      \"question\": \"Upload a video of you preparing coffee\",\n      \"question_type\": \"file\",\n      \"required\": false,\n      \"options\": [\"mp4\", \"avi\", \"mov\"]\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.embloy.com/api/v0/jobs"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"567e5631a94e00c7c6461422a4a9c7df\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"dccd7ae7-52ce-4e69-88e2-f5b84081ec62"},{"key":"X-Runtime","value":"2.670603"},{"key":"Server-Timing","value":"cache_read.active_support;dur=0.16, cache_write.active_support;dur=0.12, start_processing.action_controller;dur=1.04, sql.active_record;dur=1524.18, instantiation.active_record;dur=19.10, render_partial.action_view;dur=6.61, service_url.active_storage;dur=4.24, process_action.action_controller;dur=2549.26"},{"key":"vary","value":"Origin"},{"key":"Content-Length","value":"4866"}],"cookie":[],"responseTime":null,"body":"{\n    \"job\": {\n        \"id\": 19,\n        \"title\": \"Organic coffee shop looking for a barista\",\n        \"position\": \"Barista\",\n        \"key_skills\": \"Barista, Coffee, Customer Service\",\n        \"job_type\": \"Food\",\n        \"job_slug\": \"dae91130-d943-4576-972e-fa5e05d6eb57\",\n        \"job_status\": \"listed\",\n        \"activity_status\": 1,\n        \"referrer_url\": \"https://embloy.com/\",\n        \"salary\": 18,\n        \"currency\": \"USD\",\n        \"euro_salary\": null,\n        \"start_slot\": \"2042-10-02T20:42:42.356Z\",\n        \"duration\": 20,\n        \"code_lang\": null,\n        \"longitude\": 11.613942994844358,\n        \"latitude\": 48.1951076,\n        \"country_code\": null,\n        \"postal_code\": null,\n        \"city\": null,\n        \"address\": null,\n        \"view_count\": 0,\n        \"applications_count\": 0,\n        \"created_at\": \"2024-11-15T19:15:31.483Z\",\n        \"updated_at\": \"2024-11-15T19:15:32.256Z\",\n        \"image_url\": null,\n        \"employer\": {\n            \"employer_email\": \"info@embloy.com\",\n            \"employer_name\": \"Embloy Platforms\",\n            \"employer_phone\": \"004912345678910\",\n            \"employer_image_url\": \"http://localhost:3000/rails/active_storage/disk/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaDdDVG9JYTJWNVNTSWhNblZqT0dGb2JqaG5lVE5qYVhobGFXZDBPR3A1YkRRMGEySmhkUVk2QmtWVU9oQmthWE53YjNOcGRHbHZia2tpUjJsdWJHbHVaVHNnWm1sc1pXNWhiV1U5SW14dloyOHRiR2xuYUhRdWNHNW5JanNnWm1sc1pXNWhiV1VxUFZWVVJpMDRKeWRzYjJkdkxXeHBaMmgwTG5CdVp3WTdCbFE2RVdOdmJuUmxiblJmZEhsd1pVa2lEbWx0WVdkbEwzQnVad1k3QmxRNkVYTmxjblpwWTJWZmJtRnRaVG9LYkc5allXdz0iLCJleHAiOiIyMDI0LTExLTE1VDE5OjIwOjMyLjU4OVoiLCJwdXIiOiJibG9iX2tleSJ9fQ==--0f88a9b20907f2a8d835d461e82f43dc42bc2912/logo-light.png\"\n        },\n        \"application_options\": [\n            {\n                \"id\": 205,\n                \"job_id\": 19,\n                \"ext_id\": \"embloy__2b57ccc1-013f-4572-8be7-cc4b6722799d\",\n                \"question\": \"Did you ever work as a barista?\",\n                \"question_type\": \"yes_no\",\n                \"required\": true,\n                \"options\": [],\n                \"created_at\": \"2024-11-15T19:15:31.542Z\",\n                \"updated_at\": \"2024-11-15T19:15:31.542Z\",\n                \"deleted_at\": null\n            },\n            {\n                \"id\": 206,\n                \"job_id\": 19,\n                \"ext_id\": \"embloy__1f7854b1-d55b-4d3e-87a2-71f945523eda\",\n                \"question\": \"If yes, where and for how long?\",\n                \"question_type\": \"long_text\",\n                \"required\": false,\n                \"options\": [],\n                \"created_at\": \"2024-11-15T19:15:31.613Z\",\n                \"updated_at\": \"2024-11-15T19:15:31.613Z\",\n                \"deleted_at\": null\n            },\n            {\n                \"id\": 207,\n                \"job_id\": 19,\n                \"ext_id\": \"embloy__25de20dc-1e3f-4ce9-af42-4d2a45b13d01\",\n                \"question\": \"What is your favorite coffee?\",\n                \"question_type\": \"short_text\",\n                \"required\": true,\n                \"options\": [],\n                \"created_at\": \"2024-11-15T19:15:31.684Z\",\n                \"updated_at\": \"2024-11-15T19:15:31.684Z\",\n                \"deleted_at\": null\n            },\n            {\n                \"id\": 208,\n                \"job_id\": 19,\n                \"ext_id\": \"embloy__25456dfa-a48d-4ac7-aad7-912ef6c09687\",\n                \"question\": \"How many cups of coffee do you drink per day?\",\n                \"question_type\": \"number\",\n                \"required\": true,\n                \"options\": [],\n                \"created_at\": \"2024-11-15T19:15:31.740Z\",\n                \"updated_at\": \"2024-11-15T19:15:31.740Z\",\n                \"deleted_at\": null\n            },\n            {\n                \"id\": 209,\n                \"job_id\": 19,\n                \"ext_id\": \"embloy__b8f040e0-9c4f-4168-ad4a-a0c39d91736e\",\n                \"question\": \"What is the most important thing when preparing coffee?\",\n                \"question_type\": \"long_text\",\n                \"required\": true,\n                \"options\": [],\n                \"created_at\": \"2024-11-15T19:15:31.790Z\",\n                \"updated_at\": \"2024-11-15T19:15:31.790Z\",\n                \"deleted_at\": null\n            },\n            {\n                \"id\": 210,\n                \"job_id\": 19,\n                \"ext_id\": \"embloy__4ec3520a-884e-4fcf-a9b9-4bd66b864f37\",\n                \"question\": \"When did you last prepare coffee?\",\n                \"question_type\": \"date\",\n                \"required\": false,\n                \"options\": [],\n                \"created_at\": \"2024-11-15T19:15:31.852Z\",\n                \"updated_at\": \"2024-11-15T19:15:31.852Z\",\n                \"deleted_at\": null\n            },\n            {\n                \"id\": 211,\n                \"job_id\": 19,\n                \"ext_id\": \"embloy__55af2711-e82c-4ab6-b232-6ecd3915b733\",\n                \"question\": \"Provide a link to a video of you preparing coffee.\",\n                \"question_type\": \"link\",\n                \"required\": false,\n                \"options\": [],\n                \"created_at\": \"2024-11-15T19:15:31.912Z\",\n                \"updated_at\": \"2024-11-15T19:15:31.912Z\",\n                \"deleted_at\": null\n            },\n            {\n                \"id\": 212,\n                \"job_id\": 19,\n                \"ext_id\": \"embloy__ccb15b98-d1cc-4ff8-9dc0-f6b0670a0427\",\n                \"question\": \"Should Capuccino be served after 11am?\",\n                \"question_type\": \"multiple_choice\",\n                \"required\": true,\n                \"options\": [\n                    \"No way, it should be illegal\",\n                    \"Yes, but for italians it should remain a crime\",\n                    \"Yes, it's a free world\",\n                    \"Is it 11am already?\"\n                ],\n                \"created_at\": \"2024-11-15T19:15:31.962Z\",\n                \"updated_at\": \"2024-11-15T19:15:31.962Z\",\n                \"deleted_at\": null\n            },\n            {\n                \"id\": 213,\n                \"job_id\": 19,\n                \"ext_id\": \"embloy__ece07401-efa5-45e5-b6af-823b9031338e\",\n                \"question\": \"Are you addicted to coffee?\",\n                \"question_type\": \"single_choice\",\n                \"required\": true,\n                \"options\": [\n                    \"Yes\",\n                    \"No\",\n                    \"Maybe...\",\n                    \"I can neither confirm nor deny.\"\n                ],\n                \"created_at\": \"2024-11-15T19:15:32.018Z\",\n                \"updated_at\": \"2024-11-15T19:15:32.018Z\",\n                \"deleted_at\": null\n            },\n            {\n                \"id\": 214,\n                \"job_id\": 19,\n                \"ext_id\": \"embloy__cb6de643-57ec-4227-958e-bf1285167c2f\",\n                \"question\": \"Upload your CV\",\n                \"question_type\": \"file\",\n                \"required\": false,\n                \"options\": [\n                    \"pdf\"\n                ],\n                \"created_at\": \"2024-11-15T19:15:32.075Z\",\n                \"updated_at\": \"2024-11-15T19:15:32.075Z\",\n                \"deleted_at\": null\n            },\n            {\n                \"id\": 215,\n                \"job_id\": 19,\n                \"ext_id\": \"embloy__7d015de5-6330-4828-b55a-1bfc3ad6c814\",\n                \"question\": \"Upload an image of a perfect Espresso\",\n                \"question_type\": \"file\",\n                \"required\": false,\n                \"options\": [\n                    \"svg\",\n                    \"png\",\n                    \"jpeg\",\n                    \"jpg\"\n                ],\n                \"created_at\": \"2024-11-15T19:15:32.122Z\",\n                \"updated_at\": \"2024-11-15T19:15:32.122Z\",\n                \"deleted_at\": null\n            },\n            {\n                \"id\": 216,\n                \"job_id\": 19,\n                \"ext_id\": \"embloy__f6a975f3-6afb-41a5-847a-fbe4cd4ad31d\",\n                \"question\": \"Upload a video of you preparing coffee\",\n                \"question_type\": \"file\",\n                \"required\": false,\n                \"options\": [\n                    \"mp4\",\n                    \"avi\",\n                    \"mov\"\n                ],\n                \"created_at\": \"2024-11-15T19:15:32.174Z\",\n                \"updated_at\": \"2024-11-15T19:15:32.174Z\",\n                \"deleted_at\": null\n            }\n        ]\n    }\n}"},{"id":"27123119-7e84-42e1-b3fd-b683e64904de","name":"400 Bad Request","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"title\": \"Organic coffee shop looking for a barista\",\n    \"job_type\": \"Food\",\n    \"referrer_url\": \"https://embloy.com/\",\n    \"start_slot\": \"2042-10-02T20:42:42.356Z\",\n    \"position\": \"Barista\",\n    \"key_skills\": \"Barista, Coffee, Customer Service\",\n    \"duration\": 20,\n    \"salary\": 18,\n    \"description\": \"<div>Work in the greatest espresso bar in town and make making others happy your paid job!</div>\",\n    \"job_status\": \"listed\",\n    \"longitude\": 11.613942994844358,\n    \"latitude\": 48.1951076,\n    \"job_notifications\": 1,\n    \"currency\": \"USD\",\n    \"application_options_attributes\": [\n        {\n            \"question\": \"Did you ever work as a barista?\",\n            \"question_type\": \"yes_no\",\n            \"required\": true,\n            \"options\": []\n        },\n        {\n            \"question\": \"If yes, where and for how long?\",\n            \"question_type\": \"long_text\",\n            \"required\": false\n        },\n        {\n            \"question\": \"What is your favorite coffee?\",\n            \"question_type\": \"short_text\",\n            \"required\": true\n        },\n        {\n            \"question\": \"How many cups of coffee do you drink per day?\",\n            \"question_type\": \"number\",\n            \"required\": true\n        },\n        {\n            \"question\": \"What is the most important thing when preparing coffee?\",\n            \"question_type\": \"long_text\",\n            \"required\": true\n        },\n        {\n            \"question\": \"When did you last prepare coffee?\",\n            \"question_type\": \"date\",\n            \"required\": false\n        },\n        {\n            \"question\": \"Provide a link to a video of you preparing coffee.\",\n            \"question_type\": \"link\",\n            \"required\": false\n        },\n        {\n            \"question\": \"Should Capuccino be served after 11am?\",\n            \"question_type\": \"multiple_choice\",\n            \"required\": true,\n            \"options\": [\n                \"No way, it should be illegal\",\n                \"Yes, but for italians it should remain a crime\",\n                \"Yes, it's a free world\",\n                \"Is it 11am already?\"\n            ]\n        },\n        {\n            \"question\": \"Are you addicted to coffee?\",\n            \"question_type\": \"single_choice\",\n            \"required\": true,\n            \"options\": [\n                \"Yes\",\n                \"No\",\n                \"Maybe...\",\n                \"I can neither confirm nor deny.\"\n            ]\n        },\n        {\n            \"question\": \"Upload your CV\",\n            \"question_type\": \"file\",\n            \"required\": false\n        },\n        {\n            \"question\": \"Upload an image of a perfect Espresso\",\n            \"question_type\": \"file\",\n            \"required\": false,\n            \"options\": [\n                \"svg\",\n                \"png\",\n                \"jpeg\",\n                \"jpg\"\n            ]\n        },\n        {\n            \"question\": \"Upload a video of you preparing coffee\",\n            \"question_type\": \"file\",\n            \"required\": false,\n            \"options\": [\n                \"mp4\",\n                \"avi\",\n                \"mov\"\n            ]\n        },\n        {\n            \"question\": \"Upload a video of you preparing coffee\",\n            \"question_type\": \"file\",\n            \"required\": false,\n            \"options\": [\n                \"mp4\",\n                \"avi\",\n                \"mov\"\n            ]\n        },\n        {\n            \"question\": \"Upload a video of you preparing coffee\",\n            \"question_type\": \"file\",\n            \"required\": false,\n            \"options\": [\n                \"mp4\",\n                \"avi\",\n                \"mov\"\n            ]\n        },\n        {\n            \"question\": \"Upload a video of you preparing coffee\",\n            \"question_type\": \"file\",\n            \"required\": false,\n            \"options\": [\n                \"mp4\",\n                \"avi\",\n                \"mov\"\n            ]\n        },\n        {\n            \"question\": \"Upload a video of you preparing coffee\",\n            \"question_type\": \"file\",\n            \"required\": false,\n            \"options\": [\n                \"mp4\",\n                \"avi\",\n                \"mov\"\n            ]\n        },\n        {\n            \"question\": \"Upload a video of you preparing coffee\",\n            \"question_type\": \"file\",\n            \"required\": false,\n            \"options\": [\n                \"mp4\",\n                \"avi\",\n                \"mov\"\n            ]\n        },\n        {\n            \"question\": \"Upload a video of you preparing coffee\",\n            \"question_type\": \"file\",\n            \"required\": false,\n            \"options\": [\n                \"mp4\",\n                \"avi\",\n                \"mov\"\n            ]\n        },\n        {\n            \"question\": \"Upload a video of you preparing coffee\",\n            \"question_type\": \"file\",\n            \"required\": false,\n            \"options\": [\n                \"mp4\",\n                \"avi\",\n                \"mov\"\n            ]\n        },\n        {\n            \"question\": \"Upload a video of you preparing coffee\",\n            \"question_type\": \"file\",\n            \"required\": false,\n            \"options\": [\n                \"mp4\",\n                \"avi\",\n                \"mov\"\n            ]\n        },\n        {\n            \"question\": \"Upload a video of you preparing coffee\",\n            \"question_type\": \"file\",\n            \"required\": false,\n            \"options\": [\n                \"mp4\",\n                \"avi\",\n                \"mov\"\n            ]\n        },\n        {\n            \"question\": \"Upload a video of you preparing coffee\",\n            \"question_type\": \"file\",\n            \"required\": false,\n            \"options\": [\n                \"mp4\",\n                \"avi\",\n                \"mov\"\n            ]\n        },\n        {\n            \"question\": \"Upload a video of you preparing coffee\",\n            \"question_type\": \"file\",\n            \"required\": false,\n            \"options\": [\n                \"mp4\",\n                \"avi\",\n                \"mov\"\n            ]\n        },\n        {\n            \"question\": \"Upload a video of you preparing coffee\",\n            \"question_type\": \"file\",\n            \"required\": false,\n            \"options\": [\n                \"mp4\",\n                \"avi\",\n                \"mov\"\n            ]\n        },\n        {\n            \"question\": \"Upload a video of you preparing coffee\",\n            \"question_type\": \"file\",\n            \"required\": false,\n            \"options\": [\n                \"mp4\",\n                \"avi\",\n                \"mov\"\n            ]\n        },\n        {\n            \"question\": \"Upload a video of you preparing coffee\",\n            \"question_type\": \"file\",\n            \"required\": false,\n            \"options\": [\n                \"mp4\",\n                \"avi\",\n                \"mov\"\n            ]\n        },\n        {\n            \"question\": \"Upload a video of you preparing coffee\",\n            \"question_type\": \"file\",\n            \"required\": false,\n            \"options\": [\n                \"mp4\",\n                \"avi\",\n                \"mov\"\n            ]\n        },\n        {\n            \"question\": \"Upload a video of you preparing coffee\",\n            \"question_type\": \"file\",\n            \"required\": false,\n            \"options\": [\n                \"mp4\",\n                \"avi\",\n                \"mov\"\n            ]\n        },\n        {\n            \"question\": \"Upload a video of you preparing coffee\",\n            \"question_type\": \"file\",\n            \"required\": false,\n            \"options\": [\n                \"mp4\",\n                \"avi\",\n                \"mov\"\n            ]\n        },\n        {\n            \"question\": \"Upload a video of you preparing coffee\",\n            \"question_type\": \"file\",\n            \"required\": false,\n            \"options\": [\n                \"mp4\",\n                \"avi\",\n                \"mov\"\n            ]\n        },\n        {\n            \"question\": \"Upload a video of you preparing coffee\",\n            \"question_type\": \"file\",\n            \"required\": false,\n            \"options\": [\n                \"mp4\",\n                \"avi\",\n                \"mov\"\n            ]\n        },\n        {\n            \"question\": \"Upload a video of you preparing coffee\",\n            \"question_type\": \"file\",\n            \"required\": false,\n            \"options\": [\n                \"mp4\",\n                \"avi\",\n                \"mov\"\n            ]\n        },\n        {\n            \"question\": \"Upload a video of you preparing coffee\",\n            \"question_type\": \"file\",\n            \"required\": false,\n            \"options\": [\n                \"mp4\",\n                \"avi\",\n                \"mov\"\n            ]\n        },\n        {\n            \"question\": \"Upload a video of you preparing coffee\",\n            \"question_type\": \"file\",\n            \"required\": false,\n            \"options\": [\n                \"mp4\",\n                \"avi\",\n                \"mov\"\n            ]\n        },\n        {\n            \"question\": \"Upload a video of you preparing coffee\",\n            \"question_type\": \"file\",\n            \"required\": false,\n            \"options\": [\n                \"mp4\",\n                \"avi\",\n                \"mov\"\n            ]\n        },\n        {\n            \"question\": \"Upload a video of you preparing coffee\",\n            \"question_type\": \"file\",\n            \"required\": false,\n            \"options\": [\n                \"mp4\",\n                \"avi\",\n                \"mov\"\n            ]\n        },\n        {\n            \"question\": \"Upload a video of you preparing coffee\",\n            \"question_type\": \"file\",\n            \"required\": false,\n            \"options\": [\n                \"mp4\",\n                \"avi\",\n                \"mov\"\n            ]\n        },\n        {\n            \"question\": \"Upload a video of you preparing coffee\",\n            \"question_type\": \"file\",\n            \"required\": false,\n            \"options\": [\n                \"mp4\",\n                \"avi\",\n                \"mov\"\n            ]\n        },\n        {\n            \"question\": \"Upload a video of you preparing coffee\",\n            \"question_type\": \"file\",\n            \"required\": false,\n            \"options\": [\n                \"mp4\",\n                \"avi\",\n                \"mov\"\n            ]\n        },\n        {\n            \"question\": \"Upload a video of you preparing coffee\",\n            \"question_type\": \"file\",\n            \"required\": false,\n            \"options\": [\n                \"mp4\",\n                \"avi\",\n                \"mov\"\n            ]\n        },\n        {\n            \"question\": \"Upload a video of you preparing coffee\",\n            \"question_type\": \"file\",\n            \"required\": false,\n            \"options\": [\n                \"mp4\",\n                \"avi\",\n                \"mov\"\n            ]\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.embloy.com/api/v0/jobs"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"options\": [\n        {\n            \"error\": \"At most 25 options can be set\"\n        }\n    ]\n}"},{"id":"a57261f8-a3c7-4425-a06c-b59fe9474d43","name":"400 Bad Request","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"title\": \"Organic coffee shop looking for a barista\",\n  \"job_type\": \"Food\",\n  \"referrer_url\": \"https://embloy.com/\",\n  \"start_slot\": \"2042-10-02T20:42:42.356Z\",\n  \"position\": \"Barista\",\n  \"key_skills\": \"Barista, Coffee, Customer Service\",\n  \"duration\": 20,\n  \"salary\": 18,\n  \"description\": \"<div>Work in the greatest espresso bar in town and make making others happy your paid job!</div>\",\n  \"job_status\": \"listed\",\n  \"longitude\": 11.613942994844358,\n  \"latitude\": 48.1951076,\n  \"job_notifications\": 1,\n  \"currency\": \"USD\",\n  \"application_options_attributes\": [\n    {\n      \"question\": \"Did you ever work as a barista?\",\n      \"question_type\": \"bool\",\n      \"required\": true,\n      \"options\": []\n    },\n    {\n      \"question\": \"If yes, where and for how long?\",\n      \"question_type\": \"text\",\n      \"required\": false\n    },\n    {\n      \"question\": \"What is your favorite coffee?\",\n      \"question_type\": \"question\",\n      \"required\": true\n    },\n    {\n      \"question\": \"How many cups of coffee do you drink per day?\",\n      \"question_type\": \"number\",\n      \"required\": true\n    },\n    {\n      \"question\": \"What is the most important thing when preparing coffee?\",\n      \"question_type\": \"long_text\",\n      \"required\": true\n    },\n    { \n      \"question\": \"When did you last prepare coffee?\",\n      \"question_type\": \"date\",\n      \"required\": false\n    },\n    {\n      \"question\": \"Provide a link to a video of you preparing coffee.\",\n      \"question_type\": \"link\",\n      \"required\": false\n    },\n    {\n      \"question\": \"Should Capuccino be served after 11am?\",\n      \"question_type\": \"multiple_choice\",\n      \"required\": true,\n      \"options\": [\n        \"No way, it should be illegal\",\n        \"Yes, but for italians it should remain a crime\",\n        \"Yes, it's a free world\",\n        \"Is it 11am already?\"\n      ]\n    },\n    {\n      \"question\": \"Are you addicted to coffee?\",\n      \"question_type\": \"single_choice\",\n      \"required\": true,\n      \"options\": [\n        \"Yes\",\n        \"No\",\n        \"Maybe...\",\n        \"I can neither confirm nor deny.\"\n      ]\n    },\n    {\n      \"question\": \"Upload your CV\",\n      \"question_type\": \"file\",\n      \"required\": false\n    },\n    {\n      \"question\": \"Upload an image of a perfect Espresso\",\n      \"question_type\": \"file\",\n      \"required\": false,\n      \"options\": [\"svg\", \"png\", \"jpeg\", \"jpg\"]\n    },\n    {\n      \"question\": \"Upload a video of you preparing coffee\",\n      \"question_type\": \"file\",\n      \"required\": false,\n      \"options\": [\"mp4\", \"avi\", \"mov\"]\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.embloy.com/api/v0/jobs"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"Invalid question_type: bool\"\n}"},{"id":"59aa4c2f-e338-4e53-b400-f1445dce69e8","name":"429 Too Many Requests","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"title\": \"Organic coffee shop looking for a barista\",\n  \"job_type\": \"Food\",\n  \"referrer_url\": \"https://embloy.com/\",\n  \"start_slot\": \"2042-10-02T20:42:42.356Z\",\n  \"position\": \"Barista\",\n  \"key_skills\": \"Barista, Coffee, Customer Service\",\n  \"duration\": 20,\n  \"salary\": 18,\n  \"description\": \"<div>Work in the greatest espresso bar in town and make making others happy your paid job!</div>\",\n  \"job_status\": \"listed\",\n  \"longitude\": 11.613942994844358,\n  \"latitude\": 48.1951076,\n  \"job_notifications\": 1,\n  \"currency\": \"USD\",\n  \"application_options_attributes\": [\n    {\n      \"question\": \"Did you ever work as a barista?\",\n      \"question_type\": \"yes_no\",\n      \"required\": true,\n      \"options\": []\n    },\n    {\n      \"question\": \"If yes, where and for how long?\",\n      \"question_type\": \"long_text\",\n      \"required\": false\n    },\n    {\n      \"question\": \"What is your favorite coffee?\",\n      \"question_type\": \"short_text\",\n      \"required\": true\n    },\n    {\n      \"question\": \"How many cups of coffee do you drink per day?\",\n      \"question_type\": \"number\",\n      \"required\": true\n    },\n    {\n      \"question\": \"What is the most important thing when preparing coffee?\",\n      \"question_type\": \"long_text\",\n      \"required\": true\n    },\n    { \n      \"question\": \"When did you last prepare coffee?\",\n      \"question_type\": \"date\",\n      \"required\": false\n    },\n    {\n      \"question\": \"Provide a link to a video of you preparing coffee.\",\n      \"question_type\": \"link\",\n      \"required\": false\n    },\n    {\n      \"question\": \"Should Capuccino be served after 11am?\",\n      \"question_type\": \"multiple_choice\",\n      \"required\": true,\n      \"options\": [\n        \"No way, it should be illegal\",\n        \"Yes, but for italians it should remain a crime\",\n        \"Yes, it's a free world\",\n        \"Is it 11am already?\"\n      ]\n    },\n    {\n      \"question\": \"Are you addicted to coffee?\",\n      \"question_type\": \"single_choice\",\n      \"required\": true,\n      \"options\": [\n        \"Yes\",\n        \"No\",\n        \"Maybe...\",\n        \"I can neither confirm nor deny.\"\n      ]\n    },\n    {\n      \"question\": \"Upload your CV\",\n      \"question_type\": \"file\",\n      \"required\": false\n    },\n    {\n      \"question\": \"Upload an image of a perfect Espresso\",\n      \"question_type\": \"file\",\n      \"required\": false,\n      \"options\": [\"svg\", \"png\", \"jpeg\", \"jpg\"]\n    },\n    {\n      \"question\": \"Upload a video of you preparing coffee\",\n      \"question_type\": \"file\",\n      \"required\": false,\n      \"options\": [\"mp4\", \"avi\", \"mov\"]\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.embloy.com/api/v0/jobs"},"status":"Too Many Requests","code":429,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"subscription\": [\n        {\n            \"error\": \"ERR_LIMIT\",\n            \"description\": \"You've reached the maximum number of allowed resources for your subscription type\"\n        }\n    ]\n}"}],"_postman_id":"7eb0d02b-4651-4024-8ffb-63a0fd7bfc41"},{"name":"Update job","id":"8917ff93-4b2b-486c-849b-a63e6d2b450e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"title\": \"Organic coffee shop looking for a barista\",\n    \"job_type\": \"Food\",\n    \"referrer_url\": \"https://embloy.com/\",\n    \"start_slot\": \"2042-10-02T20:42:42.356Z\",\n    \"position\": \"Barista\",\n    \"key_skills\": \"Barista, Coffee, Customer Service\",\n    \"duration\": 20,\n    \"salary\": 18,\n    \"description\": \"<div>Work in the greatest espresso bar in town and make making others happy your paid job!</div>\",\n    \"job_status\": \"listed\",\n    \"longitude\": 11.613942994844358,\n    \"latitude\": 48.1951076,\n    \"job_notifications\": 1,\n    \"currency\": \"USD\",\n    \"application_options_attributes\": [\n        {\n            \"question\": \"Is this working?\",\n            \"question_type\": \"yes_no\",\n            \"required\": true,\n            \"options\": []\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.embloy.com/api/v0/jobs/insert-your-job-id","description":"<p>The provided access token is first verified, and then an existing job is updated.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","jobs","insert-your-job-id"],"host":["https://api.embloy.com"],"query":[],"variable":[]}},"response":[{"id":"8080212f-4019-4f06-927d-4732dd199638","name":"200 OK","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"title\": \"Organic coffee shop looking for a barista\",\n    \"job_type\": \"Food\",\n    \"referrer_url\": \"https://embloy.com/\",\n    \"start_slot\": \"2042-10-02T20:42:42.356Z\",\n    \"position\": \"Barista\",\n    \"key_skills\": \"Barista, Coffee, Customer Service\",\n    \"duration\": 20,\n    \"salary\": 18,\n    \"description\": \"<div>Work in the greatest espresso bar in town and make making others happy your paid job!</div>\",\n    \"job_status\": \"listed\",\n    \"longitude\": 11.613942994844358,\n    \"latitude\": 48.1951076,\n    \"job_notifications\": 1,\n    \"currency\": \"USD\",\n    \"application_options_attributes\": [\n        {\n            \"id\": 16497,\n            \"job_id\": 161,\n            \"ext_id\": \"embloy__534cfcd1-dd02-48da-b619-98dc7ef4f3f2\",\n            \"question\": \"aDid you ever work as a barista?\",\n            \"question_type\": \"yes_no\",\n            \"required\": true,\n            \"options\": [],\n            \"created_at\": \"2024-11-30T21:46:53.693Z\",\n            \"updated_at\": \"2024-11-30T21:46:53.693Z\",\n            \"deleted_at\": null\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.embloy.com/api/v0/jobs/insert-your-job-id"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"81dc57cda3d27ed5d61ba285a11282f6\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"0c9f7bbc-c768-4c9f-846d-208a1879aa2f"},{"key":"X-Runtime","value":"3.380276"},{"key":"vary","value":"Origin"},{"key":"Content-Length","value":"1872"}],"cookie":[],"responseTime":null,"body":"{\n    \"job\": {\n        \"id\": 2,\n        \"title\": \"TestTitle\",\n        \"position\": \"CEO\",\n        \"key_skills\": \"Entrepreneurship\",\n        \"job_type\": \"Retail\",\n        \"job_slug\": \"72f6d01e-55e5-4fa7-97dd-65af26494695\",\n        \"job_status\": \"listed\",\n        \"activity_status\": 1,\n        \"referrer_url\": \"https://embloy.com/\",\n        \"salary\": 18,\n        \"currency\": \"USD\",\n        \"euro_salary\": null,\n        \"start_slot\": \"2024-12-03T02:23:13.000Z\",\n        \"duration\": 20,\n        \"code_lang\": null,\n        \"longitude\": 11.613942994844358,\n        \"latitude\": 48.1951076,\n        \"country_code\": null,\n        \"postal_code\": null,\n        \"city\": null,\n        \"address\": null,\n        \"view_count\": 0,\n        \"applications_count\": 0,\n        \"created_at\": \"2024-11-15T15:20:35.491Z\",\n        \"updated_at\": \"2024-11-15T19:16:02.404Z\",\n        \"image_url\": null,\n        \"employer\": {\n            \"employer_email\": \"info@embloy.com\",\n            \"employer_name\": \"Embloy Platforms\",\n            \"employer_phone\": \"004912345678910\",\n            \"employer_image_url\": \"http://localhost:3000/rails/active_storage/disk/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaDdDVG9JYTJWNVNTSWhNblZqT0dGb2JqaG5lVE5qYVhobGFXZDBPR3A1YkRRMGEySmhkUVk2QmtWVU9oQmthWE53YjNOcGRHbHZia2tpUjJsdWJHbHVaVHNnWm1sc1pXNWhiV1U5SW14dloyOHRiR2xuYUhRdWNHNW5JanNnWm1sc1pXNWhiV1VxUFZWVVJpMDRKeWRzYjJkdkxXeHBaMmgwTG5CdVp3WTdCbFE2RVdOdmJuUmxiblJmZEhsd1pVa2lEbWx0WVdkbEwzQnVad1k3QmxRNkVYTmxjblpwWTJWZmJtRnRaVG9LYkc5allXdz0iLCJleHAiOiIyMDI0LTExLTE1VDE5OjIxOjAyLjYwNloiLCJwdXIiOiJibG9iX2tleSJ9fQ==--f4b1e6b3fab01478a8bc6b6107855fcf409b1ec4/logo-light.png\"\n        },\n        \"application_options\": [\n            {\n                \"id\": 1,\n                \"job_id\": 2,\n                \"ext_id\": \"embloy__ab53adff-e7d7-47e3-be24-9a6c80ffe446\",\n                \"question\": \"Did you ever work as a barista?\",\n                \"question_type\": \"yes_no\",\n                \"required\": true,\n                \"options\": [],\n                \"created_at\": \"2024-11-15T15:20:35.554Z\",\n                \"updated_at\": \"2024-11-15T15:20:35.554Z\",\n                \"deleted_at\": null\n            },\n            {\n                \"id\": 2,\n                \"job_id\": 2,\n                \"ext_id\": \"embloy__03df6ef9-b589-4aaf-b1be-a41eeae4ae3a\",\n                \"question\": \"If yes, where and for how long?\",\n                \"question_type\": \"long_text\",\n                \"required\": false,\n                \"options\": [],\n                \"created_at\": \"2024-11-15T15:20:35.610Z\",\n                \"updated_at\": \"2024-11-15T15:20:35.610Z\",\n                \"deleted_at\": null\n            },\n            {\n                \"id\": 3,\n                \"job_id\": 2,\n                \"ext_id\": \"embloy__f8e869c6-2f77-4c65-accf-3d00554d1257\",\n                \"question\": \"What is your favorite coffee?\",\n                \"question_type\": \"short_text\",\n                \"required\": true,\n                \"options\": [],\n                \"created_at\": \"2024-11-15T15:20:35.668Z\",\n                \"updated_at\": \"2024-11-15T15:20:35.668Z\",\n                \"deleted_at\": null\n            },\n            {\n                \"id\": 4,\n                \"job_id\": 2,\n                \"ext_id\": \"embloy__1772d194-552e-43bd-95da-e51b9edbc092\",\n                \"question\": \"How many cups of coffee do you drink per day?\",\n                \"question_type\": \"number\",\n                \"required\": true,\n                \"options\": [],\n                \"created_at\": \"2024-11-15T15:20:35.724Z\",\n                \"updated_at\": \"2024-11-15T15:20:35.724Z\",\n                \"deleted_at\": null\n            },\n            {\n                \"id\": 5,\n                \"job_id\": 2,\n                \"ext_id\": \"embloy__1a0f4293-3a10-436b-84f7-fc03930825a5\",\n                \"question\": \"What is the most important thing when preparing coffee?\",\n                \"question_type\": \"long_text\",\n                \"required\": true,\n                \"options\": [],\n                \"created_at\": \"2024-11-15T15:20:35.784Z\",\n                \"updated_at\": \"2024-11-15T15:20:35.784Z\",\n                \"deleted_at\": null\n            },\n            {\n                \"id\": 6,\n                \"job_id\": 2,\n                \"ext_id\": \"embloy__7dbca07e-1672-4cb7-9b1a-ca6f31da8d00\",\n                \"question\": \"When did you last prepare coffee?\",\n                \"question_type\": \"date\",\n                \"required\": false,\n                \"options\": [],\n                \"created_at\": \"2024-11-15T15:20:35.840Z\",\n                \"updated_at\": \"2024-11-15T15:20:35.840Z\",\n                \"deleted_at\": null\n            },\n            {\n                \"id\": 7,\n                \"job_id\": 2,\n                \"ext_id\": \"embloy__0d00738a-82b7-42b5-82c6-17d631ff8f09\",\n                \"question\": \"Provide a link to a video of you preparing coffee.\",\n                \"question_type\": \"link\",\n                \"required\": false,\n                \"options\": [],\n                \"created_at\": \"2024-11-15T15:20:35.892Z\",\n                \"updated_at\": \"2024-11-15T15:20:35.892Z\",\n                \"deleted_at\": null\n            },\n            {\n                \"id\": 8,\n                \"job_id\": 2,\n                \"ext_id\": \"embloy__aee562a1-5809-4002-be0f-002ec8023528\",\n                \"question\": \"Should Capuccino be served after 11am?\",\n                \"question_type\": \"multiple_choice\",\n                \"required\": true,\n                \"options\": [\n                    \"No way, it should be illegal\",\n                    \"Yes, but for italians it should remain a crime\",\n                    \"Yes, it's a free world\",\n                    \"Is it 11am already?\"\n                ],\n                \"created_at\": \"2024-11-15T15:20:35.945Z\",\n                \"updated_at\": \"2024-11-15T15:20:35.945Z\",\n                \"deleted_at\": null\n            },\n            {\n                \"id\": 9,\n                \"job_id\": 2,\n                \"ext_id\": \"embloy__43d3671d-a254-4cca-956b-86bc7f60a281\",\n                \"question\": \"Are you addicted to coffee?\",\n                \"question_type\": \"single_choice\",\n                \"required\": true,\n                \"options\": [\n                    \"Yes\",\n                    \"No\",\n                    \"Maybe...\",\n                    \"I can neither confirm nor deny.\"\n                ],\n                \"created_at\": \"2024-11-15T15:20:36.046Z\",\n                \"updated_at\": \"2024-11-15T15:20:36.046Z\",\n                \"deleted_at\": null\n            },\n            {\n                \"id\": 10,\n                \"job_id\": 2,\n                \"ext_id\": \"embloy__98f02371-ae26-49fe-ba58-8ba95e468211\",\n                \"question\": \"Upload your CV\",\n                \"question_type\": \"file\",\n                \"required\": false,\n                \"options\": [\n                    \"pdf\"\n                ],\n                \"created_at\": \"2024-11-15T15:20:36.110Z\",\n                \"updated_at\": \"2024-11-15T15:20:36.110Z\",\n                \"deleted_at\": null\n            },\n            {\n                \"id\": 11,\n                \"job_id\": 2,\n                \"ext_id\": \"embloy__9957ca0a-f3a0-4199-b2de-dc07376153f9\",\n                \"question\": \"Upload an image of a perfect Espresso\",\n                \"question_type\": \"file\",\n                \"required\": false,\n                \"options\": [\n                    \"svg\",\n                    \"png\",\n                    \"jpeg\",\n                    \"jpg\"\n                ],\n                \"created_at\": \"2024-11-15T15:20:36.176Z\",\n                \"updated_at\": \"2024-11-15T15:20:36.176Z\",\n                \"deleted_at\": null\n            },\n            {\n                \"id\": 12,\n                \"job_id\": 2,\n                \"ext_id\": \"embloy__eea0876f-5e2b-49b6-bb6c-3d77470b3fd9\",\n                \"question\": \"Upload a video of you preparing coffee\",\n                \"question_type\": \"file\",\n                \"required\": false,\n                \"options\": [\n                    \"mp4\",\n                    \"avi\",\n                    \"mov\"\n                ],\n                \"created_at\": \"2024-11-15T15:20:36.229Z\",\n                \"updated_at\": \"2024-11-15T15:20:36.229Z\",\n                \"deleted_at\": null\n            }\n        ]\n    }\n}"},{"id":"02711095-d497-41e7-9be7-4bcd89f62385","name":"400 Bad Request","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"formdata","formdata":[{"key":"title","value":"TestTitle","type":"text","description":"Job's title."},{"key":"job_type","value":"Retail","type":"text","description":"Job category"},{"key":"start_slot","value":"2024-06-12T21:11:39.736Z","type":"text","description":"The timestamp of when the job starts"},{"key":"position","value":"CEO","type":"text","description":"The open position"},{"key":"key_skills","value":"Entrepreneurship","type":"text","description":"Key skills relevant for this job"},{"key":"duration","value":"9","type":"text","description":"The job duration in days"},{"key":"salary","value":"9","type":"text","description":"The job's salary"},{"key":"description","value":"<div>Hier steht die Desription</div>","type":"text","description":"A brief description (<500characters) of the job"},{"key":"status","value":"unlisted","type":"text","description":"Visibility status"},{"key":"longitude","value":"11.613942994844358","type":"text","description":"The job's longitde"},{"key":"latitude","value":"48.1951076","type":"text","description":"The job's latitude"},{"key":"job_notifications","value":"1","type":"text","description":"Enable/Disable notifications for this job"},{"key":"currency","value":"EUR","type":"text","description":"Your preferred currency"},{"key":"image_url","type":"file","description":"Cover image of your job posting","src":"Pda0ojbZI/test_image.png"}]},"url":{"raw":"https://api.embloy.com/api/v0/jobs?id=insert-your-job-id","host":["https://api.embloy.com"],"path":["api","v0","jobs"],"query":[{"key":"id","value":"insert-your-job-id","description":"The id of the job you want to update"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_slug\": [\n        {\n            \"error\": \"ERR_BLANK\",\n            \"description\": \"Should be unique per user\",\n            \"value\": \"11_CEO Wanted_17056829072\"\n        }\n    ]\n}"},{"id":"887db5b6-176d-445e-ad1a-68dee5e318bc","name":"400 Bad Request","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"formdata","formdata":[{"key":"title","value":"TestTitle","type":"text","description":"Job's title."},{"key":"job_type","value":"Retail","type":"text","description":"Job category"},{"key":"start_slot","value":"Tue May 04 2027 00:06:42 GMT+0000 (Coordinated Universal Time)","type":"text","description":"The timestamp of when the job starts"},{"key":"position","value":"CEO","type":"text","description":"The open position"},{"key":"key_skills","value":"Entrepreneurship","type":"text","description":"Key skills relevant for this job"},{"key":"duration","value":"9","type":"text","description":"The job duration in days","disabled":true},{"key":"salary","value":"9","type":"text","description":"The job's salary","disabled":true},{"key":"description","value":"<div>Hier steht die Desription</div>","type":"text","description":"A brief description (<500characters) of the job","disabled":true},{"key":"status","value":"unlisted","type":"text","description":"Visibility status","disabled":true},{"key":"longitude","value":"11.613942994844358","type":"text","description":"The job's longitde","disabled":true},{"key":"latitude","value":"48.1951076","type":"text","description":"The job's latitude","disabled":true},{"key":"job_notifications","value":"1","type":"text","description":"Enable/Disable notifications for this job","disabled":true},{"key":"currency","value":"EUR","type":"text","description":"Your preferred currency","disabled":true},{"key":"image_url","type":"file","description":"Cover image of your job posting","src":"Pda0ojbZI/test_image.png","disabled":true},{"key":"job_slug","value":"44b52dd0-48f2-4c1f-a657-facd405c905fabcv","type":"text","disabled":true}]},"url":{"raw":"https://api.embloy.com/api/v0/jobs?id=insert-your-job-id","host":["https://api.embloy.com"],"path":["api","v0","jobs"],"query":[{"key":"id","value":"insert-your-job-id"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"base\": [\n        {\n            \"error\": \"You've reached the maximum number of allowed jobs for your subscription type (basic).\"\n        }\n    ]\n}"},{"id":"269a63a9-f237-43af-be6f-2d341c2bb8ea","name":"404 Not Found","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"title\": \"Organic coffee shop looking for a barista\",\n    \"job_type\": \"Food\",\n    \"referrer_url\": \"https://embloy.com/\",\n    \"start_slot\": \"2042-10-02T20:42:42.356Z\",\n    \"position\": \"Barista\",\n    \"key_skills\": \"Barista, Coffee, Customer Service\",\n    \"duration\": 20,\n    \"salary\": 18,\n    \"description\": \"<div>Work in the greatest espresso bar in town and make making others happy your paid job!</div>\",\n    \"job_status\": \"listed\",\n    \"longitude\": 11.613942994844358,\n    \"latitude\": 48.1951076,\n    \"job_notifications\": 1,\n    \"currency\": \"USD\",\n    \"application_options_attributes\": [\n        {\n            \"question\": \"Is this working?\",\n            \"question_type\": \"yes_no\",\n            \"required\": true,\n            \"options\": []\n        },\n        {\n            \"id\": 16557,\n            \"job_id\": 162,\n            \"ext_id\": \"embloy__21ab3403-4e1c-4b41-b8fa-f859d2846086\",\n            \"question\": \"Did you ever work as a barista?\",\n            \"question_type\": \"yes_no\",\n            \"required\": false,\n            \"options\": [],\n            \"created_at\": \"2024-11-30T21:57:50.874Z\",\n            \"updated_at\": \"2024-11-30T21:57:50.874Z\",\n            \"deleted_at\": null\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.embloy.com/api/v0/jobs/insert-your-job-id"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=UTF-8"},{"key":"X-Request-Id","value":"31a9350e-adcd-4e72-8862-d8cbf4cda486"},{"key":"X-Runtime","value":"1.579503"},{"key":"vary","value":"Origin"},{"key":"Content-Length","value":"34"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 404,\n    \"error\": \"Not Found\"\n}"}],"_postman_id":"8917ff93-4b2b-486c-849b-a63e6d2b450e"},{"name":"Delete job","id":"ca649118-734f-426d-8833-ec2395a7e720","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://api.embloy.com/api/v0/jobs/insert-your-job-id","description":"<p>This endpoint deletes a job owned by the current user. This is a destructive action!</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","jobs","insert-your-job-id"],"host":["https://api.embloy.com"],"query":[],"variable":[]}},"response":[{"id":"4f79ae4e-5758-4077-b5ce-2e81a50824cd","name":"200 OK","originalRequest":{"method":"DELETE","header":[],"url":"https://api.embloy.com/api/v0/jobs/insert-your-job-id"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Job deleted!\"\n}"},{"id":"5065c1d9-2afc-45e7-a202-20f4e0bc79b6","name":"404 Not Found","originalRequest":{"method":"DELETE","header":[],"url":"https://api.embloy.com/api/v0/jobs/insert-your-job-id"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"job\": [\n        {\n            \"error\": \"ERR_INVALID\",\n            \"description\": \"Attribute can not be retrieved\"\n        }\n    ]\n}"}],"_postman_id":"ca649118-734f-426d-8833-ec2395a7e720"},{"name":"Delete job options","id":"dd71310d-b758-4a70-9c78-6689312ff6c3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://api.embloy.com/api/v0/jobs/insert-your-job-id/options/insert-job-option-id","description":"<p>Use this endpoint to delete either a single option or all options for a given job of the current user. This is a destructive action!</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","jobs","insert-your-job-id","options","insert-job-option-id"],"host":["https://api.embloy.com"],"query":[],"variable":[]}},"response":[{"id":"3e3eb7c8-c1ae-4c1c-8226-773841123343","name":"200 OK","originalRequest":{"method":"DELETE","header":[],"url":"https://api.embloy.com/api/v0/jobs/insert-your-job-id/options"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"35919ce087ab042a07126ebfb641a69c\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"808b1d29-5c54-4c8a-bbaf-eae73ad30037"},{"key":"X-Runtime","value":"1.609332"},{"key":"vary","value":"Origin"},{"key":"Content-Length","value":"34"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"All options deleted!\"\n}"},{"id":"6165855e-f23d-4795-8283-e18ec79df9b4","name":"200 OK","originalRequest":{"method":"DELETE","header":[],"url":"https://api.embloy.com/api/v0/jobs/insert-your-job-id/options/insert-job-option-id"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"6116b07993bf26a2350a73d30fd09dec\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"b0121dd1-0ffd-43d6-b7d9-c1b54285787f"},{"key":"X-Runtime","value":"0.290843"},{"key":"vary","value":"Origin"},{"key":"Content-Length","value":"29"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Option deleted!\"\n}"},{"id":"2620f096-1604-424e-9d17-e5acd97e42c6","name":"404 Not Found","originalRequest":{"method":"DELETE","header":[],"url":"https://api.embloy.com/api/v0/jobs/insert-your-job-id/options/insert-job-option-id"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"b01b578a-323b-4aaa-9118-6c93b485a843"},{"key":"X-Runtime","value":"0.235362"},{"key":"vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"option\": [\n        {\n            \"error\": \"ERR_INVALID\",\n            \"description\": \"Attribute can not be retrieved\"\n        }\n    ]\n}"}],"_postman_id":"dd71310d-b758-4a70-9c78-6689312ff6c3"}],"id":"1c563a30-4a0e-420e-826c-3c8ea0c14f03","description":"<p>All requests related to job finding &amp; handling.</p>\n<h4 id=\"note-1\">Note #1:</h4>\n<p><code>POST:/user/image</code>, <code>POST:/jobs</code> and <code>POST:/jobs/{job_id}/applications</code> require you to insert a local file to be submitted.</p>\n<h4 id=\"note-2\">Note #2:</h4>\n<p><code>POST:/jobs</code> needs a valid <code>start_slot</code> date to be created. To do so, you need to make sure that the date lies in the future and is not more than one year in advance.</p>\n","_postman_id":"1c563a30-4a0e-420e-826c-3c8ea0c14f03","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}}},{"name":"User","item":[{"name":"Get user profile","id":"03464f43-acba-4fd3-ba1b-113f98cb028e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/user","description":"<p>Returns the current user's profile information, including the company account if the user has a company account and subscription if the user has a subscription.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","user"],"host":["https://api.embloy.com"],"query":[],"variable":[]}},"response":[{"id":"139036bd-dd89-4b02-950e-049c3c866a55","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/user"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"eaf544c7411061cb842018ccbeab1208\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"e6b7e1e4-2c38-412d-a6a3-7e1af7d6fdab"},{"key":"X-Runtime","value":"2.718472"},{"key":"Server-Timing","value":"cache_read.active_support;dur=0.44, cache_write.active_support;dur=0.17, start_processing.action_controller;dur=0.50, sql.active_record;dur=978.66, instantiation.active_record;dur=83.29, service_url.active_storage;dur=8.58, process_action.action_controller;dur=2643.08"},{"key":"vary","value":"Origin"},{"key":"Content-Length","value":"4631"}],"cookie":[],"responseTime":null,"body":"{\n    \"user\": {\n        \"id\": 1,\n        \"email\": \"carlo.bortolan@de.embloy.com\",\n        \"first_name\": \"Carlo\",\n        \"last_name\": \"Bortolan\",\n        \"date_of_birth\": null,\n        \"longitude\": null,\n        \"latitude\": null,\n        \"country_code\": null,\n        \"postal_code\": null,\n        \"city\": null,\n        \"address\": \"Heimstättenstraße 6\",\n        \"activity_status\": 1,\n        \"user_role\": \"admin\",\n        \"type\": \"CompanyUser\",\n        \"view_count\": 0,\n        \"applications_count\": 7,\n        \"jobs_count\": 39,\n        \"linkedin_url\": \"https://linkedin.com/in/carlobortolan\",\n        \"instagram_url\": \"\",\n        \"twitter_url\": null,\n        \"facebook_url\": null,\n        \"github_url\": \"https://github.com/carlobortolan\",\n        \"portfolio_url\": \"https://carlobortolan.com\",\n        \"phone\": \"4915225237383.0\",\n        \"application_notifications\": true,\n        \"communication_notifications\": true,\n        \"marketing_notifications\": false,\n        \"security_notifications\": true,\n        \"image_url\": \"https://embloy.s3.eu-central-1.amazonaws.com/q6jaz1jsrr1iylx3epokfg8qn73j?response-content-disposition=inline%3B%20filename%3D%22Screenshot%202024-12-04%20150114.png%22%3B%20filename%2A%3DUTF-8%27%27Screenshot%25202024-12-04%2520150114.png&response-content-type=image%2Fpng&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA47CRXKRHNYNTRWHT%2F20241219%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20241219T161301Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=95fcb11c0f88331b58db30a10cb0e9ab243e5197720ab171f303058195397700\",\n        \"created_at\": \"2024-09-10T18:53:46.801Z\",\n        \"updated_at\": \"2024-12-04T14:02:22.492Z\"\n    },\n    \"subscription\": {\n        \"id\": 1,\n        \"customer_id\": 3,\n        \"name\": \"default\",\n        \"processor_id\": \"sub_1PxclbKMiBrigNb6FAyACuLJ\",\n        \"processor_plan\": \"price_1Pxb4zKMiBrigNb6XPZOmA7z\",\n        \"quantity\": 1,\n        \"status\": \"active\",\n        \"current_period_start\": \"2024-12-10T22:42:34.000Z\",\n        \"current_period_end\": \"2025-01-10T22:42:34.000Z\",\n        \"trial_ends_at\": null,\n        \"ends_at\": null,\n        \"metered\": false,\n        \"pause_behavior\": null,\n        \"pause_starts_at\": null,\n        \"pause_resumes_at\": null,\n        \"application_fee_percent\": null,\n        \"metadata\": {},\n        \"data\": {\n            \"subscription_items\": [\n                {\n                    \"id\": \"si_QpHK0EEQXDkO2y\",\n                    \"price\": {\n                        \"id\": \"price_1Pxb4zKMiBrigNb6XPZOmA7z\",\n                        \"type\": \"recurring\",\n                        \"active\": true,\n                        \"object\": \"price\",\n                        \"created\": 1726001669,\n                        \"product\": \"prod_QpFaXuThRqNOxo\",\n                        \"currency\": \"eur\",\n                        \"livemode\": true,\n                        \"metadata\": {},\n                        \"nickname\": null,\n                        \"recurring\": {\n                            \"meter\": null,\n                            \"interval\": \"month\",\n                            \"usage_type\": \"licensed\",\n                            \"interval_count\": 1,\n                            \"aggregate_usage\": null,\n                            \"trial_period_days\": null\n                        },\n                        \"lookup_key\": null,\n                        \"tiers_mode\": null,\n                        \"unit_amount\": 0,\n                        \"tax_behavior\": \"unspecified\",\n                        \"billing_scheme\": \"per_unit\",\n                        \"custom_unit_amount\": null,\n                        \"transform_quantity\": null,\n                        \"unit_amount_decimal\": \"0\"\n                    },\n                    \"metadata\": {},\n                    \"quantity\": 1\n                }\n            ]\n        },\n        \"stripe_account\": null,\n        \"payment_method_id\": \"pm_1PxclBKMiBrigNb6qiS1vhCf\",\n        \"created_at\": \"2024-09-10T22:42:34.000Z\",\n        \"updated_at\": \"2024-12-19T16:13:03.173Z\",\n        \"prorate\": true\n    },\n    \"company\": {\n        \"id\": 1,\n        \"company_name\": \"Embloy Platforms UG (haftungsbeschränkt)\",\n        \"company_phone\": \"004912345678910\",\n        \"company_email\": \"info@embloy.com\",\n        \"company_urls\": [\n            \"https://www.github.com/embloy\",\n            \"https://www.linkedin.com/company/embloy\",\n            \"https://www.embloy.com\",\n            \"https://www.about.embloy.com/en\",\n            \"https://api.embloy.com\",\n            \"https://linked.com/\",\n            \"https://genius.embloy.com\",\n            \"https://developers.embloy.com\",\n            \"https://docs.embloy.com\",\n            \"https://postman.com/embloy\"\n        ],\n        \"company_industry\": \"Technology\",\n        \"company_description\": {\n            \"id\": 158,\n            \"name\": \"company_description\",\n            \"body\": \"<h1 id=\\\"the-world-s-first-job-application-api\\\">The World's First Job Application API</h1>\\n<p>Deliver <strong>outstanding candidate experiences</strong> by offering the option to apply with Embloy.</p>\\n<p>Find out more at <a href=\\\"https://about.embloy.com/en/\\\">https://about.embloy.com/en/</a>.</p>\\n<p><img src=\\\"https://avatars.githubusercontent.com/u/132399266?s=200&amp;v=4\\\" alt=\\\"logo\\\"></p>\\n<p><em>Sign up to Embloy and apply for jobs with Venmo-like simplicity. Create an account once, use it to apply with one click and manage your applications in one place.</em></p>\",\n            \"record_type\": \"User\",\n            \"record_id\": 1,\n            \"created_at\": \"2024-11-15T02:37:16.881Z\",\n            \"updated_at\": \"2024-11-15T04:05:19.044Z\"\n        },\n        \"company_logo\": \"https://embloy.s3.eu-central-1.amazonaws.com/5s4u81ta6i1flknyh0fkj4zbsqtx?response-content-disposition=inline%3B%20filename%3D%22logo-light.png%22%3B%20filename%2A%3DUTF-8%27%27logo-light.png&response-content-type=image%2Fpng&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA47CRXKRHNYNTRWHT%2F20241219%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20241219T161303Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=6a137e4427cfce9d4f76271e1e9eea7d6b70e4a6a3a9390686737c77ff85c120\",\n        \"company_slug\": \"embloy\"\n    }\n}"}],"_postman_id":"03464f43-acba-4fd3-ba1b-113f98cb028e"},{"name":"Get user's jobs","id":"0214db05-841a-452d-bad9-19e0a0187e6a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/user/jobs","description":"<p>The provided access token is first verified, and then a list of all the jobs associated with its owner is generated.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","user","jobs"],"host":["https://api.embloy.com"],"query":[],"variable":[]}},"response":[{"id":"f8944110-4ee7-48b8-be64-3bdaa4b4e738","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/user/jobs"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json","description":"","type":"text"},{"key":"ETag","value":"W/\"4dc232d854d9d54d16afd877bd1aa0ea\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"d5632f15-074c-4756-a74d-d962871332c0"},{"key":"X-Runtime","value":"1.697704"},{"key":"Server-Timing","value":"sql.active_record;dur=773.33, cache_read.active_support;dur=0.14, cache_write.active_support;dur=0.13, start_processing.action_controller;dur=0.38, instantiation.active_record;dur=216.85, process_action.action_controller;dur=763.15"},{"key":"vary","value":"Origin"},{"key":"Content-Length","value":"8418"}],"cookie":[],"responseTime":null,"body":"{\n    \"jobs\": [\n        {\n            \"id\": 4,\n            \"title\": \"Organic coffee shop looking for a barista\",\n            \"position\": \"Barista\",\n            \"key_skills\": \"Barista, Coffee, Customer Service\",\n            \"job_type\": \"Food\",\n            \"job_slug\": \"a341e95f-a766-4273-9a6f-0e41ec5dbeba\",\n            \"job_status\": \"listed\",\n            \"activity_status\": 1,\n            \"referrer_url\": \"https://embloy.com/\",\n            \"salary\": 18,\n            \"currency\": \"USD\",\n            \"euro_salary\": null,\n            \"start_slot\": \"2042-10-02T20:42:42.356Z\",\n            \"duration\": 20,\n            \"code_lang\": null,\n            \"longitude\": 11.613942994844358,\n            \"latitude\": 48.1951076,\n            \"country_code\": null,\n            \"postal_code\": null,\n            \"city\": null,\n            \"address\": null,\n            \"view_count\": 0,\n            \"applications_count\": 0,\n            \"created_at\": \"2024-11-15T15:55:05.311Z\",\n            \"updated_at\": \"2024-11-15T15:55:06.080Z\"\n        },\n        {\n            \"id\": 3,\n            \"title\": \"Organic coffee shop looking for a barista\",\n            \"position\": \"Barista\",\n            \"key_skills\": \"Barista, Coffee, Customer Service\",\n            \"job_type\": \"Food\",\n            \"job_slug\": \"23fc4850-c26d-4770-bf26-5864c47e0492\",\n            \"job_status\": \"listed\",\n            \"activity_status\": 1,\n            \"referrer_url\": \"https://embloy.com/\",\n            \"salary\": 18,\n            \"currency\": \"USD\",\n            \"euro_salary\": null,\n            \"start_slot\": \"2042-10-02T20:42:42.356Z\",\n            \"duration\": 20,\n            \"code_lang\": null,\n            \"longitude\": 11.613942994844358,\n            \"latitude\": 48.1951076,\n            \"country_code\": null,\n            \"postal_code\": null,\n            \"city\": null,\n            \"address\": null,\n            \"view_count\": 0,\n            \"applications_count\": 0,\n            \"created_at\": \"2024-11-15T15:54:40.328Z\",\n            \"updated_at\": \"2024-11-15T15:54:41.085Z\"\n        },\n        {\n            \"id\": 2,\n            \"title\": \"Organic coffee shop looking for a barista\",\n            \"position\": \"Barista\",\n            \"key_skills\": \"Barista, Coffee, Customer Service\",\n            \"job_type\": \"Food\",\n            \"job_slug\": \"72f6d01e-55e5-4fa7-97dd-65af26494695\",\n            \"job_status\": \"listed\",\n            \"activity_status\": 1,\n            \"referrer_url\": \"https://embloy.com/\",\n            \"salary\": 18,\n            \"currency\": \"USD\",\n            \"euro_salary\": null,\n            \"start_slot\": \"2042-10-02T20:42:42.356Z\",\n            \"duration\": 20,\n            \"code_lang\": null,\n            \"longitude\": 11.613942994844358,\n            \"latitude\": 48.1951076,\n            \"country_code\": null,\n            \"postal_code\": null,\n            \"city\": null,\n            \"address\": null,\n            \"view_count\": 0,\n            \"applications_count\": 0,\n            \"created_at\": \"2024-11-15T15:20:35.491Z\",\n            \"updated_at\": \"2024-11-15T15:20:36.334Z\"\n        }\n    ]\n}"},{"id":"9ff6606f-872a-4364-8649-b13f072a443b","name":"204 No Content","originalRequest":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/user/jobs"},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"0214db05-841a-452d-bad9-19e0a0187e6a"},{"name":"Get upcoming jobs","id":"8f9af903-11f1-4822-8ba5-7f31ba908862","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/user/upcoming","description":"<p>The provided access token is first verified, and then a list of all the job for which the current user has applied for an then has been accepted is generated.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","user","upcoming"],"host":["https://api.embloy.com"],"query":[],"variable":[]}},"response":[{"id":"afc2adda-300b-4b8d-a3e3-bde870788700","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/user/upcoming"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"9866cd940add7df186fee80b78dbc2bf\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"2879eb13-b0a3-4292-aab1-eb27aa851ed7"},{"key":"X-Runtime","value":"1.221040"},{"key":"Server-Timing","value":"cache_read.active_support;dur=0.19, cache_write.active_support;dur=0.12, start_processing.action_controller;dur=0.38, sql.active_record;dur=381.08, instantiation.active_record;dur=109.62, service_url.active_storage;dur=20.21, process_action.action_controller;dur=688.70"},{"key":"vary","value":"Origin"},{"key":"Content-Length","value":"20419"}],"cookie":[],"responseTime":null,"body":"{\n    \"jobs\": [\n        {\n            \"id\": 4,\n            \"title\": \"Organic coffee shop looking for a barista\",\n            \"position\": \"Barista\",\n            \"key_skills\": \"Barista, Coffee, Customer Service\",\n            \"job_type\": \"Food\",\n            \"job_slug\": \"a341e95f-a766-4273-9a6f-0e41ec5dbeba\",\n            \"job_status\": \"listed\",\n            \"activity_status\": 1,\n            \"referrer_url\": \"https://embloy.com/\",\n            \"salary\": 18,\n            \"currency\": \"USD\",\n            \"euro_salary\": null,\n            \"start_slot\": \"2042-10-02T20:42:42.356Z\",\n            \"duration\": 20,\n            \"code_lang\": null,\n            \"longitude\": 11.613942994844358,\n            \"latitude\": 48.1951076,\n            \"country_code\": null,\n            \"postal_code\": null,\n            \"city\": null,\n            \"address\": null,\n            \"view_count\": 0,\n            \"applications_count\": 0,\n            \"created_at\": \"2024-11-15T15:55:05.311Z\",\n            \"updated_at\": \"2024-11-15T15:55:06.080Z\",\n            \"employer\": {\n                \"employer_email\": \"info@embloy.com\",\n                \"employer_name\": \"Embloy Platforms\",\n                \"employer_phone\": \"004912345678910\",\n                \"employer_image_url\": \"http://localhost:3000/rails/active_storage/disk/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaDdDVG9JYTJWNVNTSWhNblZqT0dGb2JqaG5lVE5qYVhobGFXZDBPR3A1YkRRMGEySmhkUVk2QmtWVU9oQmthWE53YjNOcGRHbHZia2tpUjJsdWJHbHVaVHNnWm1sc1pXNWhiV1U5SW14dloyOHRiR2xuYUhRdWNHNW5JanNnWm1sc1pXNWhiV1VxUFZWVVJpMDRKeWRzYjJkdkxXeHBaMmgwTG5CdVp3WTdCbFE2RVdOdmJuUmxiblJmZEhsd1pVa2lEbWx0WVdkbEwzQnVad1k3QmxRNkVYTmxjblpwWTJWZmJtRnRaVG9LYkc5allXdz0iLCJleHAiOiIyMDI0LTExLTE1VDE5OjE4OjMyLjE0NloiLCJwdXIiOiJibG9iX2tleSJ9fQ==--70e3f7f1b0b5bd3301d38b8f6b40125d79dddc85/logo-light.png\"\n            }\n        },\n        {\n            \"id\": 3,\n            \"title\": \"Organic coffee shop looking for a barista\",\n            \"position\": \"Barista\",\n            \"key_skills\": \"Barista, Coffee, Customer Service\",\n            \"job_type\": \"Food\",\n            \"job_slug\": \"23fc4850-c26d-4770-bf26-5864c47e0492\",\n            \"job_status\": \"listed\",\n            \"activity_status\": 1,\n            \"referrer_url\": \"https://embloy.com/\",\n            \"salary\": 18,\n            \"currency\": \"USD\",\n            \"euro_salary\": null,\n            \"start_slot\": \"2042-10-02T20:42:42.356Z\",\n            \"duration\": 20,\n            \"code_lang\": null,\n            \"longitude\": 11.613942994844358,\n            \"latitude\": 48.1951076,\n            \"country_code\": null,\n            \"postal_code\": null,\n            \"city\": null,\n            \"address\": null,\n            \"view_count\": 0,\n            \"applications_count\": 0,\n            \"created_at\": \"2024-11-15T15:54:40.328Z\",\n            \"updated_at\": \"2024-11-15T15:54:41.085Z\",\n            \"employer\": {\n                \"employer_email\": \"info@embloy.com\",\n                \"employer_name\": \"Embloy Platforms\",\n                \"employer_phone\": \"004912345678910\",\n                \"employer_image_url\": \"http://localhost:3000/rails/active_storage/disk/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaDdDVG9JYTJWNVNTSWhNblZqT0dGb2JqaG5lVE5qYVhobGFXZDBPR3A1YkRRMGEySmhkUVk2QmtWVU9oQmthWE53YjNOcGRHbHZia2tpUjJsdWJHbHVaVHNnWm1sc1pXNWhiV1U5SW14dloyOHRiR2xuYUhRdWNHNW5JanNnWm1sc1pXNWhiV1VxUFZWVVJpMDRKeWRzYjJkdkxXeHBaMmgwTG5CdVp3WTdCbFE2RVdOdmJuUmxiblJmZEhsd1pVa2lEbWx0WVdkbEwzQnVad1k3QmxRNkVYTmxjblpwWTJWZmJtRnRaVG9LYkc5allXdz0iLCJleHAiOiIyMDI0LTExLTE1VDE5OjE4OjMyLjE0OVoiLCJwdXIiOiJibG9iX2tleSJ9fQ==--9c6be9109c6d3432be1d27263d18272e63aa60a9/logo-light.png\"\n            }\n        },\n        {\n            \"id\": 5,\n            \"title\": \"Organic coffee shop looking for a barista\",\n            \"position\": \"Barista\",\n            \"key_skills\": \"Barista, Coffee, Customer Service\",\n            \"job_type\": \"Food\",\n            \"job_slug\": \"279e9dde-30cd-4cae-9728-1f9776be3cbe\",\n            \"job_status\": \"listed\",\n            \"activity_status\": 1,\n            \"referrer_url\": \"https://embloy.com/\",\n            \"salary\": 18,\n            \"currency\": \"USD\",\n            \"euro_salary\": null,\n            \"start_slot\": \"2042-10-02T20:42:42.356Z\",\n            \"duration\": 20,\n            \"code_lang\": null,\n            \"longitude\": 11.613942994844358,\n            \"latitude\": 48.1951076,\n            \"country_code\": null,\n            \"postal_code\": null,\n            \"city\": null,\n            \"address\": null,\n            \"view_count\": 0,\n            \"applications_count\": 0,\n            \"created_at\": \"2024-11-15T15:57:34.960Z\",\n            \"updated_at\": \"2024-11-15T15:57:35.756Z\",\n            \"employer\": {\n                \"employer_email\": \"info@embloy.com\",\n                \"employer_name\": \"Embloy Platforms\",\n                \"employer_phone\": \"004912345678910\",\n                \"employer_image_url\": \"http://localhost:3000/rails/active_storage/disk/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaDdDVG9JYTJWNVNTSWhNblZqT0dGb2JqaG5lVE5qYVhobGFXZDBPR3A1YkRRMGEySmhkUVk2QmtWVU9oQmthWE53YjNOcGRHbHZia2tpUjJsdWJHbHVaVHNnWm1sc1pXNWhiV1U5SW14dloyOHRiR2xuYUhRdWNHNW5JanNnWm1sc1pXNWhiV1VxUFZWVVJpMDRKeWRzYjJkdkxXeHBaMmgwTG5CdVp3WTdCbFE2RVdOdmJuUmxiblJmZEhsd1pVa2lEbWx0WVdkbEwzQnVad1k3QmxRNkVYTmxjblpwWTJWZmJtRnRaVG9LYkc5allXdz0iLCJleHAiOiIyMDI0LTExLTE1VDE5OjE4OjMyLjE1MVoiLCJwdXIiOiJibG9iX2tleSJ9fQ==--443f29462ca07fa4997f2f01c1db533408e664c0/logo-light.png\"\n            }\n        }\n    ]\n}"},{"id":"87b87602-f3a6-47ce-bbcf-434c601074c0","name":"204 No Content","originalRequest":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/user/upcoming"},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"9866cd940add7df186fee80b78dbc2bf\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"2879eb13-b0a3-4292-aab1-eb27aa851ed7"},{"key":"X-Runtime","value":"1.221040"},{"key":"Server-Timing","value":"cache_read.active_support;dur=0.19, cache_write.active_support;dur=0.12, start_processing.action_controller;dur=0.38, sql.active_record;dur=381.08, instantiation.active_record;dur=109.62, service_url.active_storage;dur=20.21, process_action.action_controller;dur=688.70"},{"key":"vary","value":"Origin"},{"key":"Content-Length","value":"20419"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"8f9af903-11f1-4822-8ba5-7f31ba908862"},{"name":"Get user's applications","id":"113dd00e-6c6e-42a5-ba20-3291ff75dcaf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/user/applications","description":"<p>The provided access token is first verified, and then a list of all the job applications associated with its owner is generated.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","user","applications"],"host":["https://api.embloy.com"],"query":[],"variable":[]}},"response":[{"id":"1f611765-fb98-468b-af45-963a01ac056b","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/user/applications"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"831da36ae6a7f29048a56fb673991de7\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"f4064747-cb2b-45ad-9ba6-4916ff18bd36"},{"key":"X-Runtime","value":"2.411860"},{"key":"vary","value":"Origin"},{"key":"Content-Length","value":"164441"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"application\": {\n            \"job_id\": 4,\n            \"user_id\": 6,\n            \"ext_id\": null,\n            \"updated_at\": \"2024-12-22T19:29:08.884Z\",\n            \"created_at\": \"2024-12-21T22:59:53.913Z\",\n            \"status\": \"pending\",\n            \"response\": null,\n            \"deleted_at\": null,\n            \"version\": 1,\n            \"submitted_at\": null\n        },\n        \"job\": {\n            \"id\": 4,\n            \"title\": \"Organic coffee shop looking for a barista\",\n            \"position\": \"Barista\",\n            \"key_skills\": \"Barista, Coffee, Customer Service\",\n            \"job_type\": \"Food\",\n            \"job_slug\": \"a341e95f-a766-4273-9a6f-0e41ec5dbeba\",\n            \"job_status\": \"listed\",\n            \"activity_status\": 1,\n            \"referrer_url\": \"https://embloy.com/\",\n            \"salary\": 18,\n            \"currency\": \"USD\",\n            \"euro_salary\": null,\n            \"start_slot\": \"2042-10-02T20:42:42.356Z\",\n            \"duration\": 20,\n            \"code_lang\": null,\n            \"longitude\": 11.613942994844358,\n            \"latitude\": 48.1951076,\n            \"country_code\": null,\n            \"postal_code\": null,\n            \"city\": null,\n            \"address\": null,\n            \"view_count\": 0,\n            \"applications_count\": 5,\n            \"created_at\": \"2024-11-15T15:55:05.311Z\",\n            \"updated_at\": \"2024-11-15T15:55:06.080Z\",\n            \"employer\": {\n                \"employer_email\": \"info@embloy.com\",\n                \"employer_name\": \"Embloy Platforms\",\n                \"employer_phone\": null,\n                \"employer_image_url\": \"http://localhost:3000/rails/active_storage/disk/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaDdDVG9JYTJWNVNTSWhOWEYyZFhsdVkyNXVkbTlwWlhWd2NUY3llSGN4WW1GemNHMW5ad1k2QmtWVU9oQmthWE53YjNOcGRHbHZia2tpUjJsdWJHbHVaVHNnWm1sc1pXNWhiV1U5SW14dloyOHRiR2xuYUhRdWNHNW5JanNnWm1sc1pXNWhiV1VxUFZWVVJpMDRKeWRzYjJkdkxXeHBaMmgwTG5CdVp3WTdCbFE2RVdOdmJuUmxiblJmZEhsd1pVa2lEbWx0WVdkbEwzQnVad1k3QmxRNkVYTmxjblpwWTJWZmJtRnRaVG9LYkc5allXdz0iLCJleHAiOiIyMDI1LTAxLTAyVDAwOjQ0OjEzLjIzMloiLCJwdXIiOiJibG9iX2tleSJ9fQ==--d4cbd89afe99ba8a096ea3cb17915ea389403674/logo-light.png\"\n            }\n        },\n        \"application_answers\": [\n            {\n                \"id\": 234,\n                \"job_id\": 4,\n                \"user_id\": 6,\n                \"application_option_id\": 28,\n                \"answer\": \"1231312\",\n                \"created_at\": \"2024-12-21T23:20:01.647Z\",\n                \"updated_at\": \"2024-12-21T23:20:01.647Z\",\n                \"deleted_at\": null,\n                \"version\": 1,\n                \"question\": \"Type in a random number\",\n                \"attachment\": null\n            },\n            {\n                \"id\": 236,\n                \"job_id\": 4,\n                \"user_id\": 6,\n                \"application_option_id\": 32,\n                \"answer\": \"[\\\"Yes, it's a free world\\\"]\",\n                \"created_at\": \"2024-12-21T23:20:02.784Z\",\n                \"updated_at\": \"2024-12-21T23:20:02.784Z\",\n                \"deleted_at\": null,\n                \"version\": 1,\n                \"question\": \"Are you allowed to drink Capuccino after 2pm?\",\n                \"attachment\": null\n            },\n            {\n                \"id\": 239,\n                \"job_id\": 4,\n                \"user_id\": 6,\n                \"application_option_id\": 25,\n                \"answer\": \"Yes\",\n                \"created_at\": \"2024-12-21T23:21:22.835Z\",\n                \"updated_at\": \"2024-12-21T23:21:22.835Z\",\n                \"deleted_at\": null,\n                \"version\": 1,\n                \"question\": \"Do you require a work Visa?\",\n                \"attachment\": null\n            },\n            {\n                \"id\": 240,\n                \"job_id\": 4,\n                \"user_id\": 6,\n                \"application_option_id\": 26,\n                \"answer\": \"Master's Degree\",\n                \"created_at\": \"2024-12-21T23:21:23.319Z\",\n                \"updated_at\": \"2024-12-21T23:21:23.319Z\",\n                \"deleted_at\": null,\n                \"version\": 1,\n                \"question\": \"Your highest degree of education\",\n                \"attachment\": null\n            },\n            {\n                \"id\": 241,\n                \"job_id\": 4,\n                \"user_id\": 6,\n                \"application_option_id\": 27,\n                \"answer\": \"https://github.com/username\",\n                \"created_at\": \"2024-12-21T23:21:23.411Z\",\n                \"updated_at\": \"2024-12-21T23:21:23.411Z\",\n                \"deleted_at\": null,\n                \"version\": 1,\n                \"question\": \"Your GitHub profile\",\n                \"attachment\": null\n            },\n            {\n                \"id\": 242,\n                \"job_id\": 4,\n                \"user_id\": 6,\n                \"application_option_id\": 33,\n                \"answer\": \"Yes\",\n                \"created_at\": \"2024-12-21T23:21:23.498Z\",\n                \"updated_at\": \"2024-12-21T23:21:23.498Z\",\n                \"deleted_at\": null,\n                \"version\": 1,\n                \"question\": \"This is a true false question\",\n                \"attachment\": null\n            }\n        ],\n        \"application_events\": []\n    },\n    {\n        \"application\": {\n            \"job_id\": 23,\n            \"user_id\": 6,\n            \"ext_id\": null,\n            \"updated_at\": \"2024-12-22T17:09:47.094Z\",\n            \"created_at\": \"2024-12-22T16:59:47.746Z\",\n            \"status\": \"pending\",\n            \"response\": null,\n            \"deleted_at\": null,\n            \"version\": 1,\n            \"submitted_at\": \"2024-12-22T17:09:47.091Z\"\n        },\n        \"job\": {\n            \"id\": 23,\n            \"title\": null,\n            \"position\": null,\n            \"key_skills\": null,\n            \"job_type\": null,\n            \"job_slug\": \"job__a341e95f-a766-4273-9a6f-0e41ec5dbeba\",\n            \"job_status\": \"unlisted\",\n            \"activity_status\": 1,\n            \"referrer_url\": \"http://localhost:3001/\",\n            \"salary\": null,\n            \"currency\": null,\n            \"euro_salary\": null,\n            \"start_slot\": null,\n            \"duration\": 1,\n            \"code_lang\": null,\n            \"longitude\": 0.0,\n            \"latitude\": 0.0,\n            \"country_code\": null,\n            \"postal_code\": null,\n            \"city\": null,\n            \"address\": null,\n            \"view_count\": 0,\n            \"applications_count\": 1,\n            \"created_at\": \"2024-12-22T16:33:10.496Z\",\n            \"updated_at\": \"2024-12-22T16:33:10.733Z\",\n            \"employer\": {\n                \"employer_email\": \"info@embloy.com\",\n                \"employer_name\": \"Embloy Platforms\",\n                \"employer_phone\": null,\n                \"employer_image_url\": \"http://localhost:3000/rails/active_storage/disk/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaDdDVG9JYTJWNVNTSWhOWEYyZFhsdVkyNXVkbTlwWlhWd2NUY3llSGN4WW1GemNHMW5ad1k2QmtWVU9oQmthWE53YjNOcGRHbHZia2tpUjJsdWJHbHVaVHNnWm1sc1pXNWhiV1U5SW14dloyOHRiR2xuYUhRdWNHNW5JanNnWm1sc1pXNWhiV1VxUFZWVVJpMDRKeWRzYjJkdkxXeHBaMmgwTG5CdVp3WTdCbFE2RVdOdmJuUmxiblJmZEhsd1pVa2lEbWx0WVdkbEwzQnVad1k3QmxRNkVYTmxjblpwWTJWZmJtRnRaVG9LYkc5allXdz0iLCJleHAiOiIyMDI1LTAxLTAyVDAwOjQ0OjEzLjMwMVoiLCJwdXIiOiJibG9iX2tleSJ9fQ==--36f4d6bce93cff4c660cba74498a379ad06f6100/logo-light.png\"\n            }\n        },\n        \"application_answers\": [],\n        \"application_events\": []\n    }\n]"},{"id":"f9054ce0-56f7-4971-a515-939fcbd1d57b","name":"204 No Content","originalRequest":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/user/applications"},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"113dd00e-6c6e-42a5-ba20-3291ff75dcaf"},{"name":"Get preferences","id":"6beb8c5e-b35e-45f6-93d3-73fe7ccd3b1b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/user/preferences","description":"<p>The provided access token is first verified, and then a response containing user preferences associated with its owner is generated.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","user","preferences"],"host":["https://api.embloy.com"],"query":[],"variable":[]}},"response":[{"id":"30049a3e-149f-4fd4-bf19-ff57800e066d","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/user/preferences"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"preferences\": {\n        \"id\": null,\n        \"user_id\": 1,\n        \"interests\": null,\n        \"experience\": null,\n        \"degree\": null,\n        \"num_jobs_done\": 0,\n        \"gender\": null,\n        \"spontaneity\": null,\n        \"job_types\": {\n            \"1\": 0,\n            \"2\": 0,\n            \"3\": 0\n        },\n        \"key_skills\": null,\n        \"salary_range\": [\n            0,\n            0\n        ],\n        \"cv_url\": null\n    }\n}"}],"_postman_id":"6beb8c5e-b35e-45f6-93d3-73fe7ccd3b1b"},{"name":"Get reviews","id":"f34dbd71-4ade-4674-a056-91db52dae7a7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/user/reviews","description":"<p>The provided access token is first verified, and then a list of all reviews associated with its owner is generated.The reviews cover both employer and employee submissions, providing a comprehensive overview of the experiences and perspectives.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","user","reviews"],"host":["https://api.embloy.com"],"query":[],"variable":[]}},"response":[{"id":"d9ddbcfc-7bc3-4caf-b26e-8f67c4220539","name":"204 No Content","originalRequest":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/user/reviews"},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"f34dbd71-4ade-4674-a056-91db52dae7a7"},{"name":"List user's webhooks","id":"ae69a322-abde-4830-8550-d756f7ecaf5a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/user/webhooks","description":"<p>Returns all registered webhooks of a user known to Embloy. In case this is out of sync with the the third party service that provides the webhooks, see this endpoint.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","user","webhooks"],"host":["https://api.embloy.com"],"query":[],"variable":[]}},"response":[{"id":"f55febee-148f-4bd5-8a1f-b1f538b84147","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/user/webhooks"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"webhooks\": [\n        {\n            \"id\": 8,\n            \"user_id\": 13,\n            \"url\": \"https://api.embloy.com/api/v0/webhooks/lever\",\n            \"event\": \"applicationCreated\",\n            \"source\": \"lever\",\n            \"ext_id\": \"lever__db1232b9-8c15-48d2-b21e-7c73fe2ff560\",\n            \"signatureToken\": \"331f0ba9ceb562aa9eb2053946fb927c50a2d1bf15cc5ebb\",\n            \"active\": true,\n            \"created_at\": \"2024-09-04T12:56:15.555Z\",\n            \"updated_at\": \"2024-09-04T12:56:15.555Z\"\n        }\n    ]\n}"},{"id":"1c0494c8-df13-46cc-846d-43aeb9144f9a","name":"204 No Content","originalRequest":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/user/webhooks"},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"ae69a322-abde-4830-8550-d756f7ecaf5a"},{"name":"Get user's events","id":"6b378149-9394-485e-a5c4-d5fec63208ad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/user/events","description":"<p>Returns all application events linked to a user.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","user","events"],"host":["https://api.embloy.com"],"query":[],"variable":[]}},"response":[{"id":"78a4e734-225c-4398-b863-03e61a4d991f","name":"204 No Content","originalRequest":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/user/webhooks"},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"6b378149-9394-485e-a5c4-d5fec63208ad"},{"name":"Rerfresh user's webhooks","id":"c12624c0-b9f6-4dcf-b04f-0049e7909cc0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://api.embloy.com/api/v0/user/webhooks/:source","description":"<p>This endpoint is used to re-synchronize the webhook configurations between Embloy and a third party service. Resets all user's webhooks for a selected service. To do this, it first fetches the desired webhooks, compares them with the current webhooks registerd in the third party service, and then creates or updates them accordingly.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","user","webhooks",":source"],"host":["https://api.embloy.com"],"query":[],"variable":[{"description":{"content":"<p>Service that needs to refresh its webhooks. Allowed values are:<code>embloy</code>,<code>lever</code>,<code>ashby</code></p>\n","type":"text/plain"},"type":"any","value":"ashby","key":"source"}]}},"response":[{"id":"8e4d1241-faeb-406f-937f-8e63da685ad8","name":"200 OK","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://api.embloy.com/api/v0/user/webhooks/:source","host":["https://api.embloy.com"],"path":["api","v0","user","webhooks",":source"],"variable":[{"key":"source","value":"lever","description":"Service that needs to refresh its webhooks. Allowed values are:`embloy`,`lever`,`ashby`"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Found 5 existing webhooks...\\nUpdating webhook for event 'applicationCreated':\\n\\tCreating webhook for event 'applicationCreated'...webhook created successfully 🚀\\nMissing webhook for event 'candidateHired':\\n\\tCreating webhook for event 'candidateHired'...webhook created successfully 🚀\\nMissing webhook for event 'candidateStageChange':\\n\\tCreating webhook for event 'candidateStageChange'...webhook created successfully 🚀\\nUpdating webhook for event 'candidateArchiveChange':\\n\\tCreating webhook for event 'candidateArchiveChange'...webhook created successfully 🚀\\nUpdating webhook for event 'candidateDeleted':\\n\\tCreating webhook for event 'candidateDeleted'...webhook created successfully 🚀\\nUpdating webhook for event 'interviewCreated':\\n\\tDeleting webhook for event 'interviewCreated'... webhook deleted successfully 🚀\\n\\tCreating webhook for event 'interviewCreated'...webhook created successfully 🚀\\nMissing webhook for event 'interviewUpdated':\\n\\tCreating webhook for event 'interviewUpdated'...webhook created successfully 🚀\\nUpdating webhook for event 'interviewDeleted':\\n\\tCreating webhook for event 'interviewDeleted'...webhook created successfully 🚀\\n\"\n}"},{"id":"84e66520-31d1-4c33-aad2-8f0d27855e66","name":"200 OK","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://api.embloy.com/api/v0/user/webhooks/:source","host":["https://api.embloy.com"],"path":["api","v0","user","webhooks",":source"],"variable":[{"key":"source","value":"lever","description":"Service that needs to refresh its webhooks. Allowed values are:`embloy`,`lever`,`ashby`"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Found 0 existing webhooks...\\nMissing webhook for event 'applicationSubmit':\\n\\tCreating webhook for event 'applicationSubmit...failed to create webhook for event 'applicationSubmit' 💥\\nMissing webhook for event 'applicationUpdate':\\n\\tCreating webhook for event 'applicationUpdate...failed to create webhook for event 'applicationUpdate' 💥\\nMissing webhook for event 'candidateHire':\\n\\tCreating webhook for event 'candidateHire...failed to create webhook for event 'candidateHire' 💥\\nMissing webhook for event 'candidateStageChange':\\n\\tCreating webhook for event 'candidateStageChange...failed to create webhook for event 'candidateStageChange' 💥\\nMissing webhook for event 'candidateDelete':\\n\\tCreating webhook for event 'candidateDelete...failed to create webhook for event 'candidateDelete' 💥\\nMissing webhook for event 'candidateMerge':\\n\\tCreating webhook for event 'candidateMerge...failed to create webhook for event 'candidateMerge' 💥\\nMissing webhook for event 'interviewPlanTransition':\\n\\tCreating webhook for event 'interviewPlanTransition...failed to create webhook for event 'interviewPlanTransition' 💥\\nMissing webhook for event 'interviewScheduleCreate':\\n\\tCreating webhook for event 'interviewScheduleCreate...failed to create webhook for event 'interviewScheduleCreate' 💥\\nMissing webhook for event 'interviewScheduleUpdate':\\n\\tCreating webhook for event 'interviewScheduleUpdate...failed to create webhook for event 'interviewScheduleUpdate' 💥\\nMissing webhook for event 'jobPostingUpdate':\\n\\tCreating webhook for event 'jobPostingUpdate...failed to create webhook for event 'jobPostingUpdate' 💥\\nMissing webhook for event 'jobPostingPublish':\\n\\tCreating webhook for event 'jobPostingPublish...failed to create webhook for event 'jobPostingPublish' 💥\\nMissing webhook for event 'jobPostingUnpublish':\\n\\tCreating webhook for event 'jobPostingUnpublish...failed to create webhook for event 'jobPostingUnpublish' 💥\\nMissing webhook for event 'offerCreate':\\n\\tCreating webhook for event 'offerCreate...failed to create webhook for event 'offerCreate' 💥\\nMissing webhook for event 'offerUpdate':\\n\\tCreating webhook for event 'offerUpdate...failed to create webhook for event 'offerUpdate' 💥\\nMissing webhook for event 'offerDelete':\\n\\tCreating webhook for event 'offerDelete...failed to create webhook for event 'offerDelete' 💥\\nMissing webhook for event 'pushToHRIS':\\n\\tCreating webhook for event 'pushToHRIS...failed to create webhook for event 'pushToHRIS' 💥\\nMissing webhook for event 'surveySubmit':\\n\\tCreating webhook for event 'surveySubmit...failed to create webhook for event 'surveySubmit' 💥\\n\"\n}"},{"id":"7880db6b-66af-4d24-9145-6e2b3bd48e13","name":"401 Unauthorized","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://api.embloy.com/api/v0/user/webhooks/:source","host":["https://api.embloy.com"],"path":["api","v0","user","webhooks",":source"],"variable":[{"key":"source","value":"lever","description":"Service that needs to refresh its webhooks. Allowed values are:`embloy`,`lever`,`ashby`"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"oauth\": [\n        {\n            \"error\": \"ERR_INVALID\",\n            \"description\": \"OAUth flow not authorized\"\n        }\n    ]\n}"},{"id":"ba46560c-bcb8-45b4-8fed-66027974a4ab","name":"422 Unprocessable Content","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.embloy.com/api/v0/user/webhooks/:source","host":["https://api.embloy.com"],"path":["api","v0","user","webhooks",":source"],"variable":[{"key":"source","value":"examplesourcethatdoesnotexist","description":"Service that needs to refresh its webhooks. Allowed values are:`embloy`,`lever`,`ashby`"}]}},"status":"Unprocessable Content","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"Unknown source\"\n}"}],"_postman_id":"c12624c0-b9f6-4dcf-b04f-0049e7909cc0"},{"name":"Create user","id":"110d59f7-4ca3-4a6e-9832-be7083b056f3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"user\": {\r\n    \"email\": \"carlo.bortolan@de.embloy.com\",\r\n    \"first_name\": \"Carlo\",\r\n    \"last_name\": \"Bortolan\",\r\n    \"password\": \"123123123\",\r\n    \"password_confirmation\": \"123123123\"\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.embloy.com/api/v0/user","description":"<p>This creates an user at its related records. In its entirety, this is referred to as an Embloy account. An freshly created Embloy account is inactive and first needs to be verified by the user. Note that the minimum password length is 8 characters and the maximum password length is 72 characters. <code>password</code> and <code>password_confirmation</code> need to match.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","user"],"host":["https://api.embloy.com"],"query":[],"variable":[]}},"response":[{"id":"4c079848-c15d-410f-9a74-e667f674b9b3","name":"201 Created","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n  \"user\": {\r\n    \"email\": \"winston.smith@embloy.com\",\r\n    \"first_name\": \"Winston\",\r\n    \"last_name\": \"Smith\",\r\n    \"password\": \"doublethink\",\r\n    \"password_confirmation\": \"doublethink\"\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.embloy.com/api/v0/user"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Account registered! Please activate your account and claim your refresh token via GET /api/v0/user/verify \"\n}"}],"_postman_id":"110d59f7-4ca3-4a6e-9832-be7083b056f3"},{"name":"Upload profile image","id":"1f248aac-ce80-4543-8671-034c8d351188","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"image_url","type":"file","description":"<p>The user's new profile image as a file</p>\n","src":"SROBuQXwo/logo-light.png"}]},"url":"https://api.embloy.com/api/v0/user/image","description":"<p>The provided access token is first verified, and then the user's profile image is updated.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","user","image"],"host":["https://api.embloy.com"],"query":[],"variable":[]}},"response":[{"id":"1a3def40-d66f-4d1c-a92d-da51c42a5858","name":"200 OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"image_url","type":"file","description":"The user's new profile image as a file","fileNotInWorkingDirectoryWarning":"This file isn't in your working directory. Teammates you share this request with won't be able to use this file. To make collaboration easier you can setup your working directory in Settings.","src":"/C:/Users/carlo/Pictures/Saved Pictures/7c655da21b075c3b05a09c37e2b44e592f05bcd4f915f63340b94b68194470b8.jpg"}]},"url":"https://api.embloy.com/api/v0/user/image"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"image_url\": \"https://f005.backblazeb2.com/file/TestEmbloy/hrv0t9t8hd57p2f183n0phhx6tf5?Authorization=3_20240107194856_b385897f84e043696cf90c7c_5e0788424bb9485c44398f2bd7faa77df14bdaee_005_20240114194856_0028_dnld\"\n}"},{"id":"6e74318f-8278-4981-a7ed-9ee4b270ae0a","name":"400 Bad Request","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"image_url","type":"file","description":"The user's new profile image as a file","src":"1WUVUGVEJ/merged-123.pdf"}]},"url":"https://api.embloy.com/api/v0/user/image"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"92bac14d-0ae9-4547-943a-1f04b4150ad7"},{"key":"X-Runtime","value":"1.175759"},{"key":"Server-Timing","value":"cache_read.active_support;dur=0.24, cache_write.active_support;dur=0.12, start_processing.action_controller;dur=0.48, sql.active_record;dur=418.80, instantiation.active_record;dur=0.37, process_action.action_controller;dur=967.95"},{"key":"vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"Bad request\",\n    \"details\": {\n        \"image_url\": [\n            {\n                \"error\": {\n                    \"error\": \"ERR_INVALID\",\n                    \"description\": \"is too large (max is 2 MB)\"\n                }\n            }\n        ]\n    }\n}"},{"id":"ba40edec-2991-4c70-99ad-5e02bcfe32f1","name":"400 Bad Request","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"image_url","type":"file","description":"The user's new profile image as a file","src":"OXRCu8xlC/Japanisch12.pdf"}]},"url":"https://api.embloy.com/api/v0/user/image"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"1fb4b30f-18b4-423b-85c0-71a914f165a2"},{"key":"X-Runtime","value":"0.421723"},{"key":"Server-Timing","value":"cache_read.active_support;dur=0.36, cache_write.active_support;dur=0.08, start_processing.action_controller;dur=0.46, sql.active_record;dur=282.29, instantiation.active_record;dur=0.33, process_action.action_controller;dur=249.01"},{"key":"vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"Bad request\",\n    \"details\": {\n        \"image_url\": [\n            {\n                \"error\": {\n                    \"error\": \"ERR_INVALID\",\n                    \"description\": \"must be a PNG, JPG, or JPEG image\"\n                }\n            }\n        ]\n    }\n}"}],"_postman_id":"1f248aac-ce80-4543-8671-034c8d351188"},{"name":"Reset password","id":"969a3f0a-af9e-4e62-9eb1-a72110864f27","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[],"url":"https://api.embloy.com/api/v0/user/password/reset?email=your-name@example.com","description":"<p>Initiates the password reset process by sending an email with a password reset token (valid for 15 minutes) to the current user's email.</p>\n","urlObject":{"path":["api","v0","user","password","reset"],"host":["https://api.embloy.com"],"query":[{"description":{"content":"<p>Email of the account that needs to reset password.</p>\n","type":"text/plain"},"key":"email","value":"your-name@example.com"}],"variable":[]}},"response":[{"id":"5d685e1b-b686-47d4-9664-14c8fdfe7340","name":"202 Accepted","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://api.embloy.com/api/v0/user/password/reset?email=your-name@example.com","host":["https://api.embloy.com"],"path":["api","v0","user","password","reset"],"query":[{"key":"email","value":"your-name@example.com","description":"Email of the account that needs to reset password."}]}},"status":"Accepted","code":202,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Password reset process initiated! Please check your mailbox.\"\n}"}],"_postman_id":"969a3f0a-af9e-4e62-9eb1-a72110864f27"},{"name":"Reset password","id":"7b07c653-5489-4d04-b3c6-51480e6c7414","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"user\": {\n        \"password\": \"doublethink\",\n        \"password_confirmation\": \"doublethink\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.embloy.com/api/v0/user/password/reset?token=insert-password-reset-token","description":"<p>Resets the current user's password. Note that the minimum password length is 8 characters and the maximum password length is 72 characters. <code>password</code> and <code>password_confirmation</code> need to match.</p>\n","urlObject":{"path":["api","v0","user","password","reset"],"host":["https://api.embloy.com"],"query":[{"description":{"content":"<p>Password reset token provided which can also be found in the email sent to the user when he initiates the password reset process</p>\n","type":"text/plain"},"key":"token","value":"insert-password-reset-token"}],"variable":[]}},"response":[{"id":"6729c019-f50b-4311-952b-de6099a3f6e3","name":"400 Bad Request","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"user\": {\n        \"password\": \"doublethink\",\n        \"password_confirmation\": \"doublethink\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.embloy.com/api/v0/user/password/reset?token=insert-password-reset-token","host":["https://api.embloy.com"],"path":["api","v0","user","password","reset"],"query":[{"key":"token","value":"insert-password-reset-token","description":"Password reset token provided which can also be found in the email sent to the user when he initiates the password reset process"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Token has either expired, has a purpose mismatch, is for another record, or has been tampered with\"\n}"}],"_postman_id":"7b07c653-5489-4d04-b3c6-51480e6c7414"},{"name":"Update  password","id":"43056e71-ba5e-486f-a676-0a27ee92f2aa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"user\": {\n        \"password\": \"doublethink\",\n        \"password_confirmation\": \"doublethink\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.embloy.com/api/v0/user/password","description":"<p>Updates the current user's password. Note that the minimum password length is 8 characters and the maximum password length is 72 characters. <code>password</code> and <code>password_confirmation</code> need to match.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","user","password"],"host":["https://api.embloy.com"],"query":[],"variable":[]}},"response":[{"id":"67f6c70e-251f-489f-a768-2d8953934b6e","name":"200 OK","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"user\": {\n        \"password\": \"insert-password\",\n        \"password_confirmation\": \"insert-password\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.embloy.com/api/v0/user/password"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Password updated\"\n}"}],"_postman_id":"43056e71-ba5e-486f-a676-0a27ee92f2aa"},{"name":"Update user","id":"a962de05-cf83-4c29-8495-1bdacf06454d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\r\n  \"user\": {\r\n    \"email\": \"winston.smith@embloy.com\",\r\n    \"first_name\": \"Winston\",\r\n    \"last_name\": \"Smith\"\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.embloy.com/api/v0/user","description":"<p>The provided access token is first verified, and then the current user's profile is updated.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","user"],"host":["https://api.embloy.com"],"query":[],"variable":[]}},"response":[{"id":"a254cb10-5b9c-4c6c-94ad-cae959439799","name":"200 OK","originalRequest":{"method":"PATCH","header":[{"key":"access_token","value":"","description":"A valid access_token is needed to authenticate and authorize the current user. For further information see: [access_token endpoint](https://documenter.getpostman.com/view/24977803/2s9YRB2rkE#e29e5a54-533b-413a-9e04-b608cc4acd68)"}],"body":{"mode":"raw","raw":"{\r\n  \"user\": {\r\n    \"email\": \"winston.smith@embloy.com\",\r\n    \"first_name\": \"Winston\",\r\n    \"last_name\": \"Smith\",\r\n    \"password\": \"doublethink\",\r\n    \"password_confirmation\": \"doublethink\"\r\n  }\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.embloy.com/api/v0/user"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Successfully updated user.\"\n}"}],"_postman_id":"a962de05-cf83-4c29-8495-1bdacf06454d"},{"name":"Delete user","id":"619c8b86-567e-459f-9619-ca3c27b6641a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://api.embloy.com/api/v0/user","description":"<p>The provided access token is first verified, and then the current user as well as all other associated records are deleted permanently.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","user"],"host":["https://api.embloy.com"],"query":[],"variable":[]}},"response":[{"id":"40ab274f-4a27-41d4-b1b7-fb01fdce164c","name":"200 OK","originalRequest":{"method":"DELETE","header":[],"url":"https://api.embloy.com/api/v0/user"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"User deleted!\"\n}"}],"_postman_id":"619c8b86-567e-459f-9619-ca3c27b6641a"},{"name":"Delete profile image","id":"1bcaaf10-d984-4574-9283-aaa850983e4f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://api.embloy.com/api/v0/user/image","description":"<p>The provided access token is first verified, and then the current user's profile image is deleted permanently.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","user","image"],"host":["https://api.embloy.com"],"query":[],"variable":[]}},"response":[{"id":"ffc2d177-61c9-4db9-b2f7-567f7510daf5","name":"200 OK","originalRequest":{"method":"DELETE","header":[],"url":"https://api.embloy.com/api/v0/user/image"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-xss-protection","value":"0"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-download-options","value":"noopen"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"referrer-policy","value":"strict-origin-when-cross-origin"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"etag","value":"W/\"d28582a4311a36c0c2ccc4b3cd1efa3a\""},{"key":"cache-control","value":"max-age=0, private, must-revalidate"},{"key":"x-request-id","value":"93b3254d-b992-4b46-99dc-8a4f7d1522fb"},{"key":"x-runtime","value":"0.171789"},{"key":"strict-transport-security","value":"max-age=63072000; includeSubDomains"},{"key":"vary","value":"Origin"},{"key":"content-length","value":"49"},{"key":"date","value":"Fri, 15 Nov 2024 04:32:32 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Profile image successfully removed.\"\n}"}],"_postman_id":"1bcaaf10-d984-4574-9283-aaa850983e4f"},{"name":"Deactivate Integration","id":"520941d1-575a-42c0-9d49-b85ee2bb7d65","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://api.embloy.com/api/v0/user/integrations/:source?archive_jobs=0","description":"<p>Deactivate a third-party integration for the current user and delete all webhooks. Optionally archives Embloy copies of external job postings.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","user","integrations",":source"],"host":["https://api.embloy.com"],"query":[{"description":{"content":"<p>Flag to optionally archive all jobs from the third party service. </p>\n","type":"text/plain"},"key":"archive_jobs","value":"0"}],"variable":[{"description":{"content":"<p>Service that needs to refresh its webhooks. Allowed values are:<code>embloy</code>,<code>lever</code>,<code>ashby</code></p>\n","type":"text/plain"},"type":"any","value":"ashby","key":"source"}]}},"response":[{"id":"9ff723dc-87fb-480c-8771-f545b0028779","name":"200 OK","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://api.embloy.com/api/v0/user/integrations/:source?archive_jobs=0","host":["https://api.embloy.com"],"path":["api","v0","user","integrations",":source"],"query":[{"key":"archive_jobs","value":"0","description":"Flag to optionally archive all jobs from the third party service. "}],"variable":[{"key":"source","value":"","description":"Service that needs to refresh its webhooks. Allowed values are:`embloy`,`lever`,`ashby`"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"cbb63218294f643a3f004103dcc866dd\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"3f523e1c-9218-4925-ba16-4b0f60469f52"},{"key":"X-Runtime","value":"0.326879"},{"key":"Server-Timing","value":"cache_read.active_support;dur=0.18, cache_write.active_support;dur=0.06, start_processing.action_controller;dur=0.33, sql.active_record;dur=250.99, instantiation.active_record;dur=0.33, unpermitted_parameters.action_controller;dur=0.30, process_action.action_controller;dur=134.80"},{"key":"vary","value":"Origin"},{"key":"Content-Length","value":"51"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Integration deactivated successfully.\"\n}"}],"_postman_id":"520941d1-575a-42c0-9d49-b85ee2bb7d65"}],"id":"bcb60e9d-92d7-4f5b-8e72-137270f96af3","description":"<p>All requests related to users' own jobs, applications, profile, preferences and reviews.</p>\n","_postman_id":"bcb60e9d-92d7-4f5b-8e72-137270f96af3","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}}},{"name":"Company","item":[{"name":"Get company job board","id":"64569df3-92b1-4c45-8ee9-5f2f257b8938","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/company/insert-company-id/board","description":"<p>This endpoint returns all listed jobs, including relevant information for a company's job page.</p>\n<p>Only accessible for job boards created by subscribed company users or sandbox users.</p>\n<p>Note that you can replace the <code>company_id</code> with the <code>company_slug</code> in this endpoint.</p>\n","urlObject":{"path":["api","v0","company","insert-company-id","board"],"host":["https://api.embloy.com"],"query":[],"variable":[]}},"response":[{"id":"5e08c4bc-d8ef-4743-bf55-7b4c4ae67e73","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/company/insert-company-id/board"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"5d226da10f47c886f9c8bd07de880c46\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"89ba1cf3-34d8-4e02-bd3e-cf46dad5b469"},{"key":"X-Runtime","value":"1.127924"},{"key":"Server-Timing","value":"cache_read.active_support;dur=0.13, cache_write.active_support;dur=0.14, start_processing.action_controller;dur=0.54, sql.active_record;dur=359.97, instantiation.active_record;dur=147.42, service_url.active_storage;dur=1.55, process_action.action_controller;dur=564.84"},{"key":"vary","value":"Origin"},{"key":"Content-Length","value":"10203"}],"cookie":[],"responseTime":null,"body":"{\n    \"company\": {\n        \"id\": 6,\n        \"company_name\": \"Embloy Platforms\",\n        \"company_phone\": \"004912345678910\",\n        \"company_email\": \"info@embloy.com\",\n        \"company_urls\": [\n            \"https://github.com/embloy\",\n            \"https://www.linkedin.com/company/embloy\",\n            \"https://about.embloy.com\"\n        ],\n        \"company_industry\": \"Technology\",\n        \"company_description\": {\n            \"id\": 21,\n            \"name\": \"company_description\",\n            \"body\": \"<h1 id=\\\"the-world-s-first-job-application-api\\\">The World's First Job Application API</h1>\\n<p>Deliver <strong>outstanding candidate experiences</strong> by offering the option to apply with Embloy.</p>\\n<p>Find out more at <a href=\\\"https://about.embloy.com/en/\\\">https://about.embloy.com/en/</a>.</p>\\n<p><img src=\\\"https://avatars.githubusercontent.com/u/132399266?s=200&amp;v=4\\\" alt=\\\"logo\\\"></p>\\n<p><em>Sign up to Embloy and apply for jobs with Venmo-like simplicity. Create an account once, use it to apply with one click and manage your applications in one place.</em></p>\",\n            \"record_type\": \"User\",\n            \"record_id\": 6,\n            \"created_at\": \"2024-11-15T16:07:40.263Z\",\n            \"updated_at\": \"2024-11-15T16:07:40.263Z\"\n        },\n        \"company_logo\": \"http://localhost:3000/rails/active_storage/disk/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaDdDVG9JYTJWNVNTSWhNblZqT0dGb2JqaG5lVE5qYVhobGFXZDBPR3A1YkRRMGEySmhkUVk2QmtWVU9oQmthWE53YjNOcGRHbHZia2tpUjJsdWJHbHVaVHNnWm1sc1pXNWhiV1U5SW14dloyOHRiR2xuYUhRdWNHNW5JanNnWm1sc1pXNWhiV1VxUFZWVVJpMDRKeWRzYjJkdkxXeHBaMmgwTG5CdVp3WTdCbFE2RVdOdmJuUmxiblJmZEhsd1pVa2lEbWx0WVdkbEwzQnVad1k3QmxRNkVYTmxjblpwWTJWZmJtRnRaVG9LYkc5allXdz0iLCJleHAiOiIyMDI0LTExLTE1VDE5OjIzOjM5LjE0MFoiLCJwdXIiOiJibG9iX2tleSJ9fQ==--c4662950a299a088ce6e4e030eace1b5fcabb4cc/logo-light.png\",\n        \"company_slug\": \"embloy\"\n    },\n    \"jobs\": [\n        {\n            \"id\": 19,\n            \"title\": \"Organic coffee shop looking for a barista\",\n            \"position\": \"Barista\",\n            \"key_skills\": \"Barista, Coffee, Customer Service\",\n            \"job_type\": \"Food\",\n            \"job_slug\": \"dae91130-d943-4576-972e-fa5e05d6eb57\",\n            \"job_status\": \"listed\",\n            \"activity_status\": 1,\n            \"referrer_url\": \"https://embloy.com/\",\n            \"salary\": 18,\n            \"currency\": \"USD\",\n            \"euro_salary\": null,\n            \"start_slot\": \"2042-10-02T20:42:42.356Z\",\n            \"duration\": 20,\n            \"code_lang\": null,\n            \"longitude\": 11.613942994844358,\n            \"latitude\": 48.1951076,\n            \"country_code\": null,\n            \"postal_code\": null,\n            \"city\": null,\n            \"address\": null,\n            \"view_count\": 0,\n            \"applications_count\": 0,\n            \"created_at\": \"2024-11-15T19:15:31.483Z\",\n            \"updated_at\": \"2024-11-15T19:15:32.256Z\"\n        },\n        {\n            \"id\": 18,\n            \"title\": \"Organic coffee shop looking for a barista\",\n            \"position\": \"Barista\",\n            \"key_skills\": \"Barista, Coffee, Customer Service\",\n            \"job_type\": \"Food\",\n            \"job_slug\": \"f41fb821-0878-4e59-a74d-cc81883e0922\",\n            \"job_status\": \"listed\",\n            \"activity_status\": 1,\n            \"referrer_url\": \"https://embloy.com/\",\n            \"salary\": 18,\n            \"currency\": \"USD\",\n            \"euro_salary\": null,\n            \"start_slot\": \"2042-10-02T20:42:42.356Z\",\n            \"duration\": 20,\n            \"code_lang\": null,\n            \"longitude\": 11.613942994844358,\n            \"latitude\": 48.1951076,\n            \"country_code\": null,\n            \"postal_code\": null,\n            \"city\": null,\n            \"address\": null,\n            \"view_count\": 0,\n            \"applications_count\": 0,\n            \"created_at\": \"2024-11-15T16:41:13.279Z\",\n            \"updated_at\": \"2024-11-15T16:41:14.064Z\"\n        },\n        {\n            \"id\": 17,\n            \"title\": \"Organic coffee shop looking for a barista\",\n            \"position\": \"Barista\",\n            \"key_skills\": \"Barista, Coffee, Customer Service\",\n            \"job_type\": \"Food\",\n            \"job_slug\": \"01dfa701-1c88-43ed-8baf-58bbfb113e04\",\n            \"job_status\": \"listed\",\n            \"activity_status\": 1,\n            \"referrer_url\": \"https://embloy.com/\",\n            \"salary\": 18,\n            \"currency\": \"USD\",\n            \"euro_salary\": null,\n            \"start_slot\": \"2042-10-02T20:42:42.356Z\",\n            \"duration\": 20,\n            \"code_lang\": null,\n            \"longitude\": 11.613942994844358,\n            \"latitude\": 48.1951076,\n            \"country_code\": null,\n            \"postal_code\": null,\n            \"city\": null,\n            \"address\": null,\n            \"view_count\": 0,\n            \"applications_count\": 0,\n            \"created_at\": \"2024-11-15T16:02:53.561Z\",\n            \"updated_at\": \"2024-11-15T16:02:54.724Z\"\n        },\n        {\n            \"id\": 16,\n            \"title\": \"Organic coffee shop looking for a barista\",\n            \"position\": \"Barista\",\n            \"key_skills\": \"Barista, Coffee, Customer Service\",\n            \"job_type\": \"Food\",\n            \"job_slug\": \"ba428748-e713-4ce1-85a4-0ec635aeb7f6\",\n            \"job_status\": \"listed\",\n            \"activity_status\": 1,\n            \"referrer_url\": \"https://embloy.com/\",\n            \"salary\": 18,\n            \"currency\": \"USD\",\n            \"euro_salary\": null,\n            \"start_slot\": \"2042-10-02T20:42:42.356Z\",\n            \"duration\": 20,\n            \"code_lang\": null,\n            \"longitude\": 11.613942994844358,\n            \"latitude\": 48.1951076,\n            \"country_code\": null,\n            \"postal_code\": null,\n            \"city\": null,\n            \"address\": null,\n            \"view_count\": 0,\n            \"applications_count\": 0,\n            \"created_at\": \"2024-11-15T16:02:53.064Z\",\n            \"updated_at\": \"2024-11-15T16:02:53.801Z\"\n        },\n        {\n            \"id\": 15,\n            \"title\": \"Organic coffee shop looking for a barista\",\n            \"position\": \"Barista\",\n            \"key_skills\": \"Barista, Coffee, Customer Service\",\n            \"job_type\": \"Food\",\n            \"job_slug\": \"ff0b3324-ee71-4c78-811a-70ddc7822fd8\",\n            \"job_status\": \"listed\",\n            \"activity_status\": 1,\n            \"referrer_url\": \"https://embloy.com/\",\n            \"salary\": 18,\n            \"currency\": \"USD\",\n            \"euro_salary\": null,\n            \"start_slot\": \"2042-10-02T20:42:42.356Z\",\n            \"duration\": 20,\n            \"code_lang\": null,\n            \"longitude\": 11.613942994844358,\n            \"latitude\": 48.1951076,\n            \"country_code\": null,\n            \"postal_code\": null,\n            \"city\": null,\n            \"address\": null,\n            \"view_count\": 0,\n            \"applications_count\": 0,\n            \"created_at\": \"2024-11-15T16:02:51.660Z\",\n            \"updated_at\": \"2024-11-15T16:02:52.448Z\"\n        },\n        {\n            \"id\": 14,\n            \"title\": \"Organic coffee shop looking for a barista\",\n            \"position\": \"Barista\",\n            \"key_skills\": \"Barista, Coffee, Customer Service\",\n            \"job_type\": \"Food\",\n            \"job_slug\": \"25339723-818c-4a59-81cf-d01f6b2e56ca\",\n            \"job_status\": \"listed\",\n            \"activity_status\": 1,\n            \"referrer_url\": \"https://embloy.com/\",\n            \"salary\": 18,\n            \"currency\": \"USD\",\n            \"euro_salary\": null,\n            \"start_slot\": \"2042-10-02T20:42:42.356Z\",\n            \"duration\": 20,\n            \"code_lang\": null,\n            \"longitude\": 11.613942994844358,\n            \"latitude\": 48.1951076,\n            \"country_code\": null,\n            \"postal_code\": null,\n            \"city\": null,\n            \"address\": null,\n            \"view_count\": 0,\n            \"applications_count\": 0,\n            \"created_at\": \"2024-11-15T16:02:50.597Z\",\n            \"updated_at\": \"2024-11-15T16:02:51.371Z\"\n        },\n        {\n            \"id\": 13,\n            \"title\": \"Organic coffee shop looking for a barista\",\n            \"position\": \"Barista\",\n            \"key_skills\": \"Barista, Coffee, Customer Service\",\n            \"job_type\": \"Food\",\n            \"job_slug\": \"18b04340-7621-42a9-ab0c-70e7c1889ada\",\n            \"job_status\": \"listed\",\n            \"activity_status\": 1,\n            \"referrer_url\": \"https://embloy.com/\",\n            \"salary\": 18,\n            \"currency\": \"USD\",\n            \"euro_salary\": null,\n            \"start_slot\": \"2042-10-02T20:42:42.356Z\",\n            \"duration\": 20,\n            \"code_lang\": null,\n            \"longitude\": 11.613942994844358,\n            \"latitude\": 48.1951076,\n            \"country_code\": null,\n            \"postal_code\": null,\n            \"city\": null,\n            \"address\": null,\n            \"view_count\": 0,\n            \"applications_count\": 0,\n            \"created_at\": \"2024-11-15T16:02:46.842Z\",\n            \"updated_at\": \"2024-11-15T16:02:47.632Z\"\n        },\n        {\n            \"id\": 12,\n            \"title\": \"Organic coffee shop looking for a barista\",\n            \"position\": \"Barista\",\n            \"key_skills\": \"Barista, Coffee, Customer Service\",\n            \"job_type\": \"Food\",\n            \"job_slug\": \"5ab24a2b-8731-4039-a8d7-e6e2ba25846c\",\n            \"job_status\": \"listed\",\n            \"activity_status\": 1,\n            \"referrer_url\": \"https://embloy.com/\",\n            \"salary\": 18,\n            \"currency\": \"USD\",\n            \"euro_salary\": null,\n            \"start_slot\": \"2042-10-02T20:42:42.356Z\",\n            \"duration\": 20,\n            \"code_lang\": null,\n            \"longitude\": 11.613942994844358,\n            \"latitude\": 48.1951076,\n            \"country_code\": null,\n            \"postal_code\": null,\n            \"city\": null,\n            \"address\": null,\n            \"view_count\": 0,\n            \"applications_count\": 0,\n            \"created_at\": \"2024-11-15T16:02:44.050Z\",\n            \"updated_at\": \"2024-11-15T16:02:44.763Z\"\n        },\n        {\n            \"id\": 11,\n            \"title\": \"Organic coffee shop looking for a barista\",\n            \"position\": \"Barista\",\n            \"key_skills\": \"Barista, Coffee, Customer Service\",\n            \"job_type\": \"Food\",\n            \"job_slug\": \"600353f2-6b6e-4dc2-8e81-d0085ba1c985\",\n            \"job_status\": \"listed\",\n            \"activity_status\": 1,\n            \"referrer_url\": \"https://embloy.com/\",\n            \"salary\": 18,\n            \"currency\": \"USD\",\n            \"euro_salary\": null,\n            \"start_slot\": \"2042-10-02T20:42:42.356Z\",\n            \"duration\": 20,\n            \"code_lang\": null,\n            \"longitude\": 11.613942994844358,\n            \"latitude\": 48.1951076,\n            \"country_code\": null,\n            \"postal_code\": null,\n            \"city\": null,\n            \"address\": null,\n            \"view_count\": 0,\n            \"applications_count\": 0,\n            \"created_at\": \"2024-11-15T16:02:42.324Z\",\n            \"updated_at\": \"2024-11-15T16:02:43.064Z\"\n        },\n        {\n            \"id\": 10,\n            \"title\": \"Organic coffee shop looking for a barista\",\n            \"position\": \"Barista\",\n            \"key_skills\": \"Barista, Coffee, Customer Service\",\n            \"job_type\": \"Food\",\n            \"job_slug\": \"75d53abe-b292-4ee9-984e-06b987842d95\",\n            \"job_status\": \"listed\",\n            \"activity_status\": 1,\n            \"referrer_url\": \"https://embloy.com/\",\n            \"salary\": 18,\n            \"currency\": \"USD\",\n            \"euro_salary\": null,\n            \"start_slot\": \"2042-10-02T20:42:42.356Z\",\n            \"duration\": 20,\n            \"code_lang\": null,\n            \"longitude\": 11.613942994844358,\n            \"latitude\": 48.1951076,\n            \"country_code\": null,\n            \"postal_code\": null,\n            \"city\": null,\n            \"address\": null,\n            \"view_count\": 0,\n            \"applications_count\": 0,\n            \"created_at\": \"2024-11-15T16:02:40.947Z\",\n            \"updated_at\": \"2024-11-15T16:02:41.674Z\"\n        },\n        {\n            \"id\": 9,\n            \"title\": \"Organic coffee shop looking for a barista\",\n            \"position\": \"Barista\",\n            \"key_skills\": \"Barista, Coffee, Customer Service\",\n            \"job_type\": \"Food\",\n            \"job_slug\": \"1c796fad-9896-4291-9cbd-a1470552772f\",\n            \"job_status\": \"listed\",\n            \"activity_status\": 1,\n            \"referrer_url\": \"https://embloy.com/\",\n            \"salary\": 18,\n            \"currency\": \"USD\",\n            \"euro_salary\": null,\n            \"start_slot\": \"2042-10-02T20:42:42.356Z\",\n            \"duration\": 20,\n            \"code_lang\": null,\n            \"longitude\": 11.613942994844358,\n            \"latitude\": 48.1951076,\n            \"country_code\": null,\n            \"postal_code\": null,\n            \"city\": null,\n            \"address\": null,\n            \"view_count\": 0,\n            \"applications_count\": 0,\n            \"created_at\": \"2024-11-15T16:02:38.402Z\",\n            \"updated_at\": \"2024-11-15T16:02:39.677Z\"\n        },\n        {\n            \"id\": 8,\n            \"title\": \"Organic coffee shop looking for a barista\",\n            \"position\": \"Barista\",\n            \"key_skills\": \"Barista, Coffee, Customer Service\",\n            \"job_type\": \"Food\",\n            \"job_slug\": \"23640080-907e-4fbc-adf0-85e7dfb2c993\",\n            \"job_status\": \"listed\",\n            \"activity_status\": 1,\n            \"referrer_url\": \"https://embloy.com/\",\n            \"salary\": 18,\n            \"currency\": \"USD\",\n            \"euro_salary\": null,\n            \"start_slot\": \"2042-10-02T20:42:42.356Z\",\n            \"duration\": 20,\n            \"code_lang\": null,\n            \"longitude\": 11.613942994844358,\n            \"latitude\": 48.1951076,\n            \"country_code\": null,\n            \"postal_code\": null,\n            \"city\": null,\n            \"address\": null,\n            \"view_count\": 0,\n            \"applications_count\": 0,\n            \"created_at\": \"2024-11-15T16:02:37.900Z\",\n            \"updated_at\": \"2024-11-15T16:02:38.775Z\"\n        },\n        {\n            \"id\": 7,\n            \"title\": \"Organic coffee shop looking for a barista\",\n            \"position\": \"Barista\",\n            \"key_skills\": \"Barista, Coffee, Customer Service\",\n            \"job_type\": \"Food\",\n            \"job_slug\": \"aa77a432-a0bc-43f3-87b8-09fe6cc6eff3\",\n            \"job_status\": \"listed\",\n            \"activity_status\": 1,\n            \"referrer_url\": \"https://embloy.com/\",\n            \"salary\": 18,\n            \"currency\": \"USD\",\n            \"euro_salary\": null,\n            \"start_slot\": \"2042-10-02T20:42:42.356Z\",\n            \"duration\": 20,\n            \"code_lang\": null,\n            \"longitude\": 11.613942994844358,\n            \"latitude\": 48.1951076,\n            \"country_code\": null,\n            \"postal_code\": null,\n            \"city\": null,\n            \"address\": null,\n            \"view_count\": 0,\n            \"applications_count\": 0,\n            \"created_at\": \"2024-11-15T16:02:36.980Z\",\n            \"updated_at\": \"2024-11-15T16:02:37.844Z\"\n        },\n        {\n            \"id\": 6,\n            \"title\": \"Organic coffee shop looking for a barista\",\n            \"position\": \"Barista\",\n            \"key_skills\": \"Barista, Coffee, Customer Service\",\n            \"job_type\": \"Food\",\n            \"job_slug\": \"44c382f2-c5d9-4e39-8843-f39ade63a756\",\n            \"job_status\": \"listed\",\n            \"activity_status\": 1,\n            \"referrer_url\": \"https://embloy.com/\",\n            \"salary\": 18,\n            \"currency\": \"USD\",\n            \"euro_salary\": null,\n            \"start_slot\": \"2042-10-02T20:42:42.356Z\",\n            \"duration\": 20,\n            \"code_lang\": null,\n            \"longitude\": 11.613942994844358,\n            \"latitude\": 48.1951076,\n            \"country_code\": null,\n            \"postal_code\": null,\n            \"city\": null,\n            \"address\": null,\n            \"view_count\": 0,\n            \"applications_count\": 0,\n            \"created_at\": \"2024-11-15T16:02:35.523Z\",\n            \"updated_at\": \"2024-11-15T16:02:36.269Z\"\n        },\n        {\n            \"id\": 5,\n            \"title\": \"Organic coffee shop looking for a barista\",\n            \"position\": \"Barista\",\n            \"key_skills\": \"Barista, Coffee, Customer Service\",\n            \"job_type\": \"Food\",\n            \"job_slug\": \"279e9dde-30cd-4cae-9728-1f9776be3cbe\",\n            \"job_status\": \"listed\",\n            \"activity_status\": 1,\n            \"referrer_url\": \"https://embloy.com/\",\n            \"salary\": 18,\n            \"currency\": \"USD\",\n            \"euro_salary\": null,\n            \"start_slot\": \"2042-10-02T20:42:42.356Z\",\n            \"duration\": 20,\n            \"code_lang\": null,\n            \"longitude\": 11.613942994844358,\n            \"latitude\": 48.1951076,\n            \"country_code\": null,\n            \"postal_code\": null,\n            \"city\": null,\n            \"address\": null,\n            \"view_count\": 0,\n            \"applications_count\": 0,\n            \"created_at\": \"2024-11-15T15:57:34.960Z\",\n            \"updated_at\": \"2024-11-15T15:57:35.756Z\"\n        },\n        {\n            \"id\": 4,\n            \"title\": \"Organic coffee shop looking for a barista\",\n            \"position\": \"Barista\",\n            \"key_skills\": \"Barista, Coffee, Customer Service\",\n            \"job_type\": \"Food\",\n            \"job_slug\": \"a341e95f-a766-4273-9a6f-0e41ec5dbeba\",\n            \"job_status\": \"listed\",\n            \"activity_status\": 1,\n            \"referrer_url\": \"https://embloy.com/\",\n            \"salary\": 18,\n            \"currency\": \"USD\",\n            \"euro_salary\": null,\n            \"start_slot\": \"2042-10-02T20:42:42.356Z\",\n            \"duration\": 20,\n            \"code_lang\": null,\n            \"longitude\": 11.613942994844358,\n            \"latitude\": 48.1951076,\n            \"country_code\": null,\n            \"postal_code\": null,\n            \"city\": null,\n            \"address\": null,\n            \"view_count\": 0,\n            \"applications_count\": 0,\n            \"created_at\": \"2024-11-15T15:55:05.311Z\",\n            \"updated_at\": \"2024-11-15T15:55:06.080Z\"\n        },\n        {\n            \"id\": 3,\n            \"title\": \"Organic coffee shop looking for a barista\",\n            \"position\": \"Barista\",\n            \"key_skills\": \"Barista, Coffee, Customer Service\",\n            \"job_type\": \"Food\",\n            \"job_slug\": \"23fc4850-c26d-4770-bf26-5864c47e0492\",\n            \"job_status\": \"listed\",\n            \"activity_status\": 1,\n            \"referrer_url\": \"https://embloy.com/\",\n            \"salary\": 18,\n            \"currency\": \"USD\",\n            \"euro_salary\": null,\n            \"start_slot\": \"2042-10-02T20:42:42.356Z\",\n            \"duration\": 20,\n            \"code_lang\": null,\n            \"longitude\": 11.613942994844358,\n            \"latitude\": 48.1951076,\n            \"country_code\": null,\n            \"postal_code\": null,\n            \"city\": null,\n            \"address\": null,\n            \"view_count\": 0,\n            \"applications_count\": 0,\n            \"created_at\": \"2024-11-15T15:54:40.328Z\",\n            \"updated_at\": \"2024-11-15T15:54:41.085Z\"\n        },\n        {\n            \"id\": 2,\n            \"title\": \"TestTitle\",\n            \"position\": \"CEO\",\n            \"key_skills\": \"Entrepreneurship\",\n            \"job_type\": \"Retail\",\n            \"job_slug\": \"72f6d01e-55e5-4fa7-97dd-65af26494695\",\n            \"job_status\": \"listed\",\n            \"activity_status\": 1,\n            \"referrer_url\": \"https://embloy.com/\",\n            \"salary\": 18,\n            \"currency\": \"USD\",\n            \"euro_salary\": null,\n            \"start_slot\": \"2024-12-03T02:23:13.000Z\",\n            \"duration\": 20,\n            \"code_lang\": null,\n            \"longitude\": 11.613942994844358,\n            \"latitude\": 48.1951076,\n            \"country_code\": null,\n            \"postal_code\": null,\n            \"city\": null,\n            \"address\": null,\n            \"view_count\": 0,\n            \"applications_count\": 0,\n            \"created_at\": \"2024-11-15T15:20:35.491Z\",\n            \"updated_at\": \"2024-11-15T19:16:02.404Z\"\n        }\n    ]\n}"},{"id":"02d9d313-b1c4-4f1a-9f16-ea1a05bc5e59","name":"403 Forbidden","originalRequest":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/company/insert-company-id/board"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"be425f95-96fc-4e66-9243-b2f06b65871f"},{"key":"X-Runtime","value":"0.408819"},{"key":"Server-Timing","value":"cache_read.active_support;dur=0.37, cache_write.active_support;dur=0.12, start_processing.action_controller;dur=0.72, sql.active_record;dur=224.57, instantiation.active_record;dur=0.18, process_action.action_controller;dur=196.09"},{"key":"vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"subscription\": [\n        {\n            \"error\": \"ERR_RAC\",\n            \"description\": \"Proceeding is inhibited by an access restriction\"\n        }\n    ]\n}"}],"_postman_id":"64569df3-92b1-4c45-8ee9-5f2f257b8938"},{"name":"Get company job","id":"d06e8958-3cea-4b18-bc9a-88f13eca4975","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/company/insert-company-id/board/insert-job-slug","description":"<p>This endpoint returns a single listed job, including relevant information for a company's job page, given a job's <code>job_slug</code>.</p>\n<p>Only accessible for jobs created by subscribed company users or sandbox users.</p>\n","urlObject":{"path":["api","v0","company","insert-company-id","board","insert-job-slug"],"host":["https://api.embloy.com"],"query":[],"variable":[]}},"response":[{"id":"769f898e-c844-413a-99c0-f7d9c82a1d82","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/company/insert-company-id/board/insert-job-slug"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"7e5ce84b57d78fb4aa40e92bebc25a4c\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"37d85383-2bf3-4cac-8edc-a0dc342e2f20"},{"key":"X-Runtime","value":"0.309172"},{"key":"Server-Timing","value":"cache_read.active_support;dur=0.40, cache_write.active_support;dur=0.24, start_processing.action_controller;dur=0.58, sql.active_record;dur=166.80, instantiation.active_record;dur=3.82, service_url.active_storage;dur=1.86, process_action.action_controller;dur=227.46"},{"key":"vary","value":"Origin"},{"key":"Content-Length","value":"2621"}],"cookie":[],"responseTime":null,"body":"{\n    \"company\": {\n        \"id\": 6,\n        \"company_name\": \"Embloy Platforms\",\n        \"company_phone\": \"004912345678910\",\n        \"company_email\": \"info@embloy.com\",\n        \"company_urls\": [\n            \"https://github.com/embloy\",\n            \"https://www.linkedin.com/company/embloy\",\n            \"https://about.embloy.com\"\n        ],\n        \"company_industry\": \"Technology\",\n        \"company_description\": {\n            \"id\": 21,\n            \"name\": \"company_description\",\n            \"body\": \"<h1 id=\\\"the-world-s-first-job-application-api\\\">The World's First Job Application API</h1>\\n<p>Deliver <strong>outstanding candidate experiences</strong> by offering the option to apply with Embloy.</p>\\n<p>Find out more at <a href=\\\"https://about.embloy.com/en/\\\">https://about.embloy.com/en/</a>.</p>\\n<p><img src=\\\"https://avatars.githubusercontent.com/u/132399266?s=200&amp;v=4\\\" alt=\\\"logo\\\"></p>\\n<p><em>Sign up to Embloy and apply for jobs with Venmo-like simplicity. Create an account once, use it to apply with one click and manage your applications in one place.</em></p>\",\n            \"record_type\": \"User\",\n            \"record_id\": 6,\n            \"created_at\": \"2024-11-15T16:07:40.263Z\",\n            \"updated_at\": \"2024-11-15T16:07:40.263Z\"\n        },\n        \"company_logo\": \"http://localhost:3000/rails/active_storage/disk/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaDdDVG9JYTJWNVNTSWhNblZqT0dGb2JqaG5lVE5qYVhobGFXZDBPR3A1YkRRMGEySmhkUVk2QmtWVU9oQmthWE53YjNOcGRHbHZia2tpUjJsdWJHbHVaVHNnWm1sc1pXNWhiV1U5SW14dloyOHRiR2xuYUhRdWNHNW5JanNnWm1sc1pXNWhiV1VxUFZWVVJpMDRKeWRzYjJkdkxXeHBaMmgwTG5CdVp3WTdCbFE2RVdOdmJuUmxiblJmZEhsd1pVa2lEbWx0WVdkbEwzQnVad1k3QmxRNkVYTmxjblpwWTJWZmJtRnRaVG9LYkc5allXdz0iLCJleHAiOiIyMDI0LTExLTE1VDE5OjI0OjAwLjQ1NloiLCJwdXIiOiJibG9iX2tleSJ9fQ==--47b68bc632ee0d7e85556767ad6975fce1d34e89/logo-light.png\",\n        \"company_slug\": \"embloy\"\n    },\n    \"job\": {\n        \"id\": 14,\n        \"title\": \"Organic coffee shop looking for a barista\",\n        \"position\": \"Barista\",\n        \"key_skills\": \"Barista, Coffee, Customer Service\",\n        \"job_type\": \"Food\",\n        \"job_slug\": \"25339723-818c-4a59-81cf-d01f6b2e56ca\",\n        \"job_status\": \"listed\",\n        \"activity_status\": 1,\n        \"referrer_url\": \"https://embloy.com/\",\n        \"salary\": 18,\n        \"currency\": \"USD\",\n        \"euro_salary\": null,\n        \"start_slot\": \"2042-10-02T20:42:42.356Z\",\n        \"duration\": 20,\n        \"code_lang\": null,\n        \"longitude\": 11.613942994844358,\n        \"latitude\": 48.1951076,\n        \"country_code\": null,\n        \"postal_code\": null,\n        \"city\": null,\n        \"address\": null,\n        \"view_count\": 0,\n        \"applications_count\": 0,\n        \"created_at\": \"2024-11-15T16:02:50.597Z\",\n        \"updated_at\": \"2024-11-15T16:02:51.371Z\",\n        \"image_url\": null,\n        \"description\": {\n            \"id\": 17,\n            \"name\": \"description\",\n            \"body\": \"<div>Work in the greatest espresso bar in town and make making others happy your paid job!</div>\",\n            \"record_type\": \"Job\",\n            \"record_id\": 14,\n            \"created_at\": \"2024-11-15T16:02:51.340Z\",\n            \"updated_at\": \"2024-11-15T16:02:51.340Z\"\n        }\n    }\n}"},{"id":"09ccc9fd-c7b4-4277-b7c3-5828745d147e","name":"403 Forbidden","originalRequest":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/company/insert-company-id/board/insert-job-slug"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"be425f95-96fc-4e66-9243-b2f06b65871f"},{"key":"X-Runtime","value":"0.408819"},{"key":"Server-Timing","value":"cache_read.active_support;dur=0.37, cache_write.active_support;dur=0.12, start_processing.action_controller;dur=0.72, sql.active_record;dur=224.57, instantiation.active_record;dur=0.18, process_action.action_controller;dur=196.09"},{"key":"vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"subscription\": [\n        {\n            \"error\": \"ERR_RAC\",\n            \"description\": \"Proceeding is inhibited by an access restriction\"\n        }\n    ]\n}"},{"id":"2a452f44-c02a-424e-90fb-d4895e86babb","name":"404 Not Found","originalRequest":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/company/insert-company-id/board/insert-job-slug"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"7b5b1c37-49d8-4b7e-9c95-1536d2de6c59"},{"key":"X-Runtime","value":"0.996332"},{"key":"Server-Timing","value":"cache_read.active_support;dur=0.25, cache_write.active_support;dur=0.09, start_processing.action_controller;dur=0.39, sql.active_record;dur=351.79, halted_callback.action_controller;dur=0.33, process_action.action_controller;dur=329.03"},{"key":"vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"job\": [\n        {\n            \"error\": \"ERR_INVALID\",\n            \"description\": \"Attribute can not be retrieved\"\n        }\n    ]\n}"},{"id":"12d6c063-6e61-47f3-b2ad-61106ed80e08","name":"409 Conflict","originalRequest":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/company/insert-company-id/board/insert-job-slug"},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"c04b103b-adc0-47cf-ad56-2c5130bcd598"},{"key":"X-Runtime","value":"1.379757"},{"key":"Server-Timing","value":"sql.active_record;dur=694.26, cache_read.active_support;dur=0.17, cache_write.active_support;dur=0.17, start_processing.action_controller;dur=0.54, instantiation.active_record;dur=31.29, halted_callback.action_controller;dur=0.53, process_action.action_controller;dur=304.02"},{"key":"vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"job\": [\n        {\n            \"error\": \"ERR_REMOVED\",\n            \"description\": \"Job is not listed or active and cannot be accessed anymore\"\n        }\n    ]\n}"}],"_postman_id":"d06e8958-3cea-4b18-bc9a-88f13eca4975"},{"name":"Get company","id":"bb16e173-ecd5-4806-9345-d20d26b6606e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/company/insert-company-id?include_user=1","description":"<p>This endpoint returns a company's public information.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","company","insert-company-id"],"host":["https://api.embloy.com"],"query":[{"description":{"content":"<p>Optional parameter to include user details in response. Only allowed, if current user is company admin.</p>\n","type":"text/plain"},"key":"include_user","value":"1"}],"variable":[]}},"response":[{"id":"45913928-7cdb-4b2a-a035-229658aaad5c","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.embloy.com/api/v0/company/insert-company-id?include_user=1","host":["https://api.embloy.com"],"path":["api","v0","company","insert-company-id"],"query":[{"key":"include_user","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"967957e212871810d0f37daf1dacdb41\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"bf7ef0bd-9876-423d-badb-60d16a47d4a6"},{"key":"X-Runtime","value":"0.365297"},{"key":"Server-Timing","value":"cache_read.active_support;dur=0.22, cache_write.active_support;dur=0.12, start_processing.action_controller;dur=1.24, sql.active_record;dur=230.40, instantiation.active_record;dur=0.65, process_action.action_controller;dur=326.23"},{"key":"vary","value":"Origin"},{"key":"Content-Length","value":"860"}],"cookie":[],"responseTime":null,"body":"{\n    \"user\": {\n        \"id\": 3,\n        \"email\": \"carlo.bortolan@de.embloy.com\",\n        \"first_name\": \"Carlo\",\n        \"last_name\": \"Bortolan\",\n        \"date_of_birth\": null,\n        \"longitude\": null,\n        \"latitude\": null,\n        \"country_code\": null,\n        \"postal_code\": null,\n        \"city\": null,\n        \"address\": null,\n        \"activity_status\": 1,\n        \"user_role\": \"admin\",\n        \"type\": \"CompanyUser\",\n        \"view_count\": 0,\n        \"applications_count\": 0,\n        \"jobs_count\": 1,\n        \"linkedin_url\": null,\n        \"instagram_url\": null,\n        \"twitter_url\": null,\n        \"facebook_url\": null,\n        \"github_url\": null,\n        \"portfolio_url\": null,\n        \"phone\": null,\n        \"application_notifications\": true,\n        \"communication_notifications\": true,\n        \"marketing_notifications\": false,\n        \"security_notifications\": true,\n        \"image_url\": null,\n        \"created_at\": \"2024-09-14T20:31:13.725Z\",\n        \"updated_at\": \"2024-11-14T21:53:37.756Z\"\n    },\n    \"company\": {\n        \"id\": 3,\n        \"company_name\": \"Example Inc\",\n        \"company_phone\": \"004912345678910\",\n        \"company_email\": \"contact@example.com\",\n        \"company_urls\": [\n            \"https://www.example.com\",\n            \"https://linkedin.com/company/example\"\n        ],\n        \"company_industry\": \"Technology\",\n        \"company_description\": {\n            \"id\": 3,\n            \"name\": \"company_description\",\n            \"body\": \"This is a great company!!!\",\n            \"record_type\": \"User\",\n            \"record_id\": 3,\n            \"created_at\": \"2024-11-14T21:10:58.625Z\",\n            \"updated_at\": \"2024-11-14T21:19:42.226Z\"\n        },\n        \"company_logo\": \"http://localhost:3000/rails/active_storage/blobs/redirect/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaHBEdz09IiwiZXhwIjpudWxsLCJwdXIiOiJibG9iX2lkIn19--52196d01ed246be8301b5a58f4120307da9eddc1/ImageSignature.png\",\n        \"company_slug\": \"example-inc\"\n    }\n}"},{"id":"a76267d1-12c8-46a6-84ce-b6875413d60b","name":"404 Not Found","originalRequest":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/company/insert-company-id"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"e2b76c3a-a35e-42a9-914a-a9b47ed6de7a"},{"key":"X-Runtime","value":"0.940316"},{"key":"Server-Timing","value":"cache_read.active_support;dur=0.25, cache_write.active_support;dur=0.11, start_processing.action_controller;dur=0.58, sql.active_record;dur=300.54, instantiation.active_record;dur=33.37, halted_callback.action_controller;dur=0.44, process_action.action_controller;dur=284.16"},{"key":"vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"company\": [\n        {\n            \"error\": \"ERR_INVALID\",\n            \"description\": \"Attribute can not be retrieved\"\n        }\n    ]\n}"}],"_postman_id":"bb16e173-ecd5-4806-9345-d20d26b6606e"},{"name":"Create company account","id":"920e895d-ce79-40c3-9efb-f9805990cb81","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"company_name","value":"Embloy Platforms","type":"text","description":"<p>Your company's official name which will be shown to applicants.</p>\n"},{"key":"company_phone","value":"004912345678910","type":"text","description":"<p>A phone number for the applicants to contact your recruiting team for general inquiries.</p>\n"},{"key":"company_email","value":"info@embloy.com","type":"text","description":"<p>An email for the applicants to contact your recruiting team for general inquiries.</p>\n"},{"key":"company_slug","value":"embloy","type":"text","description":"<p>A unique username for your company account which will be used for your company board's url.</p>\n"},{"key":"company_logo","description":"<p>A square image of your company logo. Allowed formats are PNG, JPEG and JPG with a maximum size of 2 megabytes.</p>\n","type":"file","src":"XZrBlDMFy/logo-light.png"},{"key":"company_description","value":"<h1 id=\"the-world-s-first-job-application-api\">The World&#39;s First Job Application API</h1>\n<p>Deliver <strong>outstanding candidate experiences</strong> by offering the option to apply with Embloy.</p>\n<p>Find out more at <a href=\"https://about.embloy.com/en/\">https://about.embloy.com/en/</a>.</p>\n<p><img src=\"https://avatars.githubusercontent.com/u/132399266?s=200&amp;v=4\" alt=\"logo\"></p>\n<p><em>Sign up to Embloy and apply for jobs with Venmo-like simplicity. Create an account once, use it to apply with one click and manage your applications in one place.</em></p>\n","type":"text","description":"<p>An optional description which will be shown on for your company profile. Needs to be between 10 and 10,000 characters and can be either plaintext or HTML.</p>\n"},{"key":"company_industry","value":"Technology","type":"text","description":"<p>An optional tag for your company's field.</p>\n"},{"key":"company_urls[]","value":"https://github.com/embloy","type":"text","description":"<p>An optional JSON array of URLs (e.g., for your social media accounts, websites, etc.)</p>\n"},{"key":"company_urls[]","value":"https://www.linkedin.com/company/embloy","type":"text","description":"<p>An optional JSON array of URLs (e.g., for your social media accounts, websites, etc.)</p>\n"},{"key":"company_urls[]","value":"https://about.embloy.com","description":"<p>An optional JSON array of URLs (e.g., for your social media accounts, websites, etc.)</p>\n","type":"text"}]},"url":"https://api.embloy.com/api/v0/company","description":"<p>This endpoint allows users with a valid subscription to create a company account. Please not that a user can have at most one company account.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","company"],"host":["https://api.embloy.com"],"query":[],"variable":[]}},"response":[{"id":"dc713dd6-a241-47c4-a042-e3334a8e8c67","name":"201 Created","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"company_name","value":"Example Inc","type":"text","description":"Your company's official name which will be shown to applicants."},{"key":"company_phone","value":"004912345678910","type":"text","description":"A phone number for the applicants to contact your recruiting team for general inquiries."},{"key":"company_email","value":"contact@example.com","type":"text","description":"An email for the applicants to contact your recruiting team for general inquiries."},{"key":"company_slug","value":"example-inc","type":"text","description":"A unique username for your company account which will be used for your company board's url."},{"key":"company_logo","description":"A square image of your company logo. Allowed formats are PNG, JPEG and JPG with a maximum size of 2 megabytes.","type":"file","src":"u534kK0HP/ImageSignature.png"},{"key":"company_description","value":"This is a great company!!!","type":"text","description":"An optional description which will be shown on for your company profile. Needs to be between 10 and 10,000 characters and can be either plaintext or HTML."},{"key":"company_industry","value":"Technology","type":"text","description":"An optional tag for your company's field."},{"key":"company_urls[]","value":"https://www.github.com/example","type":"text","description":"An optional JSON array of URLs (e.g., for your social media accounts, websites, etc.)"},{"key":"company_urls[]","value":"https://www.linkedin.com/company/example","type":"text","description":"An optional JSON array of URLs (e.g., for your social media accounts, websites, etc.)"}]},"url":"https://api.embloy.com/api/v0/company"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"cf336d7c86fdc791866d76a7208e4f52\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"f6207b7e-d89a-43f5-8101-db2cc34f790b"},{"key":"X-Runtime","value":"1.472871"},{"key":"Server-Timing","value":"cache_read.active_support;dur=0.24, cache_write.active_support;dur=0.12, start_processing.action_controller;dur=0.57, sql.active_record;dur=1075.59, instantiation.active_record;dur=16.13, unpermitted_parameters.action_controller;dur=0.64, render_partial.action_view;dur=2.98, service_upload.active_storage;dur=1.87, enqueue.active_job;dur=1.84, process_action.action_controller;dur=1175.95"},{"key":"vary","value":"Origin"},{"key":"Content-Length","value":"703"}],"cookie":[],"responseTime":null,"body":"{\n    \"company\": {\n        \"id\": 3,\n        \"company_name\": \"Example Inc\",\n        \"company_phone\": \"004912345678910\",\n        \"company_email\": \"contact@example.com\",\n        \"company_urls\": [\n            \"https://www.github.com/example\",\n            \"https://www.linkedin.com/company/example\"\n        ],\n        \"company_industry\": \"Technology\",\n        \"company_description\": {\n            \"record_id\": 3,\n            \"body\": \"This is a great company!!!\",\n            \"id\": 3,\n            \"name\": \"company_description\",\n            \"record_type\": \"User\",\n            \"created_at\": \"2024-11-14T21:10:58.625Z\",\n            \"updated_at\": \"2024-11-15T00:33:59.002Z\"\n        },\n        \"company_logo\": \"http://localhost:3000/rails/active_storage/blobs/redirect/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaHBHdz09IiwiZXhwIjpudWxsLCJwdXIiOiJibG9iX2lkIn19--57f125d9ab2c94b63f84acd6a9eac33f3d18de9c/ImageSignature.png\",\n        \"company_slug\": \"example-inc\"\n    }\n}"},{"id":"65b1da42-887f-48e9-95b7-975d0b5fb306","name":"400 Bad Request","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"company_name","value":"Example Inc","type":"text","description":"Your company's official name which will be shown to applicants.","disabled":true},{"key":"company_phone","value":"004912345678910","type":"text","description":"A phone number for the applicants to contact your recruiting team for general inquiries.","disabled":true},{"key":"company_email","value":"contact@example.com","type":"text","description":"An email for the applicants to contact your recruiting team for general inquiries.","disabled":true},{"key":"company_slug","value":"","type":"text","description":"A unique username for your company account which will be used for your company board's url.","disabled":true},{"key":"company_logo","description":"A square image of your company logo. Allowed formats are PNG, JPEG and JPG with a maximum size of 2 megabytes.","type":"file","src":"2V6EuNpsa/ImageSignature.png","disabled":true},{"key":"company_description","value":"This is a great company!!!","type":"text","description":"An optional description which will be shown on for your company profile. Needs to be between 10 and 10,000 characters and can be either plaintext or HTML.","disabled":true},{"key":"company_industry","value":"Technology","type":"text","description":"An optional tag for your company's field.","disabled":true},{"key":"company_urls[]","value":"https://www.github.com/example","type":"text","description":"An optional JSON array of URLs (e.g., for your social media accounts, websites, etc.)","disabled":true},{"key":"company_urls[]","value":"https://www.linkedin.com/company/example","type":"text","description":"An optional JSON array of URLs (e.g., for your social media accounts, websites, etc.)","disabled":true}]},"url":"https://api.embloy.com/api/v0/company"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"96a47dd8-5624-4aaa-a088-c45bc26b2f10"},{"key":"X-Runtime","value":"0.333395"},{"key":"Server-Timing","value":"cache_read.active_support;dur=0.18, cache_write.active_support;dur=0.09, start_processing.action_controller;dur=0.39, sql.active_record;dur=210.32, instantiation.active_record;dur=0.37, unpermitted_parameters.action_controller;dur=0.31, process_action.action_controller;dur=124.56"},{"key":"vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"Bad request\",\n    \"details\": [\n        {\n            \"error\": \"ERR_MISSING\",\n            \"description\": \"The key 'company_name' is missing\"\n        },\n        {\n            \"error\": \"ERR_MISSING\",\n            \"description\": \"The key 'company_phone' is missing\"\n        },\n        {\n            \"error\": \"ERR_MISSING\",\n            \"description\": \"The key 'company_email' is missing\"\n        },\n        {\n            \"error\": \"ERR_MISSING\",\n            \"description\": \"The key 'company_slug' is missing\"\n        },\n        {\n            \"error\": \"ERR_MISSING\",\n            \"description\": \"The key 'company_logo' is missing\"\n        }\n    ]\n}"},{"id":"91a8e3d9-67d4-4dec-9d84-81db3f6e056e","name":"400 Bad Request","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"company_name","value":"Example Inc","type":"text","description":"Your company's official name which will be shown to applicants."},{"key":"company_phone","value":"abc","type":"text","description":"A phone number for the applicants to contact your recruiting team for general inquiries."},{"key":"company_email","value":"test","type":"text","description":"An email for the applicants to contact your recruiting team for general inquiries."},{"key":"company_slug","value":"example-inc","type":"text","description":"A unique username for your company account which will be used for your company board's url."},{"key":"company_logo","description":"A square image of your company logo. Allowed formats are PNG, JPEG and JPG with a maximum size of 2 megabytes.","type":"file","src":"kU0E45tbo/Japan-city-cityscape-building-sky-skyline-780207-wallhere.com1.jpg"},{"key":"company_description","value":"This is a great company!!!","type":"text","description":"An optional description which will be shown on for your company profile. Needs to be between 10 and 10,000 characters and can be either plaintext or HTML."},{"key":"company_industry","value":"TechnologyTechnologyTechnologyTechnologyTechnologyTechnologyTechnologyTechnologyTechnologyTechnologyTechnologyTechnologyTechnologyTechnologyTechnologyTechnologyTechnologyTechnologyTechnologyTechnologyTechnologyTechnologyTechnologyTechnologyTechnology","type":"text","description":"An optional tag for your company's field."},{"key":"company_urls[]","value":"not-a-link","type":"text","description":"An optional JSON array of URLs (e.g., for your social media accounts, websites, etc.)"},{"key":"company_urls[]","value":"https://www.linkedin.com/company/example","type":"text","description":"An optional JSON array of URLs (e.g., for your social media accounts, websites, etc.)","disabled":true}]},"url":"https://api.embloy.com/api/v0/company"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"5346f546-0ec0-4a8c-8756-3cccc027811b"},{"key":"X-Runtime","value":"1.142094"},{"key":"Server-Timing","value":"cache_read.active_support;dur=0.17, cache_write.active_support;dur=0.21, start_processing.action_controller;dur=0.50, sql.active_record;dur=947.42, instantiation.active_record;dur=1.03, unpermitted_parameters.action_controller;dur=0.35, render_partial.action_view;dur=1.64, process_action.action_controller;dur=857.70"},{"key":"vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"Bad request\",\n    \"details\": {\n        \"company_email\": [\n            \"is invalid\"\n        ],\n        \"company_industry\": [\n            \"is too long (maximum is 150 characters)\"\n        ],\n        \"company_logo\": [\n            {\n                \"error\": \"ERR_INVALID\",\n                \"description\": \"is too large (max is 2 MB)\"\n            }\n        ],\n        \"company_urls\": [\n            {\n                \"error\": \"ERR_INVALID\",\n                \"description\": \"must be an array of valid URLs\"\n            }\n        ]\n    }\n}"},{"id":"0fa221fc-9538-4831-95d7-b30ab4b99d45","name":"403 Forbidden","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"company_name","value":"Example Inc","type":"text","description":"Your company's official name which will be shown to applicants."},{"key":"company_slug","value":"example-inc","type":"text","description":"A unique username for your company account which will be used for your company board's url."},{"key":"company_phone","value":"004912345678910","type":"text","description":"A phone number for the applicants to contact your recruiting team for general inquiries."},{"key":"company_email","value":"contact@example.com","type":"text","description":"An email for the applicants to contact your recruiting team for general inquiries."},{"key":"company_industry","value":"Technology","type":"text","description":"An optional tag for your company's field."},{"key":"company_description","value":"This is a great company!!!","type":"text","description":"A description which will be shown on for your company profile. Needs to be between 10 and 10,000 characters and can be either plaintext or HTML."},{"key":"company_urls[]","value":"https://www.github.com/example","type":"text","description":"A JSON array of URLs (e.g., for your social media accounts, websites, etc.)"},{"key":"company_urls[]","value":"https://www.linkedin.com/company/example","type":"text","description":"A JSON array of URLs (e.g., for your social media accounts, websites, etc.)"},{"key":"company_logo","description":"A square image of your company logo. Allowed formats are PNG, JPEG and JPG with a maximum size of 2 megabytes.","type":"file","src":"2V6EuNpsa/ImageSignature.png"}]},"url":"https://api.embloy.com/api/v0/company"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"c8a0c772-431f-493e-b357-53f75acbd677"},{"key":"X-Runtime","value":"1.888589"},{"key":"Server-Timing","value":"cache_read.active_support;dur=0.25, cache_write.active_support;dur=0.13, start_processing.action_controller;dur=0.54, sql.active_record;dur=697.70, instantiation.active_record;dur=199.13, process_action.action_controller;dur=1294.97"},{"key":"vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"subscription\": [\n        {\n            \"error\": \"ERR_RAC\",\n            \"description\": \"Proceeding is inhibited by an access restriction\"\n        }\n    ]\n}"},{"id":"467b2161-0380-49f6-8dab-445b2af5f10b","name":"409 Conflict","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"company_name","value":"Example Inc","description":"Your company's official name which will be shown to applicants.","type":"text"},{"key":"company_slug","value":"example-inc","description":"A unique username for your company account which will be used for your company board's url.","type":"text"},{"key":"company_phone","value":"004912345678910","description":"A phone number for the applicants to contact your recruiting team for general inquiries.","type":"text"},{"key":"company_email","value":"contact@example.com","description":"An email for the applicants to contact your recruiting team for general inquiries.","type":"text"},{"key":"company_industry","value":"Technology","description":"An optional tag for your company's field.","type":"text"},{"key":"company_description","value":"This is a great company!!!","description":"A description which will be shown on for your company profile. Needs to be between 10 and 10,000 characters and can be either plaintext or HTML.","type":"text"},{"key":"company_urls[]","value":"https://www.example.com","description":"A JSON array of URLs (e.g., for your social media accounts, websites, etc.)","type":"text"},{"key":"company_urls[]","value":"https://www.linkedin.com/company/example","description":"A JSON array of URLs (e.g., for your social media accounts, websites, etc.)","type":"text"},{"key":"company_logo","description":"A square image of your company logo. Allowed formats are PNG, JPEG and JPG with a maximum size of 2 megabytes.","type":"file","src":"2V6EuNpsa/ImageSignature.png"}]},"url":"https://api.embloy.com/api/v0/company"},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"a2b4b494-f03a-4b72-a721-dc9e2b24aed0"},{"key":"X-Runtime","value":"1.736371"},{"key":"Server-Timing","value":"cache_read.active_support;dur=0.20, cache_write.active_support;dur=0.13, start_processing.action_controller;dur=0.52, sql.active_record;dur=641.64, instantiation.active_record;dur=55.99, process_action.action_controller;dur=1128.31"},{"key":"vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"company\": [\n        {\n            \"error\": \"ERR_REMOVED\",\n            \"description\": \"You already have a company account\"\n        }\n    ]\n}"}],"_postman_id":"920e895d-ce79-40c3-9efb-f9805990cb81"},{"name":"Update company account","id":"4df7d983-f8d5-4c97-8c80-e8e5fedbe894","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"formdata","formdata":[{"key":"company_name","value":"Example Inc","description":"<p>Your company's official name which will be shown to applicants.</p>\n","type":"text"},{"key":"company_slug","value":"example-inc","description":"<p>A unique username for your company account which will be used for your company board's url.</p>\n","type":"text"},{"key":"company_phone","value":"004912345678910","description":"<p>A phone number for the applicants to contact your recruiting team for general inquiries.</p>\n","type":"text"},{"key":"company_email","value":"contact@example.com","description":"<p>An email for the applicants to contact your recruiting team for general inquiries.</p>\n","type":"text"},{"key":"company_industry","value":"Technology","description":"<p>An optional tag for your company's field.</p>\n","type":"text"},{"key":"company_description","value":"This is a great company!!!","description":"<p>An optional description which will be shown on for your company profile. Needs to be between 10 and 10,000 characters and can be either plaintext or HTML.</p>\n","type":"text"},{"key":"company_urls[]","value":"https://www.github.com/example","description":"<p>An optional JSON array of URLs (e.g., for your social media accounts, websites, etc.)</p>\n","type":"text"},{"key":"company_urls[]","value":"https://www.linkedin.com/company/example","description":"<p>An optional JSON array of URLs (e.g., for your social media accounts, websites, etc.)</p>\n","type":"text"},{"key":"company_logo","description":"<p>A square image of your company logo. Allowed formats are PNG, JPEG and JPG with a maximum size of 2 megabytes.</p>\n","type":"file","src":"mwgSLJ7Ge/test_image.png"}]},"url":"https://api.embloy.com/api/v0/company/insert-company-id","description":"<p>This endpoint allows users with a valid subscription to update their company account.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","company","insert-company-id"],"host":["https://api.embloy.com"],"query":[],"variable":[]}},"response":[{"id":"e496982d-9097-44de-8cc2-9e2523f07cb4","name":"200 OK","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"formdata","formdata":[{"key":"company_name","value":"Example Inc","type":"text","description":"Your company's official name which will be shown to applicants."},{"key":"company_slug","value":"example-inc","type":"text","description":"A unique username for your company account which will be used for your company board's url."},{"key":"company_phone","value":"004912345678910","type":"text","description":"A phone number for the applicants to contact your recruiting team for general inquiries."},{"key":"company_email","value":"contact@example.com","type":"text","description":"An email for the applicants to contact your recruiting team for general inquiries."},{"key":"company_industry","value":"Technology","type":"text","description":"An optional tag for your company's field."},{"key":"company_description","value":"This is a great company!!!","type":"text","description":"A description which will be shown on for your company profile. Needs to be between 10 and 10,000 characters and can be either plaintext or HTML."},{"key":"company_urls[]","value":"https://www.github.com/example","type":"text","description":"A JSON array of URLs (e.g., for your social media accounts, websites, etc.)"},{"key":"company_urls[]","value":"https://www.linkedin.com/company/example","type":"text","description":"A JSON array of URLs (e.g., for your social media accounts, websites, etc.)"},{"key":"company_logo","description":"A square image of your company logo. Allowed formats are PNG, JPEG and JPG with a maximum size of 2 megabytes.","type":"file","src":"2V6EuNpsa/ImageSignature.png"}]},"url":"https://api.embloy.com/api/v0/company/insert-company-id"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"a4fb607f38056a1b3b181fc7dd256850\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"f3d3ffec-db0b-4415-8805-b55d75dedc68"},{"key":"X-Runtime","value":"3.620683"},{"key":"Server-Timing","value":"sql.active_record;dur=1711.89, cache_read.active_support;dur=0.17, cache_write.active_support;dur=0.17, start_processing.action_controller;dur=0.78, instantiation.active_record;dur=100.05, unpermitted_parameters.action_controller;dur=0.54, render_partial.action_view;dur=10.14, service_upload.active_storage;dur=1.31, enqueue.active_job;dur=3.13, process_action.action_controller;dur=2081.55"},{"key":"vary","value":"Origin"},{"key":"Content-Length","value":"701"}],"cookie":[],"responseTime":null,"body":"{\n    \"company\": {\n        \"id\": 3,\n        \"company_name\": \"Example Inc\",\n        \"company_phone\": \"004912345678910\",\n        \"company_email\": \"contact@example.com\",\n        \"company_urls\": [\n            \"https://www.example.com\",\n            \"https://linkedin.com/company/example\"\n        ],\n        \"company_industry\": \"Technology\",\n        \"company_description\": {\n            \"id\": 3,\n            \"name\": \"company_description\",\n            \"body\": \"This is a great company!!!\",\n            \"record_type\": \"User\",\n            \"record_id\": 3,\n            \"created_at\": \"2024-11-14T21:10:58.625Z\",\n            \"updated_at\": \"2024-11-14T21:19:42.226Z\"\n        },\n        \"company_logo\": \"http://localhost:3000/rails/active_storage/blobs/redirect/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaHBEdz09IiwiZXhwIjpudWxsLCJwdXIiOiJibG9iX2lkIn19--52196d01ed246be8301b5a58f4120307da9eddc1/ImageSignature.png\",\n        \"company_slug\": \"example-inc\"\n    }\n}"},{"id":"ed1db39d-03dd-4ff3-961e-e7d642abc141","name":"400 Bad Request","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"formdata","formdata":[{"key":"company_name","value":"","description":"Your company's official name which will be shown to applicants.","type":"text"},{"key":"company_slug","value":"","description":"A unique username for your company account which will be used for your company board's url.","type":"text"},{"key":"company_phone","value":"","description":"A phone number for the applicants to contact your recruiting team for general inquiries.","type":"text"},{"key":"company_email","value":"","description":"An email for the applicants to contact your recruiting team for general inquiries.","type":"text"},{"key":"company_industry","value":"Technology","description":"An optional tag for your company's field.","type":"text"},{"key":"company_description","value":"This is a great company!!!","description":"A description which will be shown on for your company profile. Needs to be between 10 and 10,000 characters and can be either plaintext or HTML.","type":"text"},{"key":"company_urls[]","value":"https://www.github.com/example","description":"A JSON array of URLs (e.g., for your social media accounts, websites, etc.)","type":"text"},{"key":"company_urls[]","value":"https://www.linkedin.com/company/example","description":"A JSON array of URLs (e.g., for your social media accounts, websites, etc.)","type":"text"},{"key":"company_logo","description":"A square image of your company logo. Allowed formats are PNG, JPEG and JPG with a maximum size of 2 megabytes.","type":"file","value":null}]},"url":"https://api.embloy.com/api/v0/company/insert-company-id"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"bb5e53d6-5304-471c-812b-e329b50035d1"},{"key":"X-Runtime","value":"0.298984"},{"key":"Server-Timing","value":"cache_read.active_support;dur=0.16, cache_write.active_support;dur=0.07, start_processing.action_controller;dur=0.55, sql.active_record;dur=218.10, instantiation.active_record;dur=0.71, unpermitted_parameters.action_controller;dur=0.38, process_action.action_controller;dur=149.77"},{"key":"vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"Bad request\",\n    \"details\": [\n        {\n            \"error\": \"ERR_BLANK\",\n            \"description\": \"The key 'company_name' can't be blank\"\n        },\n        {\n            \"error\": \"ERR_BLANK\",\n            \"description\": \"The key 'company_phone' can't be blank\"\n        },\n        {\n            \"error\": \"ERR_BLANK\",\n            \"description\": \"The key 'company_email' can't be blank\"\n        },\n        {\n            \"error\": \"ERR_BLANK\",\n            \"description\": \"The key 'company_slug' can't be blank\"\n        },\n        {\n            \"error\": \"ERR_BLANK\",\n            \"description\": \"The key 'company_logo' can't be blank\"\n        }\n    ]\n}"},{"id":"c869b4a8-26a4-4057-888c-a4227531536e","name":"400 Bad Request","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"formdata","formdata":[{"key":"company_name","value":"Example Inc","description":"Your company's official name which will be shown to applicants.","type":"text"},{"key":"company_slug","value":"example-inc","description":"A unique username for your company account which will be used for your company board's url.","type":"text"},{"key":"company_phone","value":"not-a-phone","description":"A phone number for the applicants to contact your recruiting team for general inquiries.","type":"text"},{"key":"company_email","value":"not-a-email","description":"An email for the applicants to contact your recruiting team for general inquiries.","type":"text"},{"key":"company_industry","value":"TechnologyTechnologyTechnologyTechnologyTechnologyTechnologyTechnologyTechnologyTechnologyTechnologyTechnologyTechnologyTechnologyTechnologyTechnologyTechnologyTechnologyTechnologyTechnologyTechnology","description":"An optional tag for your company's field.","type":"text"},{"key":"company_description","value":"This is a great company!!!","description":"A description which will be shown on for your company profile. Needs to be between 10 and 10,000 characters and can be either plaintext or HTML.","type":"text"},{"key":"company_urls[]","value":"not-a-url","description":"A JSON array of URLs (e.g., for your social media accounts, websites, etc.)","type":"text"},{"key":"company_urls[]","value":"https://www.linkedin.com/company/example","description":"A JSON array of URLs (e.g., for your social media accounts, websites, etc.)","type":"text","disabled":true},{"key":"company_logo","description":"A square image of your company logo. Allowed formats are PNG, JPEG and JPG with a maximum size of 2 megabytes.","type":"file","src":"BqJ_iNMN9/Japan-city-cityscape-building-sky-skyline-780207-wallhere.com1.jpg"}]},"url":"https://api.embloy.com/api/v0/company/insert-company-id"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"382adc59-d973-4009-9fbc-49e19dca0561"},{"key":"X-Runtime","value":"1.358521"},{"key":"Server-Timing","value":"cache_read.active_support;dur=0.36, cache_write.active_support;dur=0.15, start_processing.action_controller;dur=0.53, sql.active_record;dur=1053.54, instantiation.active_record;dur=2.28, unpermitted_parameters.action_controller;dur=0.91, render_partial.action_view;dur=3.89, process_action.action_controller;dur=943.75"},{"key":"vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"Bad request\",\n    \"details\": {\n        \"company_email\": [\n            {\n                \"error\": \"ERR_INVALID\",\n                \"description\": \"Attribute is malformed or unknown\",\n                \"value\": \"not-a-email\"\n            }\n        ],\n        \"company_industry\": [\n            {\n                \"error\": \"ERR_LENGTH\",\n                \"description\": \"Attribute length is invalid\",\n                \"count\": 150\n            }\n        ],\n        \"company_logo\": [\n            {\n                \"error\": {\n                    \"error\": \"ERR_INVALID\",\n                    \"description\": \"is too large (max is 2 MB)\"\n                }\n            }\n        ],\n        \"company_urls\": [\n            {\n                \"error\": {\n                    \"error\": \"ERR_INVALID\",\n                    \"description\": \"must be an array of valid URLs\"\n                }\n            }\n        ]\n    }\n}"},{"id":"628581ff-9df8-46a0-a8d6-d8a20249ee9f","name":"400 Bad Request","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"formdata","formdata":[{"key":"company_name","value":"Example Inc","type":"text","description":"Your company's official name which will be shown to applicants.","disabled":true},{"key":"company_slug","value":"example-inc","type":"text","description":"A unique username for your company account which will be used for your company board's url.","disabled":true},{"key":"company_phone","value":"004912345678910","type":"text","description":"A phone number for the applicants to contact your recruiting team for general inquiries.","disabled":true},{"key":"company_email","value":"contact@example.com","type":"text","description":"An email for the applicants to contact your recruiting team for general inquiries.","disabled":true},{"key":"company_industry","value":"Technology","type":"text","description":"An optional tag for your company's field.","disabled":true},{"key":"company_description","value":"This is a great company!!!","type":"text","description":"An optional description which will be shown on for your company profile. Needs to be between 10 and 10,000 characters and can be either plaintext or HTML.","disabled":true},{"key":"company_urls[]","value":"https://www.github.com/embloy","type":"text","description":"An optional JSON array of URLs (e.g., for your social media accounts, websites, etc.)"},{"key":"company_urls[]","value":"https://www.linkedin.com/company/embloy","type":"text","description":"An optional JSON array of URLs (e.g., for your social media accounts, websites, etc.)"},{"key":"company_urls[]","value":"https://www.embloy.com","type":"text","description":"A square image of your company logo. Allowed formats are PNG, JPEG and JPG with a maximum size of 2 megabytes."},{"key":"company_urls[]","value":"https://about.embloy.com","type":"text"},{"key":"company_urls[]","value":"https://instagram.com/embloy","type":"text"},{"key":"company_urls[]","value":"https://facebook.com/embloy","type":"text"},{"key":"company_urls[]","value":"https://genius.embloy.com","type":"text"},{"key":"company_urls[]","value":"https://docs.embloy.com","type":"text"},{"key":"company_urls[]","value":"https://developers.embloy.com","type":"text"},{"key":"company_urls[]","value":"https://api.embloy.com","type":"text"},{"key":"company_logo","description":"A square image of your company logo. Allowed formats are PNG, JPEG and JPG with a maximum size of 2 megabytes.","type":"file","src":"X-RwCrznl/ImageSignature.png","disabled":true}]},"url":"https://api.embloy.com/api/v0/company/insert-company-id"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"97b950f4-c9eb-4961-9d54-14d337997929"},{"key":"X-Runtime","value":"0.645685"},{"key":"Server-Timing","value":"cache_read.active_support;dur=0.23, cache_write.active_support;dur=0.14, start_processing.action_controller;dur=0.53, sql.active_record;dur=495.12, instantiation.active_record;dur=1.98, unpermitted_parameters.action_controller;dur=0.65, render_partial.action_view;dur=3.19, process_action.action_controller;dur=375.87"},{"key":"vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"Bad request\",\n    \"details\": {\n        \"company_urls\": [\n            {\n                \"error\": \"ERR_LENGTH\",\n                \"description\": \"Attribute length is invalid\",\n                \"count\": 10\n            }\n        ]\n    }\n}"},{"id":"404ff9c2-ca85-4c29-aade-1a88e88f3ced","name":"403 Forbidden","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"formdata","formdata":[{"key":"company_name","value":"Example Inc","type":"text","description":"Your company's official name which will be shown to applicants."},{"key":"company_slug","value":"example-inc","type":"text","description":"A unique username for your company account which will be used for your company board's url."},{"key":"company_phone","value":"004912345678910","type":"text","description":"A phone number for the applicants to contact your recruiting team for general inquiries."},{"key":"company_email","value":"contact@example.com","type":"text","description":"An email for the applicants to contact your recruiting team for general inquiries."},{"key":"company_industry","value":"Technology","type":"text","description":"An optional tag for your company's field."},{"key":"company_description","value":"This is a great company!!!","type":"text","description":"A description which will be shown on for your company profile. Needs to be between 10 and 10,000 characters and can be either plaintext or HTML."},{"key":"company_urls[]","value":"https://www.github.com/example","type":"text","description":"A JSON array of URLs (e.g., for your social media accounts, websites, etc.)"},{"key":"company_urls[]","value":"https://www.linkedin.com/company/example","type":"text","description":"A JSON array of URLs (e.g., for your social media accounts, websites, etc.)"},{"key":"company_logo","description":"A square image of your company logo. Allowed formats are PNG, JPEG and JPG with a maximum size of 2 megabytes.","type":"file","src":"2V6EuNpsa/ImageSignature.png"}]},"url":"https://api.embloy.com/api/v0/company/insert-company-id"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"c8a0c772-431f-493e-b357-53f75acbd677"},{"key":"X-Runtime","value":"1.888589"},{"key":"Server-Timing","value":"cache_read.active_support;dur=0.25, cache_write.active_support;dur=0.13, start_processing.action_controller;dur=0.54, sql.active_record;dur=697.70, instantiation.active_record;dur=199.13, process_action.action_controller;dur=1294.97"},{"key":"vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"subscription\": [\n        {\n            \"error\": \"ERR_RAC\",\n            \"description\": \"Proceeding is inhibited by an access restriction\"\n        }\n    ]\n}"},{"id":"ba3ca3b7-189d-4042-957f-07b3f1719be3","name":"404 Not Found","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"formdata","formdata":[{"key":"company_name","value":"Example Inc","type":"text","description":"Your company's official name which will be shown to applicants."},{"key":"company_slug","value":"example-inc","type":"text","description":"A unique username for your company account which will be used for your company board's url."},{"key":"company_phone","value":"004912345678910","type":"text","description":"A phone number for the applicants to contact your recruiting team for general inquiries."},{"key":"company_email","value":"contact@example.com","type":"text","description":"An email for the applicants to contact your recruiting team for general inquiries."},{"key":"company_industry","value":"Technology","type":"text","description":"An optional tag for your company's field."},{"key":"company_description","value":"This is a great company!!!","type":"text","description":"A description which will be shown on for your company profile. Needs to be between 10 and 10,000 characters and can be either plaintext or HTML."},{"key":"company_urls[]","value":"https://www.github.com/example","type":"text","description":"A JSON array of URLs (e.g., for your social media accounts, websites, etc.)"},{"key":"company_urls[]","value":"https://www.linkedin.com/company/example","type":"text","description":"A JSON array of URLs (e.g., for your social media accounts, websites, etc.)"},{"key":"company_logo","description":"A square image of your company logo. Allowed formats are PNG, JPEG and JPG with a maximum size of 2 megabytes.","type":"file","src":"2V6EuNpsa/ImageSignature.png"}]},"url":"https://api.embloy.com/api/v0/company/insert-company-id"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"32d6cbfb-afed-438d-811a-60ac0271c017"},{"key":"X-Runtime","value":"0.305263"},{"key":"Server-Timing","value":"cache_read.active_support;dur=0.28, cache_write.active_support;dur=0.12, start_processing.action_controller;dur=0.48, sql.active_record;dur=162.23, instantiation.active_record;dur=60.55, halted_callback.action_controller;dur=0.20, process_action.action_controller;dur=182.04"},{"key":"vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"company\": [\n        {\n            \"error\": \"ERR_INVALID\",\n            \"description\": \"Attribute can not be retrieved\"\n        }\n    ]\n}"}],"_postman_id":"4df7d983-f8d5-4c97-8c80-e8e5fedbe894"},{"name":"Delete company account","id":"73616992-b696-4833-aa33-35b5c50e03cd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://api.embloy.com/api/v0/company/insert-company-id","description":"<p>This endpoint allows users with a valid subscription to delete their company account. Please note that this is a destructive action!</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","company","insert-company-id"],"host":["https://api.embloy.com"],"query":[],"variable":[]}},"response":[{"id":"51d28e08-f025-4c5c-ba3b-c1ee5d6ac93c","name":"200 OK","originalRequest":{"method":"DELETE","header":[],"url":"https://api.embloy.com/api/v0/company/insert-company-id"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"5f41321a22440d982ec3b96509ef0fd4\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"5ab42223-e7ea-4301-9476-e11d7805d5cc"},{"key":"X-Runtime","value":"0.445809"},{"key":"Server-Timing","value":"cache_read.active_support;dur=0.35, cache_write.active_support;dur=0.16, start_processing.action_controller;dur=0.54, sql.active_record;dur=331.73, instantiation.active_record;dur=0.57, process_action.action_controller;dur=391.85"},{"key":"vary","value":"Origin"},{"key":"Content-Length","value":"38"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Company account deleted!\"\n}"},{"id":"7d83f70c-a0a7-48f8-95a7-4d5a5f78e953","name":"403 Forbidden","originalRequest":{"method":"DELETE","header":[],"url":"https://api.embloy.com/api/v0/company/insert-company-id"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"c8a0c772-431f-493e-b357-53f75acbd677"},{"key":"X-Runtime","value":"1.888589"},{"key":"Server-Timing","value":"cache_read.active_support;dur=0.25, cache_write.active_support;dur=0.13, start_processing.action_controller;dur=0.54, sql.active_record;dur=697.70, instantiation.active_record;dur=199.13, process_action.action_controller;dur=1294.97"},{"key":"vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"subscription\": [\n        {\n            \"error\": \"ERR_RAC\",\n            \"description\": \"Proceeding is inhibited by an access restriction\"\n        }\n    ]\n}"},{"id":"c8d55c10-6a8b-44de-9994-0acd33db842d","name":"404 Not Found","originalRequest":{"method":"DELETE","header":[],"url":"https://api.embloy.com/api/v0/company/insert-company-id"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"ce569507-e93b-4c86-bcce-ebd595f8734a"},{"key":"X-Runtime","value":"0.229990"},{"key":"Server-Timing","value":"cache_read.active_support;dur=0.39, cache_write.active_support;dur=0.13, start_processing.action_controller;dur=0.65, sql.active_record;dur=160.48, instantiation.active_record;dur=0.50, halted_callback.action_controller;dur=0.24, process_action.action_controller;dur=118.07"},{"key":"vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"company\": [\n        {\n            \"error\": \"ERR_INVALID\",\n            \"description\": \"Attribute can not be retrieved\"\n        }\n    ]\n}"}],"_postman_id":"73616992-b696-4833-aa33-35b5c50e03cd"}],"id":"b2f75630-ba15-48af-a243-8cebecca76a3","description":"<p>All requests related to fetching company data.</p>\n","_postman_id":"b2f75630-ba15-48af-a243-8cebecca76a3","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}}},{"name":"Joblists","item":[{"name":"Get all lists","id":"96e0c7ab-4a73-4a48-92ef-7efe130a8dc3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/job_lists","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","job_lists"],"host":["https://api.embloy.com"],"query":[],"variable":[]}},"response":[{"id":"0a80105f-61dd-4798-a0b1-ce127c977875","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/job_lists"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 1,\n        \"name\": \"Bookmarks\",\n        \"user_id\": 1,\n        \"created_at\": \"2024-11-13T13:37:27.041Z\",\n        \"updated_at\": \"2024-11-13T13:37:27.041Z\"\n    }\n]"},{"id":"979a7fbe-2b90-41b2-a743-bdeb66b04185","name":"204 No Content","originalRequest":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/job_lists"},"status":"No Content","code":204,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"96e0c7ab-4a73-4a48-92ef-7efe130a8dc3"},{"name":"Get single list","id":"58f8a3aa-ad32-41fc-bf3a-c5c2335a69ba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/job_lists/insert-job-list-id","description":"<p>This endpoint retrieves the details of a specific job list.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","job_lists","insert-job-list-id"],"host":["https://api.embloy.com"],"query":[],"variable":[]}},"response":[{"id":"4c8b7301-0d8c-43cf-b548-fc76024efc0c","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/job_lists/insert-job-list-id"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1,\n    \"name\": \"Bookmarks\",\n    \"user_id\": 1,\n    \"created_at\": \"2024-11-13T13:37:27.041Z\",\n    \"updated_at\": \"2024-11-13T13:37:27.041Z\"\n}"},{"id":"6b0a0866-f622-40fb-a761-feb11f74e4a0","name":"404 Not Found","originalRequest":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/job_lists/insert-job-list-id"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_list\": [\n        {\n            \"error\": \"ERR_INVALID\",\n            \"description\": \"Attribute can not be retrieved\"\n        }\n    ]\n}"}],"_postman_id":"58f8a3aa-ad32-41fc-bf3a-c5c2335a69ba"},{"name":"Create list","id":"5a8e103f-c81c-4e1b-b474-391bd09b34dd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://api.embloy.com/api/v0/job_lists","description":"<p>This endpoint creates a new job list.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","job_lists"],"host":["https://api.embloy.com"],"query":[],"variable":[]}},"response":[{"id":"5700c77d-4241-4824-aa5f-946dcf3a9645","name":"201 Created","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Bookmarks\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.embloy.com/api/v0/job_lists"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1,\n    \"name\": \"Bookmarks\",\n    \"user_id\": 1,\n    \"created_at\": \"2024-11-13T13:37:27.041Z\",\n    \"updated_at\": \"2024-11-13T13:37:27.041Z\"\n}"},{"id":"9a143e26-cea5-451d-88e7-84d5b332e42b","name":"400 Bad Request","originalRequest":{"method":"POST","header":[],"url":"https://api.embloy.com/api/v0/job_lists"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"name\": [\n        \"can't be blank\"\n    ]\n}"}],"_postman_id":"5a8e103f-c81c-4e1b-b474-391bd09b34dd"},{"name":"Create list item","id":"5f005800-7651-45eb-9a3a-1012e9c83a8b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://api.embloy.com/api/v0/job_lists/insert-job-list-id/items","description":"<p>This endpoint creates a new job list item, which is added to an existing job list.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","job_lists","insert-job-list-id","items"],"host":["https://api.embloy.com"],"query":[],"variable":[]}},"response":[{"id":"2872d814-b3be-44a1-af87-028a1a5f7480","name":"201 Created","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"job_id\": 20,\n    \"notes\": \"This is a great job!\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.embloy.com/api/v0/job_lists/insert-job-list-id/items"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": 1,\n    \"job_id\": 20,\n    \"job_list_id\": 3,\n    \"notes\": \"This is a great job!\",\n    \"created_at\": \"2024-11-13T13:58:47.305Z\",\n    \"updated_at\": \"2024-11-13T13:58:47.305Z\"\n}"},{"id":"650a2a4c-f089-43ab-b605-1ef64907af61","name":"400 Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"notes\": \"exampleexampleexampleexampleexampleexampleexampleexampleexampleexampleexampleexampleexampleexampleexampleexampleexampleexampleexampleexampleexampleexampleexampleexampleexampleexampleexampleexampleexampleexampleexampleexampleexampleexampleexampleexampleexample\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.embloy.com/api/v0/job_lists/insert-job-list-id/items"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"job\": [\n        \"must exist\"\n    ],\n    \"job_id\": [\n        \"can't be blank\"\n    ],\n    \"notes\": [\n        \"cannot have more than 255 characters\"\n    ]\n}"},{"id":"f6318f39-e4ef-4cc5-8a87-3c659d44aecd","name":"400 Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"job_id\": 20\n}","options":{"raw":{"language":"json"}}},"url":"https://api.embloy.com/api/v0/job_lists/insert-job-list-id/items"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_id\": [\n        \"has already been taken\"\n    ]\n}"},{"id":"0c9bc24f-e2a2-4244-9f87-593a051479aa","name":"404 Not Found","originalRequest":{"method":"POST","header":[],"url":"https://api.embloy.com/api/v0/job_lists/insert-job-list-id/items"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_list\": [\n        {\n            \"error\": \"ERR_INVALID\",\n            \"description\": \"Attribute can not be retrieved\"\n        }\n    ]\n}"}],"_postman_id":"5f005800-7651-45eb-9a3a-1012e9c83a8b"},{"name":"Update list","id":"26bfcb31-2f16-4d3a-a223-15569cba758b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"url":"https://api.embloy.com/api/v0/job_lists/insert-job-list-id","description":"<p>This endpoint updates an existing job list created by the current user</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","job_lists","insert-job-list-id"],"host":["https://api.embloy.com"],"query":[],"variable":[]}},"response":[{"id":"e4d15a8a-3371-4990-b1d8-5940cad4d3f1","name":"200 OK","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Watchlist\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.embloy.com/api/v0/job_lists/insert-job-list-id"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"user_id\": 1,\n    \"name\": \"Watchlist\",\n    \"id\": 1,\n    \"created_at\": \"2024-11-13T13:37:27.041Z\",\n    \"updated_at\": \"2024-11-13T13:41:21.564Z\"\n}"},{"id":"17d90af0-7c70-4aea-8184-411e6c239bad","name":"404 Not Found","originalRequest":{"method":"PATCH","header":[],"url":"https://api.embloy.com/api/v0/job_lists/insert-job-list-id"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_list\": [\n        {\n            \"error\": \"ERR_INVALID\",\n            \"description\": \"Attribute can not be retrieved\"\n        }\n    ]\n}"}],"_postman_id":"26bfcb31-2f16-4d3a-a223-15569cba758b"},{"name":"Delete list","id":"69b1a729-b8ab-4bb9-b17a-ed37104401c9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://api.embloy.com/api/v0/job_lists/insert-job-list-id","description":"<p>This endpoint deletes an existing job list created by the current user.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","job_lists","insert-job-list-id"],"host":["https://api.embloy.com"],"query":[],"variable":[]}},"response":[{"id":"b14d9356-4bb2-41c8-87d2-13e12f66dceb","name":"200 OK","originalRequest":{"method":"DELETE","header":[],"url":"https://api.embloy.com/api/v0/job_lists/insert-job-list-id"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Job list deleted!\"\n}"},{"id":"60964e13-aac1-42d7-92fb-fe0b9d0502a4","name":"404 Not Found","originalRequest":{"method":"DELETE","header":[],"url":"https://api.embloy.com/api/v0/job_lists/insert-job-list-id"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_list\": [\n        {\n            \"error\": \"ERR_INVALID\",\n            \"description\": \"Attribute can not be retrieved\"\n        }\n    ]\n}"}],"_postman_id":"69b1a729-b8ab-4bb9-b17a-ed37104401c9"},{"name":"Delete list item","id":"27cb961d-6219-4f2d-a808-2c50cf481acf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://api.embloy.com/api/v0/job_lists/insert-job-list-id/items/insert-job-list-item-id","description":"<p>This endpoint deletes an item from a job list created by the current user.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","job_lists","insert-job-list-id","items","insert-job-list-item-id"],"host":["https://api.embloy.com"],"query":[],"variable":[]}},"response":[{"id":"4167f669-2c83-42ac-bd61-43a17f5df5e8","name":"200 OK","originalRequest":{"method":"DELETE","header":[],"url":"https://api.embloy.com/api/v0/job_lists/insert-job-list-id/items/insert-job-list-item-id"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Job list item deleted!\"\n}"},{"id":"703a2adb-8552-47e7-af21-170eef02963d","name":"404 Not Found","originalRequest":{"method":"DELETE","header":[],"url":"https://api.embloy.com/api/v0/job_lists/insert-job-list-id/items/insert-job-list-item-id"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_list\": [\n        {\n            \"error\": \"ERR_INVALID\",\n            \"description\": \"Attribute can not be retrieved\"\n        }\n    ]\n}"},{"id":"ae51dcb4-da98-4990-b309-cd94d6a90f09","name":"404 Not Found","originalRequest":{"method":"DELETE","header":[],"url":"https://api.embloy.com/api/v0/job_lists/insert-job-list-id/items/insert-job-list-item-id"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_list_item\": [\n        {\n            \"error\": \"ERR_INVALID\",\n            \"description\": \"Attribute can not be retrieved\"\n        }\n    ]\n}"}],"_postman_id":"27cb961d-6219-4f2d-a808-2c50cf481acf"}],"id":"0fb4b401-09cb-4853-92a6-514be2ac76db","description":"<p>All requests related to job lists and entries.</p>\n","_postman_id":"0fb4b401-09cb-4853-92a6-514be2ac76db","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}}},{"name":"Applications","item":[{"name":"Get all applications (employer)","id":"a0667553-22a3-46cc-b796-db7d925c30c8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/applications","description":"<p>The provided access token is first verified, and then all received applications for the given employer are returned.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","applications"],"host":["https://api.embloy.com"],"query":[],"variable":[]}},"response":[{"id":"97a37395-3be6-48d1-ae14-80bc8d4c904e","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/jobs/applications"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"applications\": [\n        {\n            \"job_id\": 17,\n            \"user_id\": 5,\n            \"ext_id\": null,\n            \"updated_at\": \"2024-09-11T04:44:33.328Z\",\n            \"created_at\": \"2024-09-11T04:44:33.328Z\",\n            \"status\": \"pending\",\n            \"response\": null,\n            \"deleted_at\": null,\n            \"version\": 1\n        },\n        {\n            \"job_id\": 20,\n            \"user_id\": 2,\n            \"ext_id\": null,\n            \"updated_at\": \"2024-11-10T13:40:36.188Z\",\n            \"created_at\": \"2024-11-10T13:40:36.188Z\",\n            \"status\": \"pending\",\n            \"response\": null,\n            \"deleted_at\": null,\n            \"version\": 1\n        },\n        {\n            \"job_id\": 130,\n            \"user_id\": 1,\n            \"ext_id\": \"lever__0fbebc22-7d75-4c41-b2a7-2aa89d9c6920\",\n            \"updated_at\": \"2024-09-19T19:01:18.263Z\",\n            \"created_at\": \"2024-09-17T23:48:31.973Z\",\n            \"status\": \"accepted\",\n            \"response\": \"Accepted\",\n            \"deleted_at\": null,\n            \"version\": 5\n        },\n        {\n            \"job_id\": 20,\n            \"user_id\": 1,\n            \"ext_id\": null,\n            \"updated_at\": \"2024-11-15T18:55:36.663Z\",\n            \"created_at\": \"2024-09-13T13:41:43.960Z\",\n            \"status\": \"pending\",\n            \"response\": null,\n            \"deleted_at\": null,\n            \"version\": 16\n        },\n        {\n            \"job_id\": 20,\n            \"user_id\": 8,\n            \"ext_id\": null,\n            \"updated_at\": \"2024-09-13T13:58:26.404Z\",\n            \"created_at\": \"2024-09-12T22:57:36.958Z\",\n            \"status\": \"accepted\",\n            \"response\": \"ACCEPTED\",\n            \"deleted_at\": null,\n            \"version\": 3\n        },\n        {\n            \"job_id\": 20,\n            \"user_id\": 6,\n            \"ext_id\": null,\n            \"updated_at\": \"2024-11-28T19:38:34.043Z\",\n            \"created_at\": \"2024-11-28T19:38:34.043Z\",\n            \"status\": \"pending\",\n            \"response\": null,\n            \"deleted_at\": null,\n            \"version\": 1\n        }\n    ]\n}"}],"_postman_id":"a0667553-22a3-46cc-b796-db7d925c30c8"},{"name":"Get all applications for a job (employer)","id":"31eec94f-acdd-4019-aab0-dfd323e2bf33","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/jobs/insert-your-job-id/applications","description":"<p>The provided access token is first verified, and then all received applications for the given jobs are returned.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","jobs","insert-your-job-id","applications"],"host":["https://api.embloy.com"],"query":[],"variable":[]}},"response":[{"id":"46b26130-a7d3-407e-b5d4-05f82e1185fb","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/jobs/insert-your-job-id/applications"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"applications\": [\n        {\n            \"job_id\": 130,\n            \"user_id\": 1,\n            \"ext_id\": \"lever__0fbebc22-7d75-4c41-b2a7-2aa89d9c6920\",\n            \"updated_at\": \"2024-09-19T19:01:18.263Z\",\n            \"created_at\": \"2024-09-17T23:48:31.973Z\",\n            \"status\": \"accepted\",\n            \"response\": \"Accepted\",\n            \"deleted_at\": null,\n            \"version\": 5,\n            \"applicant\": {\n                \"id\": 1,\n                \"first_name\": \"Carlo\",\n                \"last_name\": \"Bortolan\",\n                \"activity_status\": 1,\n                \"user_role\": \"admin\",\n                \"date_of_birth\": null,\n                \"linkedin_url\": \"https://linkedin.com/in/carlobortolan\",\n                \"instagram_url\": \"\",\n                \"twitter_url\": null,\n                \"facebook_url\": null,\n                \"github_url\": \"https://github.com/carlobortolan\",\n                \"portfolio_url\": \"https://carlobortolan.com\",\n                \"image_url\": \"https://embloy.s3.eu-central-1.amazonaws.com/09qxhad4poqjuohkth3yp7e3iab4?response-content-disposition=inline%3B%20filename%3D%22Screenshot%202024-11-24%20175846.png%22%3B%20filename%2A%3DUTF-8%27%27Screenshot%25202024-11-24%2520175846.png&response-content-type=image%2Fpng&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA47CRXKRHNYNTRWHT%2F20241130%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20241130T230304Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=e44a2a8c422dac2f73270d8544665403d8e4d64b11d05b9605b46e67002c8e64\",\n                \"created_at\": \"2024-09-10T18:53:46.801Z\"\n            }\n        }\n    ]\n}"}],"_postman_id":"31eec94f-acdd-4019-aab0-dfd323e2bf33"},{"name":"Get specific user's application (employer)","id":"3e91530b-9003-4f11-bfd1-52dc670e022f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/jobs/insert-your-job-id/applications/insert-application-id","description":"<p>Returns the applications submitted by a specifc user for a given job owned by the current user including optional application attachments.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","jobs","insert-your-job-id","applications","insert-application-id"],"host":["https://api.embloy.com"],"query":[],"variable":[]}},"response":[{"id":"c38ae15e-5a6d-4b04-86b7-7057329e958b","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/jobs/insert-your-job-id/applications/insert-application-id"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"application\": {\n        \"job_id\": 6,\n        \"user_id\": 4,\n        \"ext_id\": \"lever__0fbebc22-7d75-4c41-b2a7-2aa89d9c6920\",\n        \"updated_at\": \"2024-09-19T19:01:18.263Z\",\n        \"created_at\": \"2024-09-17T23:48:31.973Z\",\n        \"status\": \"accepted\",\n        \"response\": \"Accepted\",\n        \"deleted_at\": null,\n        \"submitted_at\": \"2024-09-17T23:48:31.973Z\",\n        \"version\": 5,\n        \"applicant\": {\n            \"id\": 6,\n            \"first_name\": \"Carlo\",\n            \"last_name\": \"Bortolan\",\n            \"activity_status\": 1,\n            \"user_role\": \"admin\",\n            \"date_of_birth\": null,\n            \"linkedin_url\": \"https://linkedin.com/in/carlobortolan\",\n            \"instagram_url\": \"\",\n            \"twitter_url\": null,\n            \"facebook_url\": null,\n            \"github_url\": \"https://github.com/carlobortolan\",\n            \"portfolio_url\": \"https://carlobortolan.com\",\n            \"image_url\": \"https://embloy.s3.eu-central-1.amazonaws.com/09qxhad4poqjuohkth3yp7e3iab4?response-content-disposition=inline%3B%20filename%3D%22Screenshot%202024-11-24%20175846.png%22%3B%20filename%2A%3DUTF-8%27%27Screenshot%25202024-11-24%2520175846.png&response-content-type=image%2Fpng&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA47CRXKRHNYNTRWHT%2F20241130%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20241130T213020Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=231175f41aded9644f69a445d29f2d7c17e41ee7dad2d064337a6330c73d11e4\",\n            \"created_at\": \"2024-09-10T18:53:46.801Z\"\n        }\n    },\n    \"application_answers\": [\n        {\n            \"id\": 235,\n            \"job_id\": 6,\n            \"user_id\": 4,\n            \"application_option_id\": 12,\n            \"answer\": \"https://api.lever.co/v1/uploads/2914b640-a761-4976-89a4-4be38e65de27-CV.pdf\",\n            \"question\": \"Upload your resume\",\n            \"created_at\": \"2024-12-21T23:20:02.784Z\",\n            \"updated_at\": \"2024-12-21T23:20:02.784Z\",\n            \"deleted_at\": null,\n            \"version\": 1,\n            \"attachment\": {\n                \"id\": 302,\n                \"name\": \"attachment\",\n                \"record_type\": \"ApplicationAnswer\",\n                \"record_id\": 1449,\n                \"blob_id\": 302,\n                \"created_at\": \"2024-12-21T23:20:02.784Z\",\n                \"url\": \"https://embloy.s3.eu-central-1.amazonaws.com/tz3xeydk8zjnqi9fjt3w0wu3xz1y?response-content-disposition=inline%3B%20filename%3D%22CV.pdf%22%3B%20filename%2A%3DUTF-8%27%27CV.pdf&response-content-type=application%2Fpdf&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA47CRXKRHNYNTRWHT%2F20241130%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20241130T213020Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=19bf8e505052215bd2ccc0affd997d46b8f971b43d7408b18eba008f91b97da1\"\n            }\n        },\n        {\n            \"id\": 236,\n            \"job_id\": 4,\n            \"user_id\": 6,\n            \"application_option_id\": 32,\n            \"answer\": \"[\\\"Yes, it's a free world\\\"]\",\n            \"created_at\": \"2024-12-21T23:20:02.784Z\",\n            \"updated_at\": \"2024-12-21T23:20:02.784Z\",\n            \"deleted_at\": null,\n            \"version\": 1,\n            \"question\": \"Should it be allowed to drink Capuccino after 1pm?\",\n            \"attachment\": null\n        },\n        {\n            \"id\": 239,\n            \"job_id\": 4,\n            \"user_id\": 6,\n            \"application_option_id\": 25,\n            \"answer\": \"Yes\",\n            \"created_at\": \"2024-12-21T23:21:22.835Z\",\n            \"updated_at\": \"2024-12-21T23:21:22.835Z\",\n            \"deleted_at\": null,\n            \"version\": 1,\n            \"question\": \"Do you require a work Visa?\",\n            \"attachment\": null\n        },\n        {\n            \"id\": 240,\n            \"job_id\": 4,\n            \"user_id\": 6,\n            \"application_option_id\": 26,\n            \"answer\": \"Master's Degree\",\n            \"created_at\": \"2024-12-21T23:21:23.319Z\",\n            \"updated_at\": \"2024-12-21T23:21:23.319Z\",\n            \"deleted_at\": null,\n            \"version\": 1,\n            \"question\": \"What's your highest form of education?\",\n            \"attachment\": null\n        },\n        {\n            \"id\": 241,\n            \"job_id\": 4,\n            \"user_id\": 6,\n            \"application_option_id\": 27,\n            \"answer\": \"https://github.com/username\",\n            \"created_at\": \"2024-12-21T23:21:23.411Z\",\n            \"updated_at\": \"2024-12-21T23:21:23.411Z\",\n            \"deleted_at\": null,\n            \"version\": 1,\n            \"question\": \"Your GitHub Profile\",\n            \"attachment\": null\n        },\n        {\n            \"id\": 242,\n            \"job_id\": 4,\n            \"user_id\": 6,\n            \"application_option_id\": 33,\n            \"answer\": \"Yes\",\n            \"created_at\": \"2024-12-21T23:21:23.498Z\",\n            \"updated_at\": \"2024-12-21T23:21:23.498Z\",\n            \"deleted_at\": null,\n            \"version\": 1,\n            \"question\": \"True false question\",\n            \"attachment\": null\n        }\n    ]\n}"}],"_postman_id":"3e91530b-9003-4f11-bfd1-52dc670e022f"},{"name":"Get user's application for a job (applicant)","id":"cbda0cd9-5b58-4f73-b7a0-d435a6641ae7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/jobs/insert-your-job-id/application?draft_only=1","description":"<p>Returns the applications submitted by the current user for a given job including optional application attachments.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","jobs","insert-your-job-id","application"],"host":["https://api.embloy.com"],"query":[{"description":{"content":"<p>Optional flag to filter for saved application drafts</p>\n","type":"text/plain"},"key":"draft_only","value":"1"}],"variable":[]}},"response":[{"id":"a0324cdc-5af7-4992-88d3-2282ada765ad","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/jobs/insert-your-job-id/application"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"application\": {\n        \"job_id\": 6,\n        \"user_id\": 4,\n        \"ext_id\": \"lever__0fbebc22-7d75-4c41-b2a7-2aa89d9c6920\",\n        \"updated_at\": \"2024-09-19T19:01:18.263Z\",\n        \"created_at\": \"2024-09-17T23:48:31.973Z\",\n        \"status\": \"accepted\",\n        \"response\": \"Accepted\",\n        \"deleted_at\": null,\n        \"submitted_at\": \"2024-09-17T23:48:31.973Z\",\n        \"version\": 5,\n        \"applicant\": {\n            \"id\": 6,\n            \"first_name\": \"Carlo\",\n            \"last_name\": \"Bortolan\",\n            \"activity_status\": 1,\n            \"user_role\": \"admin\",\n            \"date_of_birth\": null,\n            \"linkedin_url\": \"https://linkedin.com/in/carlobortolan\",\n            \"instagram_url\": \"\",\n            \"twitter_url\": null,\n            \"facebook_url\": null,\n            \"github_url\": \"https://github.com/carlobortolan\",\n            \"portfolio_url\": \"https://carlobortolan.com\",\n            \"image_url\": \"https://embloy.s3.eu-central-1.amazonaws.com/09qxhad4poqjuohkth3yp7e3iab4?response-content-disposition=inline%3B%20filename%3D%22Screenshot%202024-11-24%20175846.png%22%3B%20filename%2A%3DUTF-8%27%27Screenshot%25202024-11-24%2520175846.png&response-content-type=image%2Fpng&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA47CRXKRHNYNTRWHT%2F20241130%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20241130T213020Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=231175f41aded9644f69a445d29f2d7c17e41ee7dad2d064337a6330c73d11e4\",\n            \"created_at\": \"2024-09-10T18:53:46.801Z\"\n        }\n    },\n    \"application_answers\": [\n        {\n            \"id\": 235,\n            \"job_id\": 6,\n            \"user_id\": 4,\n            \"application_option_id\": 12,\n            \"answer\": \"https://api.lever.co/v1/uploads/2914b640-a761-4976-89a4-4be38e65de27-CV.pdf\",\n            \"question\": \"Upload your resume\",\n            \"created_at\": \"2024-12-21T23:20:02.784Z\",\n            \"updated_at\": \"2024-12-21T23:20:02.784Z\",\n            \"deleted_at\": null,\n            \"version\": 1,\n            \"attachment\": {\n                \"id\": 302,\n                \"name\": \"attachment\",\n                \"record_type\": \"ApplicationAnswer\",\n                \"record_id\": 1449,\n                \"blob_id\": 302,\n                \"created_at\": \"2024-12-21T23:20:02.784Z\",\n                \"url\": \"https://embloy.s3.eu-central-1.amazonaws.com/tz3xeydk8zjnqi9fjt3w0wu3xz1y?response-content-disposition=inline%3B%20filename%3D%22CV.pdf%22%3B%20filename%2A%3DUTF-8%27%27CV.pdf&response-content-type=application%2Fpdf&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIA47CRXKRHNYNTRWHT%2F20241130%2Feu-central-1%2Fs3%2Faws4_request&X-Amz-Date=20241130T213020Z&X-Amz-Expires=300&X-Amz-SignedHeaders=host&X-Amz-Signature=19bf8e505052215bd2ccc0affd997d46b8f971b43d7408b18eba008f91b97da1\"\n            }\n        },\n        {\n            \"id\": 236,\n            \"job_id\": 4,\n            \"user_id\": 6,\n            \"application_option_id\": 32,\n            \"answer\": \"[\\\"Yes, it's a free world\\\"]\",\n            \"created_at\": \"2024-12-21T23:20:02.784Z\",\n            \"updated_at\": \"2024-12-21T23:20:02.784Z\",\n            \"deleted_at\": null,\n            \"version\": 1,\n            \"question\": \"Should it be allowed to drink Capuccino after 1pm?\",\n            \"attachment\": null\n        },\n        {\n            \"id\": 239,\n            \"job_id\": 4,\n            \"user_id\": 6,\n            \"application_option_id\": 25,\n            \"answer\": \"Yes\",\n            \"created_at\": \"2024-12-21T23:21:22.835Z\",\n            \"updated_at\": \"2024-12-21T23:21:22.835Z\",\n            \"deleted_at\": null,\n            \"version\": 1,\n            \"question\": \"Do you require a work Visa?\",\n            \"attachment\": null\n        },\n        {\n            \"id\": 240,\n            \"job_id\": 4,\n            \"user_id\": 6,\n            \"application_option_id\": 26,\n            \"answer\": \"Master's Degree\",\n            \"created_at\": \"2024-12-21T23:21:23.319Z\",\n            \"updated_at\": \"2024-12-21T23:21:23.319Z\",\n            \"deleted_at\": null,\n            \"version\": 1,\n            \"question\": \"What's your highest form of education?\",\n            \"attachment\": null\n        },\n        {\n            \"id\": 241,\n            \"job_id\": 4,\n            \"user_id\": 6,\n            \"application_option_id\": 27,\n            \"answer\": \"https://github.com/username\",\n            \"created_at\": \"2024-12-21T23:21:23.411Z\",\n            \"updated_at\": \"2024-12-21T23:21:23.411Z\",\n            \"deleted_at\": null,\n            \"version\": 1,\n            \"question\": \"Your GitHub Profile\",\n            \"attachment\": null\n        },\n        {\n            \"id\": 242,\n            \"job_id\": 4,\n            \"user_id\": 6,\n            \"application_option_id\": 33,\n            \"answer\": \"Yes\",\n            \"created_at\": \"2024-12-21T23:21:23.498Z\",\n            \"updated_at\": \"2024-12-21T23:21:23.498Z\",\n            \"deleted_at\": null,\n            \"version\": 1,\n            \"question\": \"True false question\",\n            \"attachment\": null\n        }\n    ]\n}"},{"id":"3ac28b96-c55e-438f-b117-c6fb0fd14100","name":"204 No Content","originalRequest":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/jobs/insert-your-job-id/application"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"6f4c2f4a-4191-4076-bd7f-21ce243f364d"},{"key":"X-Runtime","value":"0.974784"},{"key":"Server-Timing","value":"cache_read.active_support;dur=0.68, cache_write.active_support;dur=0.23, start_processing.action_controller;dur=0.50, sql.active_record;dur=800.88, instantiation.active_record;dur=0.56, process_action.action_controller;dur=935.12"},{"key":"vary","value":"Origin"}],"cookie":[],"responseTime":null,"body":null},{"id":"d5e843de-91cd-46ac-86cc-84b97dc72366","name":"404 Not Found","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.embloy.com/api/v0/jobs/insert-your-job-id/application?draft_only=1","host":["https://api.embloy.com"],"path":["api","v0","jobs","insert-your-job-id","application"],"query":[{"key":"draft_only","value":"1","description":"Optional flag to filter for saved application drafts"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"ac65d6b2-62b3-4a8d-8c3a-c8f2520c4093"},{"key":"X-Runtime","value":"2.159991"},{"key":"Server-Timing","value":"cache_read.active_support;dur=0.51, cache_write.active_support;dur=0.23, start_processing.action_controller;dur=0.55, sql.active_record;dur=1197.81, instantiation.active_record;dur=130.65, process_action.action_controller;dur=1275.19"},{"key":"vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"No draft found for this job.\"\n}"}],"_postman_id":"cbda0cd9-5b58-4f73-b7a0-d435a6641ae7"},{"name":"Get specific pipeline for specific application","id":"28c785fa-00cb-4d58-bc11-9163c94b4d7d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/jobs/insert-your-job-id/applications/insert-application-id/pipeline","description":"<p>Returns the current pipeline for an application submitted by a specifc user for a given job owned by the current user.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","jobs","insert-your-job-id","applications","insert-application-id","pipeline"],"host":["https://api.embloy.com"],"query":[],"variable":[]}},"response":[{"id":"ab40144c-7b2c-46d3-bb23-2ed79039f2ea","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/jobs/insert-your-job-id/applications/insert-application-id/pipeline"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":""},{"id":"7f92d1b6-fcbc-41c0-8f0d-f48fc0c4095d","name":"204 No Content","originalRequest":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/jobs/insert-your-job-id/applications/insert-application-id/pipeline"},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"28c785fa-00cb-4d58-bc11-9163c94b4d7d"},{"name":"Get pipeline for submitted application","id":"7bf664cf-a178-4c45-9a7e-c83fe2046eb5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/jobs/insert-your-job-id/application/pipeline","description":"<p>Returns the current pipeline for an application submitted by the current user for a given job.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","jobs","insert-your-job-id","application","pipeline"],"host":["https://api.embloy.com"],"query":[],"variable":[]}},"response":[{"id":"0dede2c0-a4e6-4bc9-9242-b94cf1f2f30a","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/jobs//application/pipeline"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"pipeline\": [\n        {\n            \"id\": 15,\n            \"ext_id\": \"lever__fc29952a-5b7e-4ce0-bca5-23aab339ec41\",\n            \"job_id\": 5,\n            \"user_id\": 13,\n            \"event_type\": \"candidateDeleted\",\n            \"event_details\": \"{\\\"candidateId\\\":\\\"fc29952a-5b7e-4ce0-bca5-23aab339ec41\\\",\\\"deletedBy\\\":\\\"6a7f1599-009e-41e5-9249-181ee79cf84c\\\",\\\"contactId\\\":\\\"05c248f9-ccb1-435f-bab5-0ec608aec263\\\",\\\"opportunityId\\\":\\\"fc29952a-5b7e-4ce0-bca5-23aab339ec41\\\"}\",\n            \"previous_event_id\": 14,\n            \"next_event_id\": null,\n            \"created_at\": \"2024-09-04T17:40:31.970Z\",\n            \"updated_at\": \"2024-09-04T17:40:31.970Z\"\n        },\n        {\n            \"id\": 14,\n            \"ext_id\": \"lever__fc29952a-5b7e-4ce0-bca5-23aab339ec41\",\n            \"job_id\": 5,\n            \"user_id\": 13,\n            \"event_type\": \"candidateHired\",\n            \"event_details\": \"{\\\"candidateId\\\":\\\"fc29952a-5b7e-4ce0-bca5-23aab339ec41\\\",\\\"contactId\\\":\\\"05c248f9-ccb1-435f-bab5-0ec608aec263\\\",\\\"opportunityId\\\":\\\"fc29952a-5b7e-4ce0-bca5-23aab339ec41\\\"}\",\n            \"previous_event_id\": 13,\n            \"next_event_id\": null,\n            \"created_at\": \"2024-09-04T17:40:09.074Z\",\n            \"updated_at\": \"2024-09-04T17:40:09.074Z\"\n        },\n        {\n            \"id\": 13,\n            \"ext_id\": \"lever__fc29952a-5b7e-4ce0-bca5-23aab339ec41\",\n            \"job_id\": 5,\n            \"user_id\": 13,\n            \"event_type\": \"candidateHired\",\n            \"event_details\": \"{\\\"candidateId\\\":\\\"fc29952a-5b7e-4ce0-bca5-23aab339ec41\\\",\\\"contactId\\\":\\\"05c248f9-ccb1-435f-bab5-0ec608aec263\\\",\\\"opportunityId\\\":\\\"fc29952a-5b7e-4ce0-bca5-23aab339ec41\\\"}\",\n            \"previous_event_id\": 12,\n            \"next_event_id\": null,\n            \"created_at\": \"2024-09-04T17:39:41.189Z\",\n            \"updated_at\": \"2024-09-04T17:39:41.189Z\"\n        },\n        {\n            \"id\": 12,\n            \"ext_id\": \"lever__fc29952a-5b7e-4ce0-bca5-23aab339ec41\",\n            \"job_id\": 5,\n            \"user_id\": 13,\n            \"event_type\": \"candidateHired\",\n            \"event_details\": \"{\\\"candidateId\\\":\\\"fc29952a-5b7e-4ce0-bca5-23aab339ec41\\\",\\\"contactId\\\":\\\"05c248f9-ccb1-435f-bab5-0ec608aec263\\\",\\\"opportunityId\\\":\\\"fc29952a-5b7e-4ce0-bca5-23aab339ec41\\\"}\",\n            \"previous_event_id\": 11,\n            \"next_event_id\": null,\n            \"created_at\": \"2024-09-04T17:39:15.281Z\",\n            \"updated_at\": \"2024-09-04T17:39:15.281Z\"\n        },\n        {\n            \"id\": 11,\n            \"ext_id\": \"lever__fc29952a-5b7e-4ce0-bca5-23aab339ec41\",\n            \"job_id\": 5,\n            \"user_id\": 13,\n            \"event_type\": \"candidateHired\",\n            \"event_details\": \"{\\\"candidateId\\\":\\\"fc29952a-5b7e-4ce0-bca5-23aab339ec41\\\",\\\"contactId\\\":\\\"05c248f9-ccb1-435f-bab5-0ec608aec263\\\",\\\"opportunityId\\\":\\\"fc29952a-5b7e-4ce0-bca5-23aab339ec41\\\"}\",\n            \"previous_event_id\": 10,\n            \"next_event_id\": null,\n            \"created_at\": \"2024-09-04T17:37:37.750Z\",\n            \"updated_at\": \"2024-09-04T17:37:37.750Z\"\n        },\n        {\n            \"id\": 10,\n            \"ext_id\": \"lever__fc29952a-5b7e-4ce0-bca5-23aab339ec41\",\n            \"job_id\": 5,\n            \"user_id\": 13,\n            \"event_type\": \"interviewDeleted\",\n            \"event_details\": \"{\\\"interviewId\\\":\\\"da4384d5-ab35-4bcc-87e4-2d04bfc9b838\\\",\\\"panelId\\\":\\\"da4384d5-ab35-4bcc-87e4-2d04bfc9b838\\\",\\\"opportunityId\\\":\\\"fc29952a-5b7e-4ce0-bca5-23aab339ec41\\\",\\\"deletedAt\\\":\\\"1591113053231\\\"}\",\n            \"previous_event_id\": 9,\n            \"next_event_id\": null,\n            \"created_at\": \"2024-09-04T17:37:12.895Z\",\n            \"updated_at\": \"2024-09-04T17:37:12.895Z\"\n        },\n        {\n            \"id\": 9,\n            \"ext_id\": \"lever__fc29952a-5b7e-4ce0-bca5-23aab339ec41\",\n            \"job_id\": 5,\n            \"user_id\": 13,\n            \"event_type\": \"interviewDeleted\",\n            \"event_details\": \"{\\\"interviewId\\\":\\\"da4384d5-ab35-4bcc-87e4-2d04bfc9b838\\\",\\\"panelId\\\":\\\"da4384d5-ab35-4bcc-87e4-2d04bfc9b838\\\",\\\"opportunityId\\\":\\\"fc29952a-5b7e-4ce0-bca5-23aab339ec41\\\",\\\"deletedAt\\\":\\\"1591113053231\\\"}\",\n            \"previous_event_id\": 8,\n            \"next_event_id\": null,\n            \"created_at\": \"2024-09-04T17:13:53.596Z\",\n            \"updated_at\": \"2024-09-04T17:13:53.596Z\"\n        },\n        {\n            \"id\": 8,\n            \"ext_id\": \"lever__fc29952a-5b7e-4ce0-bca5-23aab339ec41\",\n            \"job_id\": 5,\n            \"user_id\": 13,\n            \"event_type\": \"interviewUpdated\",\n            \"event_details\": \"{\\\"interviewId\\\":\\\"da4384d5-ab35-4bcc-87e4-2d04bfc9b838\\\",\\\"panelId\\\":\\\"da4384d5-ab35-4bcc-87e4-2d04bfc9b838\\\",\\\"opportunityId\\\":\\\"fc29952a-5b7e-4ce0-bca5-23aab339ec41\\\",\\\"updatedAt\\\":\\\"1591113053231\\\"}\",\n            \"previous_event_id\": 7,\n            \"next_event_id\": null,\n            \"created_at\": \"2024-09-04T17:13:32.469Z\",\n            \"updated_at\": \"2024-09-04T17:13:32.469Z\"\n        },\n        {\n            \"id\": 7,\n            \"ext_id\": \"lever__fc29952a-5b7e-4ce0-bca5-23aab339ec41\",\n            \"job_id\": 5,\n            \"user_id\": 13,\n            \"event_type\": \"interviewCreated\",\n            \"event_details\": \"{\\\"interviewId\\\":\\\"da4384d5-ab35-4bcc-87e4-2d04bfc9b838\\\",\\\"panelId\\\":\\\"da4384d5-ab35-4bcc-87e4-2d04bfc9b838\\\",\\\"opportunityId\\\":\\\"fc29952a-5b7e-4ce0-bca5-23aab339ec41\\\",\\\"createdAt\\\":\\\"1591113053231\\\"}\",\n            \"previous_event_id\": 6,\n            \"next_event_id\": null,\n            \"created_at\": \"2024-09-04T17:12:33.102Z\",\n            \"updated_at\": \"2024-09-04T17:12:33.102Z\"\n        },\n        {\n            \"id\": 6,\n            \"ext_id\": \"lever__fc29952a-5b7e-4ce0-bca5-23aab339ec41\",\n            \"job_id\": 5,\n            \"user_id\": 13,\n            \"event_type\": \"candidateDeleted\",\n            \"event_details\": \"{\\\"candidateId\\\":\\\"fc29952a-5b7e-4ce0-bca5-23aab339ec41\\\",\\\"deletedBy\\\":\\\"6a7f1599-009e-41e5-9249-181ee79cf84c\\\",\\\"contactId\\\":\\\"05c248f9-ccb1-435f-bab5-0ec608aec263\\\",\\\"opportunityId\\\":\\\"fc29952a-5b7e-4ce0-bca5-23aab339ec41\\\"}\",\n            \"previous_event_id\": 5,\n            \"next_event_id\": null,\n            \"created_at\": \"2024-09-04T17:12:12.346Z\",\n            \"updated_at\": \"2024-09-04T17:12:12.346Z\"\n        },\n        {\n            \"id\": 5,\n            \"ext_id\": \"lever__fc29952a-5b7e-4ce0-bca5-23aab339ec41\",\n            \"job_id\": 5,\n            \"user_id\": 13,\n            \"event_type\": \"candidateHired\",\n            \"event_details\": \"{\\\"candidateId\\\":\\\"fc29952a-5b7e-4ce0-bca5-23aab339ec41\\\",\\\"contactId\\\":\\\"05c248f9-ccb1-435f-bab5-0ec608aec263\\\",\\\"opportunityId\\\":\\\"fc29952a-5b7e-4ce0-bca5-23aab339ec41\\\"}\",\n            \"previous_event_id\": 4,\n            \"next_event_id\": null,\n            \"created_at\": \"2024-09-04T17:10:06.747Z\",\n            \"updated_at\": \"2024-09-04T17:10:06.747Z\"\n        },\n        {\n            \"id\": 4,\n            \"ext_id\": \"lever__fc29952a-5b7e-4ce0-bca5-23aab339ec41\",\n            \"job_id\": 5,\n            \"user_id\": 13,\n            \"event_type\": \"candidateArchiveChange\",\n            \"event_details\": \"{\\\"candidateId\\\":\\\"fc29952a-5b7e-4ce0-bca5-23aab339ec41\\\",\\\"deletedBy\\\":\\\"6a7f1599-009e-41e5-9249-181ee79cf84c\\\",\\\"contactId\\\":\\\"05c248f9-ccb1-435f-bab5-0ec608aec263\\\",\\\"opportunityId\\\":\\\"fc29952a-5b7e-4ce0-bca5-23aab339ec41\\\"}\",\n            \"previous_event_id\": 3,\n            \"next_event_id\": null,\n            \"created_at\": \"2024-09-04T17:09:34.345Z\",\n            \"updated_at\": \"2024-09-04T17:09:34.345Z\"\n        },\n        {\n            \"id\": 3,\n            \"ext_id\": \"lever__fc29952a-5b7e-4ce0-bca5-23aab339ec41\",\n            \"job_id\": 5,\n            \"user_id\": 13,\n            \"event_type\": \"candidateStageChange\",\n            \"event_details\": \"{\\\"candidateId\\\":\\\"fc29952a-5b7e-4ce0-bca5-23aab339ec41\\\",\\\"fromStageId\\\":\\\"1f25ec05-1a6a-4bfc-9adb-cda0de3c6c38\\\",\\\"toStageId\\\":\\\"185e0c30-ed5d-4b41-b845-0fee5a89b391\\\",\\\"contactId\\\":\\\"05c248f9-ccb1-435f-bab5-0ec608aec263\\\",\\\"opportunityId\\\":\\\"fc29952a-5b7e-4ce0-bca5-23aab339ec41\\\"}\",\n            \"previous_event_id\": 2,\n            \"next_event_id\": null,\n            \"created_at\": \"2024-09-04T17:08:38.374Z\",\n            \"updated_at\": \"2024-09-04T17:08:38.374Z\"\n        },\n        {\n            \"id\": 2,\n            \"ext_id\": \"lever__6ffe4153-60bb-4e30-bfbe-bd9b9775879c__fc29952a-5b7e-4ce0-bca5-23aab339ec41\",\n            \"job_id\": 5,\n            \"user_id\": 13,\n            \"event_type\": \"applicationCreated\",\n            \"event_details\": \"{\\\"applicationId\\\":\\\"6ffe4153-60bb-4e30-bfbe-bd9b9775879c\\\",\\\"candidateId\\\":\\\"fc29952a-5b7e-4ce0-bca5-23aab339ec41\\\",\\\"contactId\\\":\\\"05c248f9-ccb1-435f-bab5-0ec608aec263\\\",\\\"opportunityId\\\":\\\"fc29952a-5b7e-4ce0-bca5-23aab339ec41\\\"}\",\n            \"previous_event_id\": null,\n            \"next_event_id\": null,\n            \"created_at\": \"2024-09-04T17:08:28.734Z\",\n            \"updated_at\": \"2024-09-04T17:08:28.734Z\"\n        }\n    ]\n}"},{"id":"e49cd773-c4b7-4b15-ac30-04f89fa99e09","name":"204 No Content","originalRequest":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/jobs/insert-your-job-id/application/pipeline"},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"7bf664cf-a178-4c45-9a7e-c83fe2046eb5"},{"name":"Submit application","id":"6e2a9d34-a49b-44c6-8b0e-404de4217597","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"application_answers[0][application_option_id]","value":"25","type":"text","disabled":true},{"key":"application_answers[0][answer]","value":"Yes","type":"text","disabled":true},{"key":"application_answers[1][application_option_id]","value":"26","type":"text","disabled":true},{"key":"application_answers[1][answer]","value":"Master's Degree","type":"text","disabled":true},{"key":"application_answers[2][application_option_id]","value":"27","type":"text","disabled":true},{"key":"application_answers[2][answer]","value":"https://github.com/username","type":"text","disabled":true},{"key":"application_answers[3][application_option_id]","value":"28","type":"text","disabled":true},{"key":"application_answers[3][answer]","value":"1231312","type":"text","disabled":true},{"key":"application_answers[4][application_option_id]","value":"29","type":"text","disabled":true},{"key":"application_answers[4][answer]","value":"AI, Scrum","type":"text","disabled":true},{"key":"application_answers[5][application_option_id]","value":"32","type":"text","disabled":true},{"key":"application_answers[5][answer]","value":"Yes, it's a free world","type":"text","disabled":true},{"key":"application_answers[6][application_option_id]","value":"33","type":"text","disabled":true},{"key":"application_answers[6][answer]","value":"Yes","type":"text","disabled":true},{"key":"application_answers[7][application_option_id]","value":"34","type":"text","disabled":true},{"key":"application_answers[7][file]","type":"file","src":"7xL1CYndq/test_file.txt","disabled":true}]},"url":"https://api.embloy.com/api/v0/jobs/insert-job-id/applications?save_as_draft=1","description":"<p>The provided access token is first verified, and then a new application in the name of the associated user is submitted to the specified job. For Embloy v0 the user account (in detail the user profile) is considered to be the figurehead with which one applies for a job.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","jobs","insert-job-id","applications"],"host":["https://api.embloy.com"],"query":[{"description":{"content":"<p>Optional flag to save the application as a draft which can be edited and submitted at a later point in time. Note that to update the draft, you can send only the updated fields, but to submit the draft, you need to send all fields.</p>\n","type":"text/plain"},"key":"save_as_draft","value":"1"}],"variable":[]}},"response":[{"id":"9ec5ee1e-2ae1-46e4-b00d-f543ec92a33b","name":"201 Created","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"application_text","value":"Hello World","type":"text"},{"key":"application_answers[0][application_option_id]","value":"1","type":"text"},{"key":"application_answers[0][answer]","value":"Yes","type":"text"},{"key":"application_answers[1][application_option_id]","value":"2","type":"text"},{"key":"application_answers[1][answer]","value":"Master's Degree","type":"text"},{"key":"application_answers[2][application_option_id]","value":"3","type":"text"},{"key":"application_answers[2][answer]","value":"https://github.com/username","type":"text"},{"key":"application_answers[3][application_option_id]","value":"4","type":"text"},{"key":"application_answers[3][answer]","value":"I am very excited about this opportunity.","type":"text"},{"key":"application_answers[4][application_option_id]","value":"5","type":"text"},{"key":"application_answers[4][answer]","value":"AI, Scrum","type":"text"},{"key":"application_attachment","type":"file","src":"b1lpMViGB/awafww.txt"}]},"url":"https://api.embloy.com/api/v0/jobs/insert-job-id/applications"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Application submitted!\"\n}"},{"id":"4fad0b45-8554-4447-a750-02ce75c4adb6","name":"400 Bad Request","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"application_text","value":"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA","type":"text"},{"key":"application_answers[0][application_option_id]","value":"1","type":"text"},{"key":"application_answers[0][answer]","value":"Yes","type":"text"},{"key":"application_answers[1][application_option_id]","value":"2","type":"text"},{"key":"application_answers[1][answer]","value":"Master's Degree","type":"text"},{"key":"application_answers[2][application_option_id]","value":"3","type":"text"},{"key":"application_answers[2][answer]","value":"https://github.com/username","type":"text"},{"key":"application_answers[3][application_option_id]","value":"4","type":"text"},{"key":"application_answers[3][answer]","value":"I am very excited about this opportunity.","type":"text"},{"key":"application_answers[4][application_option_id]","value":"5","type":"text"},{"key":"application_answers[4][answer]","value":"AI, Scrum","type":"text"},{"key":"application_attachment","type":"file","src":"b1lpMViGB/awafww.txt"}]},"url":"https://api.embloy.com/api/v0/jobs/insert-job-id/applications"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"errors\": {\n        \"application_text\": [\n            {\n                \"error\": \"ERR_LENGTH\",\n                \"description\": \"Attribute length is invalid\",\n                \"count\": 0\n            },\n            {\n                \"error\": \"blank\"\n            }\n        ]\n    }\n}"},{"id":"e9643276-d1ce-4129-a01d-e39ef905fe38","name":"400 Bad Request","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"application_answers[0][application_option_id]","value":"25","type":"text"},{"key":"application_answers[0][answer]","value":"Yes","type":"text"},{"key":"application_answers[1][application_option_id]","value":"26","type":"text"},{"key":"application_answers[1][answer]","value":"Master's Degree","type":"text"},{"key":"application_answers[2][application_option_id]","value":"27","type":"text"},{"key":"application_answers[2][answer]","value":"https://github.com/username","type":"text"},{"key":"application_answers[3][application_option_id]","value":"28","type":"text"},{"key":"application_answers[3][answer]","value":"1231312","type":"text"},{"key":"application_answers[4][application_option_id]","value":"29","type":"text"},{"key":"application_answers[4][answer]","value":"AI, Scrum","type":"text"},{"key":"application_answers[5][application_option_id]","value":"32","type":"text"},{"key":"application_answers[5][answer]","value":"Yes, it's a free world","type":"text"},{"key":"application_answers[6][application_option_id]","value":"33","type":"text"},{"key":"application_answers[6][answer]","value":"Yes","type":"text"},{"key":"application_answers[7][application_option_id]","value":"34","type":"text"},{"key":"application_answers[7][file]","type":"file","src":"a_Z8kHeuW/og.jpg"}]},"url":{"raw":"https://api.embloy.com/api/v0/jobs/insert-job-id/applications?save_as_draft=0","host":["https://api.embloy.com"],"path":["api","v0","jobs","insert-job-id","applications"],"query":[{"key":"save_as_draft","value":"0"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Cache-Control","value":"no-cache"},{"key":"X-Request-Id","value":"6b07c732-9495-47e6-92b2-05da563fda00"},{"key":"X-Runtime","value":"4.789568"},{"key":"Server-Timing","value":"cache_read.active_support;dur=0.44, cache_write.active_support;dur=0.17, start_processing.action_controller;dur=0.57, sql.active_record;dur=3444.49, instantiation.active_record;dur=103.47, process_action.action_controller;dur=3612.35"},{"key":"vary","value":"Origin"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"errors\": {\n        \"application\": [\n            {\n                \"error\": \"Invalid application answer for option 34: Attachment is too large (max is 2 MB)\"\n            }\n        ]\n    }\n}"},{"id":"77737e5c-0343-4c08-9c6e-181ff2bedc8f","name":"422 Unprocessable Content","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"application_text","value":"Hello World","type":"text"},{"key":"application_answers[0][application_option_id]","value":"1","type":"text"},{"key":"application_answers[0][answer]","value":"Yes","type":"text"},{"key":"application_answers[1][application_option_id]","value":"2","type":"text"},{"key":"application_answers[1][answer]","value":"Master's Degree","type":"text"},{"key":"application_answers[2][application_option_id]","value":"3","type":"text"},{"key":"application_answers[2][answer]","value":"https://github.com/username","type":"text"},{"key":"application_answers[3][application_option_id]","value":"4","type":"text"},{"key":"application_answers[3][answer]","value":"I am very excited about this opportunity.","type":"text"},{"key":"application_answers[4][application_option_id]","value":"5","type":"text"},{"key":"application_answers[4][answer]","value":"AI, Scrum","type":"text"},{"key":"application_attachment","type":"file","src":"b1lpMViGB/awafww.txt"}]},"url":"https://api.embloy.com/api/v0/jobs/insert-job-id/applications"},"status":"Unprocessable Content","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"application\": [\n        {\n            \"error\": \"ERR_UNNECESSARY\",\n            \"description\": \"Attribute is already submitted\"\n        }\n    ]\n}"},{"id":"6434eae1-ea8a-4a1e-8842-7dfbb2f44cb3","name":"422 Unprocessable Content","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"application_text","value":"Hello World","type":"text"},{"key":"application_answers[0][application_option_id]","value":"1","type":"text"},{"key":"application_answers[0][answer]","value":"Yes","type":"text"},{"key":"application_answers[1][application_option_id]","value":"2","type":"text"},{"key":"application_answers[1][answer]","value":"Master's Degree","type":"text"},{"key":"application_answers[2][application_option_id]","value":"3","type":"text"},{"key":"application_answers[2][answer]","value":"https://github.com/username","type":"text"},{"key":"application_answers[3][application_option_id]","value":"4","type":"text"},{"key":"application_answers[3][answer]","value":"I am very excited about this opportunity.","type":"text"},{"key":"application_answers[4][application_option_id]","value":"5","type":"text"},{"key":"application_answers[4][answer]","value":"AI, Scrum","type":"text"},{"key":"application_attachment","type":"file","src":"b1lpMViGB/awafww.txt","disabled":true}]},"url":"https://api.embloy.com/api/v0/jobs/insert-job-id/applications"},"status":"Unprocessable Content","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"errors\": {\n        \"application_attachment\": [\n            \"CV is required\"\n        ]\n    }\n}"}],"_postman_id":"6e2a9d34-a49b-44c6-8b0e-404de4217597"},{"name":"Accept application","id":"2f949f66-58b0-48c0-88c6-dfae0de0e7f5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"url":"https://api.embloy.com/api/v0/jobs/insert-your-job-id/applications/insert-application-id/accept?response=Great Job!","description":"<p>Accepts an application for one of your jobs (optionally with a response which will be shown to the applicant).</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","jobs","insert-your-job-id","applications","insert-application-id","accept"],"host":["https://api.embloy.com"],"query":[{"description":{"content":"<p>Short (max 500 character) long test for feedback to the applicant.</p>\n","type":"text/plain"},"key":"response","value":"Great Job!"}],"variable":[]}},"response":[{"id":"27ce6a24-005f-4ae1-82d8-2286fe49b374","name":"200 OK","originalRequest":{"method":"PATCH","header":[],"url":{"raw":"https://api.embloy.com/api/v0/jobs/insert-your-job-id/applications/insert-application-id/accept?response=Great Job!","host":["https://api.embloy.com"],"path":["api","v0","jobs","insert-your-job-id","applications","insert-application-id","accept"],"query":[{"key":"response","value":"Great Job!"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Application successfully accepted.\"\n}"},{"id":"031473b4-9619-44b3-983e-613544c5b3d7","name":"400 Bad Request","originalRequest":{"method":"PATCH","header":[],"url":{"raw":"https://api.embloy.com/api/v0/jobs/insert-your-job-id/applications/insert-application-id/accept?response=Great Job!","host":["https://api.embloy.com"],"path":["api","v0","jobs","insert-your-job-id","applications","insert-application-id","accept"],"query":[{"key":"response","value":"Great Job!"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Already accepted.\"\n}"}],"_postman_id":"2f949f66-58b0-48c0-88c6-dfae0de0e7f5"},{"name":"Reject application","id":"801f81e1-f467-4c57-ac48-aafec707a90a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"url":"https://api.embloy.com/api/v0/jobs/insert-your-job-id/applications/insert-application-id/reject?response=Not good enough!","description":"<p>Rejects an application for one of your jobs (optionally with a response which will be shown to the applicant).</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","jobs","insert-your-job-id","applications","insert-application-id","reject"],"host":["https://api.embloy.com"],"query":[{"description":{"content":"<p>Short (max 500 character) long test for feedback to the applicant.</p>\n","type":"text/plain"},"key":"response","value":"Not good enough!"}],"variable":[]}},"response":[{"id":"436cf65a-4a0d-4307-828d-a6324978a13f","name":"200 OK","originalRequest":{"method":"PATCH","header":[],"url":{"raw":"https://api.embloy.com/api/v0/jobs/insert-your-job-id/applications/insert-application-id/reject?response=Not good enough!","host":["https://api.embloy.com"],"path":["api","v0","jobs","insert-your-job-id","applications","insert-application-id","reject"],"query":[{"key":"response","value":"Not good enough!"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Application successfully rejected.\"\n}"},{"id":"b0f3fc31-b013-42d9-a1ee-4a304b82d39d","name":"400 Bad Request","originalRequest":{"method":"PATCH","header":[],"url":{"raw":"https://api.embloy.com/api/v0/jobs/insert-your-job-id/applications/insert-application-id/reject?response=Not good enough!","host":["https://api.embloy.com"],"path":["api","v0","jobs","insert-your-job-id","applications","insert-application-id","reject"],"query":[{"key":"response","value":"Not good enough!"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Already rejected.\"\n}"}],"_postman_id":"801f81e1-f467-4c57-ac48-aafec707a90a"}],"id":"d7811e3b-5b22-43d9-bfde-2b6e0971c4bd","description":"<p>All requests for creating and reacting to applications using core-server v1.</p>\n","_postman_id":"d7811e3b-5b22-43d9-bfde-2b6e0971c4bd","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}}},{"name":"Notifications","item":[{"name":"Get latest notifications","id":"2d124933-70b7-4c6f-a765-dcc3d303c9e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/user/notifications","description":"<p>The provided access token is first verified, and then the latest 9 read and unread notifications are returned.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","user","notifications"],"host":["https://api.embloy.com"],"query":[],"variable":[]}},"response":[{"id":"a4479d80-19e2-46a2-abec-cf4e5af98f8f","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/user/notifications"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"notifications\": [\n        {\n            \"id\": 27,\n            \"recipient_type\": \"User\",\n            \"recipient_id\": 1,\n            \"type\": \"ApplicationNotification\",\n            \"params\": {\n                \"job_title\": \"job.title || job.job_slug\",\n                \"application\": {\n                    \"job_id\": 1,\n                    \"user_id\": 1\n                },\n                \"job_notifications\": 0\n            },\n            \"read_at\": null,\n            \"created_at\": \"2024-03-05T03:33:51.676Z\",\n            \"updated_at\": \"2024-03-05T03:33:51.676Z\"\n        },\n        {\n            \"id\": 26,\n            \"recipient_type\": \"User\",\n            \"recipient_id\": 1,\n            \"type\": \"ApplicationStatusNotification\",\n            \"params\": {\n                \"status\": -1,\n                \"response\": \"GG\",\n                \"job_title\": \"d140d411-9426-4ea1-89db-b0cffd690c66\",\n                \"user_email\": \"winston.smith@embloy.com\",\n                \"application\": {\n                    \"job\": 4,\n                    \"user_id\": 4\n                },\n                \"user_first_name\": \"Winston\"\n            },\n            \"read_at\": null,\n            \"created_at\": \"2024-03-05T03:33:41.564Z\",\n            \"updated_at\": \"2024-03-05T03:33:41.564Z\"\n        },\n        {\n            \"id\": 25,\n            \"recipient_type\": \"User\",\n            \"recipient_id\": 1,\n            \"type\": \"ApplicationStatusNotification\",\n            \"params\": {\n                \"status\": -1,\n                \"response\": \"GG\",\n                \"job_title\": \"d140d411-9426-4ea1-89db-b0cffd690c66\",\n                \"user_email\": \"winston.smith@embloy.com\",\n                \"application\": {\n                    \"job\": 2,\n                    \"user_id\": 1\n                },\n                \"user_first_name\": \"Winston\"\n            },\n            \"read_at\": null,\n            \"created_at\": \"2024-03-05T03:33:33.240Z\",\n            \"updated_at\": \"2024-03-05T03:33:33.240Z\"\n        },\n        {\n            \"id\": 24,\n            \"recipient_type\": \"User\",\n            \"recipient_id\": 1,\n            \"type\": \"ApplicationStatusNotification\",\n            \"params\": {\n                \"status\": -1,\n                \"response\": \"GG\",\n                \"job_title\": \"d140d411-9426-4ea1-89db-b0cffd690c66\",\n                \"user_email\": \"winston.smith@embloy.com\",\n                \"application\": {\n                    \"job\": 1,\n                    \"user_id\": 1\n                },\n                \"user_first_name\": \"Winston\"\n            },\n            \"read_at\": null,\n            \"created_at\": \"2024-03-05T03:33:24.343Z\",\n            \"updated_at\": \"2024-03-05T03:33:24.343Z\"\n        }\n    ]\n}"},{"id":"1fc5f6a3-4510-4d7f-96b0-c2643429f3e0","name":"204 No Content","originalRequest":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/user/notifications"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"notifications\": [\n        {\n            \"id\": 27,\n            \"recipient_type\": \"User\",\n            \"recipient_id\": 1,\n            \"type\": \"ApplicationNotification\",\n            \"params\": {\n                \"job_title\": \"job.title || job.job_slug\",\n                \"application\": {\n                    \"job_id\": 1,\n                    \"user_id\": 1\n                },\n                \"job_notifications\": 0\n            },\n            \"read_at\": null,\n            \"created_at\": \"2024-03-05T03:33:51.676Z\",\n            \"updated_at\": \"2024-03-05T03:33:51.676Z\"\n        },\n        {\n            \"id\": 26,\n            \"recipient_type\": \"User\",\n            \"recipient_id\": 1,\n            \"type\": \"ApplicationStatusNotification\",\n            \"params\": {\n                \"status\": -1,\n                \"response\": \"GG\",\n                \"job_title\": \"d140d411-9426-4ea1-89db-b0cffd690c66\",\n                \"user_email\": \"winston.smith@embloy.com\",\n                \"application\": {\n                    \"job\": 4,\n                    \"user_id\": 4\n                },\n                \"user_first_name\": \"Winston\"\n            },\n            \"read_at\": null,\n            \"created_at\": \"2024-03-05T03:33:41.564Z\",\n            \"updated_at\": \"2024-03-05T03:33:41.564Z\"\n        },\n        {\n            \"id\": 25,\n            \"recipient_type\": \"User\",\n            \"recipient_id\": 1,\n            \"type\": \"ApplicationStatusNotification\",\n            \"params\": {\n                \"status\": -1,\n                \"response\": \"GG\",\n                \"job_title\": \"d140d411-9426-4ea1-89db-b0cffd690c66\",\n                \"user_email\": \"winston.smith@embloy.com\",\n                \"application\": {\n                    \"job\": 2,\n                    \"user_id\": 1\n                },\n                \"user_first_name\": \"Winston\"\n            },\n            \"read_at\": null,\n            \"created_at\": \"2024-03-05T03:33:33.240Z\",\n            \"updated_at\": \"2024-03-05T03:33:33.240Z\"\n        },\n        {\n            \"id\": 24,\n            \"recipient_type\": \"User\",\n            \"recipient_id\": 1,\n            \"type\": \"ApplicationStatusNotification\",\n            \"params\": {\n                \"status\": -1,\n                \"response\": \"GG\",\n                \"job_title\": \"d140d411-9426-4ea1-89db-b0cffd690c66\",\n                \"user_email\": \"winston.smith@embloy.com\",\n                \"application\": {\n                    \"job\": 1,\n                    \"user_id\": 1\n                },\n                \"user_first_name\": \"Winston\"\n            },\n            \"read_at\": null,\n            \"created_at\": \"2024-03-05T03:33:24.343Z\",\n            \"updated_at\": \"2024-03-05T03:33:24.343Z\"\n        }\n    ]\n}"}],"_postman_id":"2d124933-70b7-4c6f-a765-dcc3d303c9e5"},{"name":"Get unread application notifications","id":"bea805f3-51a0-4cb6-a957-88f880612edb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/user/notifications/unread","description":"<p>The provided access token is first verified, and then all unread application notifications are returned.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","user","notifications","unread"],"host":["https://api.embloy.com"],"query":[],"variable":[]}},"response":[{"id":"b3a8768a-4cec-49e2-b388-80760114ce60","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/user/notifications/unread"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_ids\": [\n        1,\n        2\n    ]\n}"},{"id":"7d036824-b522-4347-85a3-f965a1a10cd7","name":"204 No Content","originalRequest":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/user/notifications/unread"},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_ids\": [\n        1,\n        2\n    ]\n}"}],"_postman_id":"bea805f3-51a0-4cb6-a957-88f880612edb"},{"name":"Mark as read","id":"fa424c05-6701-44e9-9f6a-81f9c2aea274","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"url":"https://api.embloy.com/api/v0/user/notifications/insert-notification-id?read=1","description":"<p>Mark a given notification as read/unread.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","user","notifications","insert-notification-id"],"host":["https://api.embloy.com"],"query":[{"key":"read","value":"1"}],"variable":[]}},"response":[{"id":"289479fa-ccca-4cad-8bc1-5c38a4b75494","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.embloy.com/api/v0/user/notifications/insert-notification-id?read=1","host":["https://api.embloy.com"],"path":["api","v0","user","notifications","insert-notification-id"],"query":[{"key":"read","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true\n}"},{"id":"0319a604-75b1-4ebc-ba01-5efc65f2f92b","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.embloy.com/api/v0/user/notifications/insert-notification-id?read=1","host":["https://api.embloy.com"],"path":["api","v0","user","notifications","insert-notification-id"],"query":[{"key":"read","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true\n}"}],"_postman_id":"fa424c05-6701-44e9-9f6a-81f9c2aea274"}],"id":"1c1647e2-5421-46dc-9354-de8d2dd1deea","description":"<p>All requests for creating and reacting to applications using core-server v1.</p>\n","_postman_id":"1c1647e2-5421-46dc-9354-de8d2dd1deea","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}}},{"name":"Quicklink","item":[{"name":"Generate Client-Token","id":"86b2cf1c-b02e-4d83-b65f-9c5e03cc89c4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://api.embloy.com/api/v0/auth/token/client?exp=Tue Dec 15 2026 20:44:12 GMT+0000 (Coordinated Universal Time)","description":"<p>If the user has the necessary role, a <strong><code>client_token</code></strong> is generated based on<br />the decoded subject (sub) of the token. The generated <strong><code>client_token</code></strong> is<br />then returned in the response (valid for 3months).</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","auth","token","client"],"host":["https://api.embloy.com"],"query":[{"description":{"content":"<p>Custom expiration (will be set to the end of client's subscription, if it exceeds the subscription's expiration date)</p>\n","type":"text/plain"},"key":"exp","value":"Wed Mar 24 2027 14:46:01 GMT+0000 (Coordinated Universal Time)"}],"variable":[]}},"response":[{"id":"5ace596b-8afe-40d7-9307-3d5dccdb6bb9","name":"200 OK","originalRequest":{"method":"POST","header":[],"url":"https://api.embloy.com/api/v0/auth/token/client"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"client_token\": \"...\"\n}"},{"id":"c5a95498-c707-4753-8f36-986e9a0e9120","name":"401 Unauthorized","originalRequest":{"method":"POST","header":[],"url":"https://api.embloy.com/api/v0/auth/token/client"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"token\": [\n        {\n            \"error\": \"ERR_INVALID\",\n            \"description\": \"Attribute is invalid or expired\"\n        }\n    ]\n}"}],"_postman_id":"86b2cf1c-b02e-4d83-b65f-9c5e03cc89c4"},{"name":"Generate Request-Token","id":"7629b41f-882f-4897-bacd-5b900378eac6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"client_token","value":"insert-client-token","description":"<p>A valid client_token is needed to authenticate and authorize the client. For further information see: <a href=\"https://documenter.getpostman.com/view/24977803/2s9YRB2rkE#86b2cf1c-b02e-4d83-b65f-9c5e03cc89c4\">client_token endpoint</a></p>\n"}],"body":{"mode":"raw","raw":"{\n    \"mode\": \"job\",\n    \"job_slug\": \"748171e1-c25a-4714-b2a3-cda481ff9423\",\n    \"success_url\": \"https://example.com/success\",\n    \"cancel_url\": \"https://example.com/cancel\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.embloy.com/api/v0/sdk/request/auth/token","description":"<p>This endpoint is responsible for creating a new application session containing a <strong><code>request_token</code></strong> which can be further used to apply for a specific job and client with a validity of 30 minutes. It uses the decoded <strong><code>client_token</code></strong>'s subject (sub) and a specific identifier (\"df074300-2627-4511-985e-e62c69dc0d7g\") to generate the token. The generated request token is then returned in the response which can be used as authentication for further requests to the core-API.</p>\n<p><strong>If you're an ATS provider, make sure to set</strong> <strong><code>mode</code></strong> <strong>as the name of your ATS system (e.g., \"Lever\", \"Ashby\", \"Greenhouse\", etc.) and</strong> <strong><code>job_slug</code></strong> <strong>as the current job's posting ID.</strong></p>\n","urlObject":{"path":["api","v0","sdk","request","auth","token"],"host":["https://api.embloy.com"],"query":[],"variable":[]}},"response":[{"id":"a6359da6-5f37-473b-adad-f36a03c8f24b","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"client_token","value":"","description":"A valid client_token is needed to authenticate and authorize the client. For further information see: [client_token endpoint](https://documenter.getpostman.com/view/24977803/2s9YRB2rkE#86b2cf1c-b02e-4d83-b65f-9c5e03cc89c4)","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"mode","value":"job","type":"text","description":"Describes what type of Quicklink service the portal is needed for. Allowed values: 'job'"},{"key":"job_slug","value":"df074300-2627-4511-985e-e62c69dc0d7e","type":"text","description":"User gets redirected to this URL if application process succeeds "},{"key":"success_url","value":"https://jobs.br.de/cui(bD1kZSZjPTUxMg==)/default.htm?configurationId=ZBR_SEARCH#!ZBR_SEARCH/PM_POSTING&cGd1aWQ9NDZENzJCNUZCOTEwMUVERUFEREExNDlGNUJCMTAwMjQ%3D","type":"text","description":"User gets redirected to this URL if application process fails"},{"key":"cancel_url","value":"/failure","type":"text","description":"Combined with the client's ID, this is used as an unique identifier for the client's job. ","disabled":true},{"key":"title","value":"TestTitle","type":"text","disabled":true},{"key":"job_type","value":"Retail","type":"text","disabled":true},{"key":"start_slot","value":"2024-06-12T21:51:32.077Z","type":"text","disabled":true},{"key":"position","value":"CEO","type":"text","disabled":true},{"key":"key_skills","value":"Entrepreneurship","type":"text","disabled":true},{"key":"duration","value":"9","type":"text","disabled":true},{"key":"salary","value":"9","type":"text","disabled":true},{"key":"description","value":"<div>This is the description</div>","type":"text","disabled":true},{"key":"status","value":"public","type":"text","disabled":true},{"key":"longitude","value":"11.613942994844358","type":"text","disabled":true},{"key":"latitude","value":"48.1951076","type":"text","disabled":true},{"key":"job_notifications","value":"1","type":"text","disabled":true},{"key":"currency","value":"EUR","type":"text","disabled":true},{"key":"cv_required","value":"true","type":"text","disabled":true},{"key":"allowed_cv_formats[]","value":".pdf","type":"text","disabled":true},{"key":"allowed_cv_formats[]","value":".docx","type":"text","disabled":true},{"key":"allowed_cv_formats[]","value":".txt","type":"text","disabled":true},{"key":"allowed_cv_formats[]","value":".xml","type":"text","disabled":true}]},"url":"https://api.embloy.com/api/v0/sdk/request/auth/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"\"...\""},{"id":"fbaa3d6a-bcae-4513-b499-c57f69c1e8dd","name":"400 Bad Request","originalRequest":{"method":"POST","header":[{"key":"client_token","value":"insert-client-token","description":"A valid client_token is needed to authenticate and authorize the client. For further information see: [client_token endpoint](https://documenter.getpostman.com/view/24977803/2s9YRB2rkE#86b2cf1c-b02e-4d83-b65f-9c5e03cc89c4)","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"mode","value":"job","description":"Describes what type of Quicklink service the portal is needed for. Allowed values: 'job'","type":"text"},{"key":"success_url","value":"/success","description":"User gets redirected to this URL if application process succeeds ","type":"text"},{"key":"cancel_url","value":"/failure","description":"User gets redirected to this URL if application process fails","type":"text"},{"key":"job_slug","value":"job#1","description":"Combined with the client's ID, this is used as an unique identifier for the client's job. ","type":"text"}]},"url":"https://api.embloy.com/api/v0/sdk/request/auth/token"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"mode\": [\n        {\n            \"error\": \"ERR_INVALID\",\n            \"description\": \"Attribute is malformed or unknown\"\n        }\n    ]\n}"},{"id":"bc7cb66c-e7fd-45e7-9fb4-2215391b8d00","name":"400 Bad Request","originalRequest":{"method":"POST","header":[{"key":"client_token","value":"insert-client-token","description":"A valid client_token is needed to authenticate and authorize the client. For further information see: [client_token endpoint](https://documenter.getpostman.com/view/24977803/2s9YRB2rkE#86b2cf1c-b02e-4d83-b65f-9c5e03cc89c4)","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"mode","value":"job","description":"Describes what type of Quicklink service the portal is needed for. Allowed values: 'job'","type":"text"},{"key":"success_url","value":"/success","description":"User gets redirected to this URL if application process succeeds ","type":"text"},{"key":"cancel_url","value":"/failure","description":"User gets redirected to this URL if application process fails","type":"text"},{"key":"job_slug","value":"job#3","description":"Combined with the client's ID, this is used as an unique identifier for the client's job. ","type":"text"},{"key":"job_type","value":"retail","type":"text"}]},"url":"https://api.embloy.com/api/v0/sdk/request/auth/token"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_slug\": [\n        {\n            \"error\": \"ERR_INVALID\",\n            \"description\": \"Attribute is malformed or unknown\"\n        }\n    ]\n}"},{"id":"50e89a30-e63e-4d04-b394-2f47a7053a56","name":"401 Unauthorized","originalRequest":{"method":"POST","header":[{"key":"client_token","value":"insert-client-token","description":"A valid client_token is needed to authenticate and authorize the client. For further information see: [client_token endpoint](https://documenter.getpostman.com/view/24977803/2s9YRB2rkE#86b2cf1c-b02e-4d83-b65f-9c5e03cc89c4)","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"mode","value":"job","description":"Describes what type of Quicklink service the portal is needed for. Allowed values: 'job'","type":"text"},{"key":"success_url","value":"/success","description":"User gets redirected to this URL if application process succeeds ","type":"text"},{"key":"cancel_url","value":"/failure","description":"User gets redirected to this URL if application process fails","type":"text"},{"key":"job_slug","value":"job#1","description":"Combined with the client's ID, this is used as an unique identifier for the client's job. ","type":"text"}]},"url":"https://api.embloy.com/api/v0/sdk/request/auth/token"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"token\": [\n        {\n            \"error\": \"ERR_INVALID\",\n            \"description\": \"Attribute is invalid or expired\"\n        }\n    ]\n}"}],"_postman_id":"7629b41f-882f-4897-bacd-5b900378eac6"},{"name":"Generate Request-Token Proxy","id":"df6d2517-1571-4752-a27d-3f1830b4ac7e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"client_token","value":"insert-client-token","description":"<p>A valid client_token is needed to authenticate and authorize the client. For further information see: <a href=\"https://documenter.getpostman.com/view/24977803/2s9YRB2rkE#86b2cf1c-b02e-4d83-b65f-9c5e03cc89c4\">client_token endpoint</a></p>\n"}],"body":{"mode":"raw","raw":"{\n    \"mode\": \"lever\",\n    \"success_url\": \"your-success-url\",\n    \"cancel_url\": \"your-cancel-url\",\n    \"job_slug\": \"5d658a8e-5724-4941-b938-f9ead14507b2\",\n    \"admin_token\": \"123456\",\n    \"origin\": \"https://jobs.sandbox.lever.co/de/5d658a8e-5724-4941-b938-f9ead14507b2\"\n  ,  \"user_id\": \"13\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.embloy.com/api/v0/sdk/request/auth/proxy","description":"<p>This endpoint can be ignored and is for internal use only.</p>\n","urlObject":{"path":["api","v0","sdk","request","auth","proxy"],"host":["https://api.embloy.com"],"query":[],"variable":[]}},"response":[{"id":"a9e75663-bc4b-464b-90c6-c862aacc5367","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"client_token","value":"","description":"A valid client_token is needed to authenticate and authorize the client. For further information see: [client_token endpoint](https://documenter.getpostman.com/view/24977803/2s9YRB2rkE#86b2cf1c-b02e-4d83-b65f-9c5e03cc89c4)"}],"body":{"mode":"formdata","formdata":[{"key":"mode","value":"job","type":"text","description":"Describes what type of Quicklink service the portal is needed for. Allowed values: 'job'"},{"key":"job_slug","value":"df074300-2627-4511-985e-e62c69dc0d7e","type":"text","description":"User gets redirected to this URL if application process succeeds "},{"key":"success_url","value":"https://jobs.br.de/cui(bD1kZSZjPTUxMg==)/default.htm?configurationId=ZBR_SEARCH#!ZBR_SEARCH/PM_POSTING&cGd1aWQ9NDZENzJCNUZCOTEwMUVERUFEREExNDlGNUJCMTAwMjQ%3D","type":"text","description":"User gets redirected to this URL if application process fails"},{"key":"cancel_url","value":"/failure","type":"text","description":"Combined with the client's ID, this is used as an unique identifier for the client's job. ","disabled":true},{"key":"title","value":"TestTitle","type":"text","disabled":true},{"key":"job_type","value":"Retail","type":"text","disabled":true},{"key":"start_slot","value":"2024-06-12T21:51:32.077Z","type":"text","disabled":true},{"key":"position","value":"CEO","type":"text","disabled":true},{"key":"key_skills","value":"Entrepreneurship","type":"text","disabled":true},{"key":"duration","value":"9","type":"text","disabled":true},{"key":"salary","value":"9","type":"text","disabled":true},{"key":"description","value":"<div>This is the description</div>","type":"text","disabled":true},{"key":"status","value":"public","type":"text","disabled":true},{"key":"longitude","value":"11.613942994844358","type":"text","disabled":true},{"key":"latitude","value":"48.1951076","type":"text","disabled":true},{"key":"job_notifications","value":"1","type":"text","disabled":true},{"key":"currency","value":"EUR","type":"text","disabled":true},{"key":"cv_required","value":"true","type":"text","disabled":true},{"key":"allowed_cv_formats[]","value":".pdf","type":"text","disabled":true},{"key":"allowed_cv_formats[]","value":".docx","type":"text","disabled":true},{"key":"allowed_cv_formats[]","value":".txt","type":"text","disabled":true},{"key":"allowed_cv_formats[]","value":".xml","type":"text","disabled":true}]},"url":"https://api.embloy.com/api/v0/sdk/request/auth/proxy"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"\"...\""},{"id":"1e8e12f7-88aa-44a3-a36e-7e11f8ef58d6","name":"400 Bad Request","originalRequest":{"method":"POST","header":[{"key":"client_token","value":"insert-client-token","description":"A valid client_token is needed to authenticate and authorize the client. For further information see: [client_token endpoint](https://documenter.getpostman.com/view/24977803/2s9YRB2rkE#86b2cf1c-b02e-4d83-b65f-9c5e03cc89c4)"}],"body":{"mode":"formdata","formdata":[{"key":"mode","value":"job","description":"Describes what type of Quicklink service the portal is needed for. Allowed values: 'job'","type":"text"},{"key":"success_url","value":"/success","description":"User gets redirected to this URL if application process succeeds ","type":"text"},{"key":"cancel_url","value":"/failure","description":"User gets redirected to this URL if application process fails","type":"text"},{"key":"job_slug","value":"job#1","description":"Combined with the client's ID, this is used as an unique identifier for the client's job. ","type":"text"}]},"url":"https://api.embloy.com/api/v0/sdk/request/auth/proxy"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"mode\": [\n        {\n            \"error\": \"ERR_INVALID\",\n            \"description\": \"Attribute is malformed or unknown\"\n        }\n    ]\n}"},{"id":"cde4e1f5-90d3-4be1-944b-049e007b4284","name":"400 Bad Request","originalRequest":{"method":"POST","header":[{"key":"client_token","value":"insert-client-token","description":"A valid client_token is needed to authenticate and authorize the client. For further information see: [client_token endpoint](https://documenter.getpostman.com/view/24977803/2s9YRB2rkE#86b2cf1c-b02e-4d83-b65f-9c5e03cc89c4)"}],"body":{"mode":"formdata","formdata":[{"key":"mode","value":"job","description":"Describes what type of Quicklink service the portal is needed for. Allowed values: 'job'","type":"text"},{"key":"success_url","value":"/success","description":"User gets redirected to this URL if application process succeeds ","type":"text"},{"key":"cancel_url","value":"/failure","description":"User gets redirected to this URL if application process fails","type":"text"},{"key":"job_slug","value":"job#3","description":"Combined with the client's ID, this is used as an unique identifier for the client's job. ","type":"text"},{"key":"job_type","value":"retail","type":"text"}]},"url":"https://api.embloy.com/api/v0/sdk/request/auth/proxy"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"job_slug\": [\n        {\n            \"error\": \"ERR_INVALID\",\n            \"description\": \"Attribute is malformed or unknown\"\n        }\n    ]\n}"},{"id":"b56f76be-1b43-4898-b5f4-947320001ca3","name":"401 Unauthorized","originalRequest":{"method":"POST","header":[{"key":"client_token","value":"insert-client-token","description":"A valid client_token is needed to authenticate and authorize the client. For further information see: [client_token endpoint](https://documenter.getpostman.com/view/24977803/2s9YRB2rkE#86b2cf1c-b02e-4d83-b65f-9c5e03cc89c4)"}],"body":{"mode":"formdata","formdata":[{"key":"mode","value":"job","description":"Describes what type of Quicklink service the portal is needed for. Allowed values: 'job'","type":"text"},{"key":"success_url","value":"/success","description":"User gets redirected to this URL if application process succeeds ","type":"text"},{"key":"cancel_url","value":"/failure","description":"User gets redirected to this URL if application process fails","type":"text"},{"key":"job_slug","value":"job#1","description":"Combined with the client's ID, this is used as an unique identifier for the client's job. ","type":"text"}]},"url":"https://api.embloy.com/api/v0/sdk/request/auth/proxy"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"token\": [\n        {\n            \"error\": \"ERR_INVALID\",\n            \"description\": \"Attribute is invalid or expired\"\n        }\n    ]\n}"}],"_postman_id":"df6d2517-1571-4752-a27d-3f1830b4ac7e"},{"name":"Make request","id":"0c43ce81-5471-4e7e-a8ff-03fc63fb84e2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"request_token","value":"insert-request-token","description":"<p>Request token generated by referrer's client'token which contains all relevant job information.</p>\n","type":"text"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.embloy.com/api/v0/sdk/request/handle","description":"<p>Handles the <em>Quicklink</em> application process. It finds the user based on the decoded<br />user's <strong><code>access_token</code></strong> token's subject (sub) and the client based on the<br />decoded <strong><code>request_token</code></strong>'s subject (sub). The method then<br />updates or creates the job based on the decoded <strong><code>request_token</code></strong>'s job<br />information and applies for the job.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","sdk","request","handle"],"host":["https://api.embloy.com"],"query":[],"variable":[]}},"response":[{"id":"3c94d7a3-3e55-4b57-bff7-5ac7a4869792","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"request_token","value":"insert-request-token","description":"Request token generated by referrer's client'token which contains all relevant job information.","type":"text"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.embloy.com/api/v0/sdk/request/handle"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"c5f2549fb930198ac0df482e59acd34f\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"ebaf6ee1-e037-400c-830b-ebfac4ff8160"},{"key":"X-Runtime","value":"1.257883"},{"key":"Server-Timing","value":"cache_read.active_support;dur=0.17, cache_write.active_support;dur=0.07, start_processing.action_controller;dur=0.37, sql.active_record;dur=475.37, instantiation.active_record;dur=177.73, service_url.active_storage;dur=1.78, process_action.action_controller;dur=745.32"},{"key":"vary","value":"Origin"},{"key":"Content-Length","value":"5441"}],"cookie":[],"responseTime":null,"body":"{\n    \"session\": {\n        \"mode\": \"job\",\n        \"success_url\": \"your-success-url\",\n        \"cancel_url\": \"your-cancel-url\",\n        \"job_slug\": \"25339723-818c-4a59-81cf-d01f6b2e56ca\",\n        \"origin\": \"https://jobs.sandbox.lever.co/de/5d658a8e-5724-4941-b938-f9ead14507b2\",\n        \"user_id\": \"6\",\n        \"subscription_type\": \"enterprise_3\",\n        \"referrer_url\": null\n    },\n    \"job\": {\n        \"id\": 14,\n        \"title\": \"Organic coffee shop looking for a barista\",\n        \"position\": \"Barista\",\n        \"key_skills\": \"Barista, Coffee, Customer Service\",\n        \"job_type\": \"Food\",\n        \"job_slug\": \"25339723-818c-4a59-81cf-d01f6b2e56ca\",\n        \"job_status\": \"listed\",\n        \"activity_status\": 1,\n        \"referrer_url\": \"https://embloy.com/\",\n        \"salary\": 18,\n        \"currency\": \"USD\",\n        \"euro_salary\": null,\n        \"start_slot\": \"2042-10-02T20:42:42.356Z\",\n        \"duration\": 20,\n        \"code_lang\": null,\n        \"longitude\": 11.613942994844358,\n        \"latitude\": 48.1951076,\n        \"country_code\": null,\n        \"postal_code\": null,\n        \"city\": null,\n        \"address\": null,\n        \"view_count\": 0,\n        \"applications_count\": 0,\n        \"created_at\": \"2024-11-15T16:02:50.597Z\",\n        \"updated_at\": \"2024-11-15T16:02:51.371Z\",\n        \"image_url\": null,\n        \"description\": {\n            \"id\": 17,\n            \"name\": \"description\",\n            \"body\": \"<div>Work in the greatest espresso bar in town and make making others happy your paid job!</div>\",\n            \"record_type\": \"Job\",\n            \"record_id\": 14,\n            \"created_at\": \"2024-11-15T16:02:51.340Z\",\n            \"updated_at\": \"2024-11-15T16:02:51.340Z\"\n        },\n        \"employer\": {\n            \"employer_email\": \"info@embloy.com\",\n            \"employer_name\": \"Embloy Platforms\",\n            \"employer_phone\": \"004912345678910\",\n            \"employer_image_url\": \"http://localhost:3000/rails/active_storage/disk/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaDdDVG9JYTJWNVNTSWhNblZqT0dGb2JqaG5lVE5qYVhobGFXZDBPR3A1YkRRMGEySmhkUVk2QmtWVU9oQmthWE53YjNOcGRHbHZia2tpUjJsdWJHbHVaVHNnWm1sc1pXNWhiV1U5SW14dloyOHRiR2xuYUhRdWNHNW5JanNnWm1sc1pXNWhiV1VxUFZWVVJpMDRKeWRzYjJkdkxXeHBaMmgwTG5CdVp3WTdCbFE2RVdOdmJuUmxiblJmZEhsd1pVa2lEbWx0WVdkbEwzQnVad1k3QmxRNkVYTmxjblpwWTJWZmJtRnRaVG9LYkc5allXdz0iLCJleHAiOiIyMDI0LTExLTE1VDE2OjM3OjA4LjY0OFoiLCJwdXIiOiJibG9iX2tleSJ9fQ==--8d136996772eab87cab0e1cfff6b92d528484101/logo-light.png\"\n        },\n        \"application_options\": [\n            {\n                \"id\": 145,\n                \"job_id\": 14,\n                \"ext_id\": \"embloy__97ce0750-917c-4cd4-9fea-bf05daccb825\",\n                \"question\": \"Did you ever work as a barista?\",\n                \"question_type\": \"yes_no\",\n                \"required\": true,\n                \"options\": [],\n                \"created_at\": \"2024-11-15T16:02:50.646Z\",\n                \"updated_at\": \"2024-11-15T16:02:50.646Z\",\n                \"deleted_at\": null\n            },\n            {\n                \"id\": 146,\n                \"job_id\": 14,\n                \"ext_id\": \"embloy__2a253073-1862-4433-a3e4-9a82143666d6\",\n                \"question\": \"If yes, where and for how long?\",\n                \"question_type\": \"long_text\",\n                \"required\": false,\n                \"options\": [],\n                \"created_at\": \"2024-11-15T16:02:50.693Z\",\n                \"updated_at\": \"2024-11-15T16:02:50.693Z\",\n                \"deleted_at\": null\n            },\n            {\n                \"id\": 147,\n                \"job_id\": 14,\n                \"ext_id\": \"embloy__040f42eb-e451-468e-92e2-ae477f4bdd92\",\n                \"question\": \"What is your favorite coffee?\",\n                \"question_type\": \"short_text\",\n                \"required\": true,\n                \"options\": [],\n                \"created_at\": \"2024-11-15T16:02:50.743Z\",\n                \"updated_at\": \"2024-11-15T16:02:50.743Z\",\n                \"deleted_at\": null\n            },\n            {\n                \"id\": 148,\n                \"job_id\": 14,\n                \"ext_id\": \"embloy__4c78e710-1f28-45f1-8044-73cf35d88698\",\n                \"question\": \"How many cups of coffee do you drink per day?\",\n                \"question_type\": \"number\",\n                \"required\": true,\n                \"options\": [],\n                \"created_at\": \"2024-11-15T16:02:50.792Z\",\n                \"updated_at\": \"2024-11-15T16:02:50.792Z\",\n                \"deleted_at\": null\n            },\n            {\n                \"id\": 149,\n                \"job_id\": 14,\n                \"ext_id\": \"embloy__914bd9fb-4d81-4b6f-bcaa-f83d66ae66a7\",\n                \"question\": \"What is the most important thing when preparing coffee?\",\n                \"question_type\": \"long_text\",\n                \"required\": true,\n                \"options\": [],\n                \"created_at\": \"2024-11-15T16:02:50.845Z\",\n                \"updated_at\": \"2024-11-15T16:02:50.845Z\",\n                \"deleted_at\": null\n            },\n            {\n                \"id\": 150,\n                \"job_id\": 14,\n                \"ext_id\": \"embloy__0a34c3da-e2a1-4a5f-b9c3-33bbb1a7628d\",\n                \"question\": \"When did you last prepare coffee?\",\n                \"question_type\": \"date\",\n                \"required\": false,\n                \"options\": [],\n                \"created_at\": \"2024-11-15T16:02:50.908Z\",\n                \"updated_at\": \"2024-11-15T16:02:50.908Z\",\n                \"deleted_at\": null\n            },\n            {\n                \"id\": 151,\n                \"job_id\": 14,\n                \"ext_id\": \"embloy__34eb7df4-4725-4acb-8c00-bad9f868cb62\",\n                \"question\": \"Provide a link to a video of you preparing coffee.\",\n                \"question_type\": \"link\",\n                \"required\": false,\n                \"options\": [],\n                \"created_at\": \"2024-11-15T16:02:50.967Z\",\n                \"updated_at\": \"2024-11-15T16:02:50.967Z\",\n                \"deleted_at\": null\n            },\n            {\n                \"id\": 152,\n                \"job_id\": 14,\n                \"ext_id\": \"embloy__419cbd8e-e9bb-4119-afa1-4f127e77d0d3\",\n                \"question\": \"Should Capuccino be served after 11am?\",\n                \"question_type\": \"multiple_choice\",\n                \"required\": true,\n                \"options\": [\n                    \"No way, it should be illegal\",\n                    \"Yes, but for italians it should remain a crime\",\n                    \"Yes, it's a free world\",\n                    \"Is it 11am already?\"\n                ],\n                \"created_at\": \"2024-11-15T16:02:51.028Z\",\n                \"updated_at\": \"2024-11-15T16:02:51.028Z\",\n                \"deleted_at\": null\n            },\n            {\n                \"id\": 153,\n                \"job_id\": 14,\n                \"ext_id\": \"embloy__9c5f74aa-4469-44cf-a096-ffa8379d93a2\",\n                \"question\": \"Are you addicted to coffee?\",\n                \"question_type\": \"single_choice\",\n                \"required\": true,\n                \"options\": [\n                    \"Yes\",\n                    \"No\",\n                    \"Maybe...\",\n                    \"I can neither confirm nor deny.\"\n                ],\n                \"created_at\": \"2024-11-15T16:02:51.105Z\",\n                \"updated_at\": \"2024-11-15T16:02:51.105Z\",\n                \"deleted_at\": null\n            },\n            {\n                \"id\": 154,\n                \"job_id\": 14,\n                \"ext_id\": \"embloy__d21e65b7-61cd-43c8-9c9a-6ce2114bdeca\",\n                \"question\": \"Upload your CV\",\n                \"question_type\": \"file\",\n                \"required\": false,\n                \"options\": [\n                    \"pdf\"\n                ],\n                \"created_at\": \"2024-11-15T16:02:51.172Z\",\n                \"updated_at\": \"2024-11-15T16:02:51.172Z\",\n                \"deleted_at\": null\n            },\n            {\n                \"id\": 155,\n                \"job_id\": 14,\n                \"ext_id\": \"embloy__a0d87e42-c198-4e8b-b56c-c76cd69d1bad\",\n                \"question\": \"Upload an image of a perfect Espresso\",\n                \"question_type\": \"file\",\n                \"required\": false,\n                \"options\": [\n                    \"svg\",\n                    \"png\",\n                    \"jpeg\",\n                    \"jpg\"\n                ],\n                \"created_at\": \"2024-11-15T16:02:51.230Z\",\n                \"updated_at\": \"2024-11-15T16:02:51.230Z\",\n                \"deleted_at\": null\n            },\n            {\n                \"id\": 156,\n                \"job_id\": 14,\n                \"ext_id\": \"embloy__66016515-5049-4bcc-9b4b-fddcec95814e\",\n                \"question\": \"Upload a video of you preparing coffee\",\n                \"question_type\": \"file\",\n                \"required\": false,\n                \"options\": [\n                    \"mp4\",\n                    \"avi\",\n                    \"mov\"\n                ],\n                \"created_at\": \"2024-11-15T16:02:51.275Z\",\n                \"updated_at\": \"2024-11-15T16:02:51.275Z\",\n                \"deleted_at\": null\n            }\n        ]\n    }\n}"},{"id":"0105d174-ffaa-4d61-8632-f7a895fa8c91","name":"400 Bad Request","originalRequest":{"method":"POST","header":[{"key":"request_token","value":"insert-request-token","description":"Request token generated by referrer's client'token which contains all relevant job information.","type":"text"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.embloy.com/api/v0/sdk/request/handle"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"job\": [\n        {\n            \"error\": \"Job is either archived or deactivated\"\n        }\n    ]\n}"},{"id":"1d9812e1-d0b8-4017-885d-af558f6da4a3","name":"400 Bad Request","originalRequest":{"method":"POST","header":[{"key":"request_token","value":"insert-request-token","description":"Request token generated by referrer's client'token which contains all relevant job information.","type":"text"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.embloy.com/api/v0/sdk/request/handle"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_key\": [\n        {\n            \"error\": \"ERR_BLANK\",\n            \"description\": \"Attribute can't be blank\"\n        }\n    ]\n}"},{"id":"6c748e0e-e614-41e5-a352-d39fba5585c6","name":"403 Forbidden","originalRequest":{"method":"POST","header":[{"key":"request_token","value":"insert-request-token","description":"Request token generated by referrer's client'token which contains all relevant job information.","type":"text"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.embloy.com/api/v0/sdk/request/handle"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"api_key\": [\n        {\n            \"error\": \"ERR_RAC\",\n            \"description\": \"API key is inactive\"\n        }\n    ]\n}"},{"id":"370632cb-a0d1-4930-bfbc-5bb7a06f8ee3","name":"404 Not Found","originalRequest":{"method":"POST","header":[{"key":"request_token","value":"insert-request-token","description":"Request token generated by referrer's client'token which contains all relevant job information.","type":"text"}],"body":{"mode":"formdata","formdata":[]},"url":"https://api.embloy.com/api/v0/sdk/request/handle"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"client\": [\n        {\n            \"error\": \"ERR_INVALID\",\n            \"description\": \"Attribute can not be retrieved\"\n        }\n    ]\n}"}],"_postman_id":"0c43ce81-5471-4e7e-a8ff-03fc63fb84e2"},{"name":"Capture application","id":"d30ba0ba-7c54-4b48-a24f-da3741125391","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"request_token","value":"insert-request-token","description":"<p>Request token generated by referrer's client'token which contains all relevant job information.</p>\n","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"application_text","value":"Hello World","type":"text"},{"key":"application_answers[0][application_option_id]","value":"1","type":"text"},{"key":"application_answers[0][answer]","value":"Yes","type":"text"},{"key":"application_answers[1][application_option_id]","value":"2","type":"text"},{"key":"application_answers[1][answer]","value":"Master's Degree","type":"text"},{"key":"application_answers[2][application_option_id]","value":"3","type":"text"},{"key":"application_answers[2][answer]","value":"https://github.com/username","type":"text"},{"key":"application_answers[3][application_option_id]","value":"4","type":"text"},{"key":"application_answers[3][answer]","value":"I am very excited about this opportunity.","type":"text"},{"key":"application_answers[4][application_option_id]","value":"5","type":"text"},{"key":"application_answers[4][answer]","value":"AI, Scrum","type":"text"},{"key":"application_attachment","type":"file","src":"V-vJF7A6W/Wirtschaftsinformatik_BA_Neufassung_10082023.pdf"}]},"url":"https://api.embloy.com/api/v0/sdk/apply","description":"<p>Handles the <em>Quicklink</em> application process. It finds the user based on the decoded<br />user's <strong><code>access_token</code></strong> token's subject (sub) and the client based on the<br />decoded <strong><code>request_token</code></strong>'s subject (sub). The method then<br />updates or creates the job based on the decoded <strong><code>request_token</code></strong>'s job<br />information and applies for the job.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","sdk","apply"],"host":["https://api.embloy.com"],"query":[],"variable":[]}},"response":[{"id":"c374bb8b-5cdb-496a-9974-336d1b599f11","name":"201 Created","originalRequest":{"method":"POST","header":[{"key":"request_token","value":"insert-request-token","description":"Request token generated by referrer's client'token which contains all relevant job information.","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"application_text","value":"Hello World!!!","type":"text"}]},"url":"https://api.embloy.com/api/v0/sdk/applications"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Application submitted!\"\n}"},{"id":"e4c17ffa-0c42-4e98-a829-c8964f98a1ef","name":"400 Bad Request","originalRequest":{"method":"POST","header":[{"key":"request_token","value":"insert-request-token","description":"Request token generated by referrer's client'token which contains all relevant job information.","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"application_text","value":"Hello World!!!","type":"text"}]},"url":"https://api.embloy.com/api/v0/sdk/applications"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"errors\": {\n        \"application_text\": [\n            {\n                \"error\": \"ERR_LENGTH\",\n                \"description\": \"Attribute length is invalid\",\n                \"count\": 0\n            },\n            {\n                \"error\": \"blank\"\n            }\n        ]\n    }\n}"},{"id":"039ca870-6620-40e0-8f15-8db46645a9bb","name":"400 Bad Request","originalRequest":{"method":"POST","header":[{"key":"request_token","value":"insert-request-token","description":"Request token generated by referrer's client'token which contains all relevant job information.","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"application_text","value":"Hello World!!!","type":"text"},{"key":"application_attachment","type":"file","src":"LLhjUwVNy/reminder.html"}]},"url":"https://api.embloy.com/api/v0/sdk/applications"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"errors\": {\n        \"application_attachment\": [\n            \"Invalid CV format\"\n        ]\n    }\n}"},{"id":"7bebed1e-638a-4f10-8403-7a4972eed31b","name":"400 Bad Request","originalRequest":{"method":"POST","header":[{"key":"request_token","value":"insert-request-token","description":"Request token generated by referrer's client'token which contains all relevant job information.","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"application_text","value":"Hello World","type":"text"},{"key":"application_answers[0][application_option_id]","value":"1","type":"text"},{"key":"application_answers[0][answer]","value":"Yes","type":"text"},{"key":"application_answers[1][application_option_id]","value":"2","type":"text"},{"key":"application_answers[1][answer]","value":"Master's Degree","type":"text"},{"key":"application_answers[2][application_option_id]","value":"3","type":"text"},{"key":"application_answers[2][answer]","value":"https://github.com/username","type":"text"},{"key":"application_answers[3][application_option_id]","value":"4","type":"text"},{"key":"application_answers[3][answer]","value":"I am very excited about this opportunity.","type":"text"},{"key":"application_answers[4][application_option_id]","value":"5","type":"text"},{"key":"application_answers[4][answer]","value":"AI, Scrum","type":"text"},{"key":"application_attachment","type":"file","src":"V-vJF7A6W/Wirtschaftsinformatik_BA_Neufassung_10082023.pdf"}]},"url":"https://api.embloy.com/api/v0/sdk/apply"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"job\": [\n        {\n            \"error\": \"Job is either archived or deactivated\"\n        }\n    ]\n}"},{"id":"fb950f80-6c7c-49b8-8520-887740fdf6f0","name":"401 Unauthorized","originalRequest":{"method":"POST","header":[{"key":"request_token","value":"insert-request-token","description":"Request token generated by referrer's client'token which contains all relevant job information.","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"application_text","value":"Hello World!!!","type":"text"}]},"url":"https://api.embloy.com/api/v0/sdk/applications"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"Malformed Request Token\"\n}"},{"id":"222723a2-0e9e-4f78-9f6a-900a1e8947eb","name":"422 Unprocessable Content","originalRequest":{"method":"POST","header":[{"key":"request_token","value":"insert-request-token","description":"Request token generated by referrer's client'token which contains all relevant job information.","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"application_text","value":"Hello World!!!","type":"text"}]},"url":"https://api.embloy.com/api/v0/sdk/applications"},"status":"Unprocessable Entity","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"application\": [\n        {\n            \"error\": \"ERR_UNNECESSARY\",\n            \"description\": \"Attribute is already submitted\"\n        }\n    ]\n}"}],"_postman_id":"d30ba0ba-7c54-4b48-a24f-da3741125391"}],"id":"fef972ad-96ec-4bcd-a33e-c37d2735c964","description":"<p>All requests for the \"<em>Embloy Button</em>\" and related token creation and application capturing functionalities.</p>\n<h4 id=\"note\">Note:</h4>\n<p>These endpoints are disabled for sandbox users.</p>\n","_postman_id":"fef972ad-96ec-4bcd-a33e-c37d2735c964","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}}},{"name":"Subscriptions","item":[{"name":"Get all charges","id":"404f289e-eb7b-4b4f-9c95-acb27fc856e6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/client/subscriptions/charges","description":"<p>Returns all charges of the current user's payments and subscriptions.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","client","subscriptions","charges"],"host":["https://api.embloy.com"],"query":[],"variable":[]}},"response":[{"id":"630c55ab-8db6-4639-82b3-098a6f16151c","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/client/subscriptions/charges"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"charges\": [\n        {\n            \"id\": 1,\n            \"customer_id\": 1,\n            \"subscription_id\": null,\n            \"processor_id\": \"ch_3OUt98KMiBrigNb60nuIoRsd\",\n            \"amount\": 12345600,\n            \"currency\": \"eur\",\n            \"application_fee_amount\": null,\n            \"amount_refunded\": 0,\n            \"metadata\": {},\n            \"data\": {\n                \"brand\": \"Visa\",\n                \"last4\": \"4242\",\n                \"refunds\": [],\n                \"exp_year\": \"2034\",\n                \"discounts\": [],\n                \"exp_month\": \"12\",\n                \"line_items\": [],\n                \"period_end\": \"2024-01-04T16:47:50.000+01:00\",\n                \"period_start\": \"2024-01-04T16:47:50.000+01:00\",\n                \"amount_captured\": 12345600,\n                \"payment_intent_id\": \"pi_3OUt98KMiBrigNb60pGoPovZ\",\n                \"total_tax_amounts\": [],\n                \"stripe_receipt_url\": \"https://pay.stripe.com/receipts/payment/CAcaFwoVYWNjdF8xT1RENzFLTWlCcmlnTmI2KKmm26wGMgZAhT169xc6LBY61QIcu6TAHC08gPrWCahRLlWGOlBSuD8g4KNw-Qffy4IBGzpJwfsOufJh\",\n                \"payment_method_type\": \"card\"\n            },\n            \"stripe_account\": null,\n            \"created_at\": \"2024-01-04T15:47:50.000Z\",\n            \"updated_at\": \"2024-01-04T15:47:54.273Z\"\n        },\n        {\n            \"id\": 2,\n            \"customer_id\": 1,\n            \"subscription_id\": 1,\n            \"processor_id\": \"ch_3OUtYAKMiBrigNb6046AykXb\",\n            \"amount\": 1000,\n            \"currency\": \"eur\",\n            \"application_fee_amount\": null,\n            \"amount_refunded\": 0,\n            \"metadata\": {},\n            \"data\": {\n                \"brand\": \"Visa\",\n                \"last4\": \"4242\",\n                \"refunds\": [],\n                \"exp_year\": \"2034\",\n                \"subtotal\": 1000,\n                \"discounts\": [],\n                \"exp_month\": \"12\",\n                \"invoice_id\": \"in_1OUtY9KMiBrigNb6Lr5Mjd6w\",\n                \"line_items\": [\n                    {\n                        \"id\": \"il_1OUtY9KMiBrigNb6fFq8JXT4\",\n                        \"amount\": 1000,\n                        \"price_id\": \"price_1OUqrPKMiBrigNb6lia8VWiD\",\n                        \"quantity\": 1,\n                        \"discounts\": [],\n                        \"proration\": false,\n                        \"period_end\": \"2024-02-04T17:13:41.000+01:00\",\n                        \"description\": \"1 × Embloy Premium (at €10.00 / month)\",\n                        \"tax_amounts\": [],\n                        \"unit_amount\": 1000,\n                        \"period_start\": \"2024-01-04T17:13:41.000+01:00\"\n                    }\n                ],\n                \"period_end\": \"2024-01-04T17:13:41.000+01:00\",\n                \"period_start\": \"2024-01-04T17:13:41.000+01:00\",\n                \"amount_captured\": 1000,\n                \"payment_intent_id\": \"pi_3OUtYAKMiBrigNb60xXOQAVe\",\n                \"total_tax_amounts\": [],\n                \"stripe_receipt_url\": \"https://pay.stripe.com/receipts/invoices/CAcaFwoVYWNjdF8xT1RENzFLTWlCcmlnTmI2KPXb26wGMgaz3NDf79w6LBZ2G3tAXmfSMVf1Q0AQpauKisELrKJ1nsCWGIhxehpeuMR1GjnTIODBFHgD?s=ap\",\n                \"payment_method_type\": \"card\",\n                \"total_discount_amounts\": []\n            },\n            \"stripe_account\": null,\n            \"created_at\": \"2024-01-04T16:13:42.000Z\",\n            \"updated_at\": \"2024-01-04T17:42:13.839Z\"\n        }\n    ]\n}"},{"id":"14c7257c-a503-466e-a0bf-1f4aac8efba5","name":"204 No Content","originalRequest":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/client/subscriptions/charges"},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"404f289e-eb7b-4b4f-9c95-acb27fc856e6"},{"name":"Get all subscriptions","id":"c45c84f4-688b-4099-8591-c3d71d746d2c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/client/subscriptions","description":"<p>Returns all subscriptions of the current user.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","client","subscriptions"],"host":["https://api.embloy.com"],"query":[],"variable":[]}},"response":[{"id":"20dd13b8-d50b-4901-9a13-a3f5aba770b4","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/client/subscriptions"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"subscriptions\": [\n        {\n            \"application_fee_percent\": null,\n            \"created_at\": \"2024-01-04T16:13:41.000Z\",\n            \"processor_plan\": \"price_1OUqrPKMiBrigNb6lia8VWiD\",\n            \"quantity\": 1,\n            \"status\": \"active\",\n            \"stripe_account\": null,\n            \"metadata\": {},\n            \"metered\": false,\n            \"pause_behavior\": null,\n            \"pause_resumes_at\": null,\n            \"current_period_start\": \"2024-01-04T16:13:41.000Z\",\n            \"current_period_end\": \"2024-02-04T16:13:41.000Z\",\n            \"ends_at\": null,\n            \"payment_method_id\": \"pm_1OUtY8KMiBrigNb6g5lAmBzg\",\n            \"id\": 1,\n            \"customer_id\": 1,\n            \"name\": \"default\",\n            \"processor_id\": \"sub_1OUtY9KMiBrigNb62FFb6J69\",\n            \"trial_ends_at\": null,\n            \"pause_starts_at\": null,\n            \"data\": {\n                \"subscription_items\": [\n                    {\n                        \"id\": \"si_PJWb2WRppnVPwf\",\n                        \"price\": {\n                            \"id\": \"price_1OUqrPKMiBrigNb6lia8VWiD\",\n                            \"object\": \"price\",\n                            \"active\": true,\n                            \"billing_scheme\": \"per_unit\",\n                            \"created\": 1704374483,\n                            \"currency\": \"eur\",\n                            \"custom_unit_amount\": null,\n                            \"livemode\": false,\n                            \"lookup_key\": null,\n                            \"metadata\": {},\n                            \"nickname\": null,\n                            \"product\": \"prod_PJTpN7HCdVqHwz\",\n                            \"recurring\": {\n                                \"aggregate_usage\": null,\n                                \"interval\": \"month\",\n                                \"interval_count\": 1,\n                                \"trial_period_days\": null,\n                                \"usage_type\": \"licensed\"\n                            },\n                            \"tax_behavior\": \"unspecified\",\n                            \"tiers_mode\": null,\n                            \"transform_quantity\": null,\n                            \"type\": \"recurring\",\n                            \"unit_amount\": 1000,\n                            \"unit_amount_decimal\": \"1000\"\n                        },\n                        \"metadata\": {},\n                        \"quantity\": 1\n                    }\n                ]\n            },\n            \"updated_at\": \"2024-01-04T17:42:13.150Z\",\n            \"prorate\": true\n        }\n    ]\n}"},{"id":"45150c84-6133-44fb-a63f-eb42051b2cf2","name":"204 No Content","originalRequest":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/client/subscriptions"},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":""},{"id":"9ede5432-d0e5-41e9-a07a-966361e6432e","name":"404 Not Found","originalRequest":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/client/subscriptions"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"User or payment processor not found\"\n}"}],"_postman_id":"c45c84f4-688b-4099-8591-c3d71d746d2c"},{"name":"Get active subscription","id":"7cab524b-8cbb-4c9b-ba55-ebf24e267f12","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/client/subscriptions/active?info=1","description":"<p>Returns currently active subscription for current user including additional information if the <code>info</code> flag is set.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","client","subscriptions","active"],"host":["https://api.embloy.com"],"query":[{"description":{"content":"<p>Toggle additional information</p>\n","type":"text/plain"},"key":"info","value":"1"}],"variable":[]}},"response":[{"id":"94af8e3f-bf4a-48d6-8949-e7322f5b30f0","name":"200 OK (Subscription only)","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.embloy.com/api/v0/client/subscriptions/active?info=0","host":["https://api.embloy.com"],"path":["api","v0","client","subscriptions","active"],"query":[{"key":"info","value":"0"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"subscription\": {\n        \"id\": 1,\n        \"customer_id\": 1,\n        \"name\": \"default\",\n        \"processor_id\": \"sub_1OUtY9KMiBrigNb62FFb6J69\",\n        \"processor_plan\": \"price_1OUqrPKMiBrigNb6lia8VWiD\",\n        \"quantity\": 1,\n        \"status\": \"active\",\n        \"current_period_start\": \"2024-01-04T16:13:41.000Z\",\n        \"current_period_end\": \"2024-02-04T16:13:41.000Z\",\n        \"trial_ends_at\": null,\n        \"ends_at\": null,\n        \"metered\": false,\n        \"pause_behavior\": null,\n        \"pause_starts_at\": null,\n        \"pause_resumes_at\": null,\n        \"application_fee_percent\": null,\n        \"metadata\": {},\n        \"data\": {\n            \"subscription_items\": [\n                {\n                    \"id\": \"si_PJWb2WRppnVPwf\",\n                    \"price\": {\n                        \"id\": \"price_1OUqrPKMiBrigNb6lia8VWiD\",\n                        \"type\": \"recurring\",\n                        \"active\": true,\n                        \"object\": \"price\",\n                        \"created\": 1704374483,\n                        \"product\": \"prod_PJTpN7HCdVqHwz\",\n                        \"currency\": \"eur\",\n                        \"livemode\": false,\n                        \"metadata\": {},\n                        \"nickname\": null,\n                        \"recurring\": {\n                            \"interval\": \"month\",\n                            \"usage_type\": \"licensed\",\n                            \"interval_count\": 1,\n                            \"aggregate_usage\": null,\n                            \"trial_period_days\": null\n                        },\n                        \"lookup_key\": null,\n                        \"tiers_mode\": null,\n                        \"unit_amount\": 1000,\n                        \"tax_behavior\": \"unspecified\",\n                        \"billing_scheme\": \"per_unit\",\n                        \"custom_unit_amount\": null,\n                        \"transform_quantity\": null,\n                        \"unit_amount_decimal\": \"1000\"\n                    },\n                    \"metadata\": {},\n                    \"quantity\": 1\n                }\n            ]\n        },\n        \"stripe_account\": null,\n        \"payment_method_id\": \"pm_1OUtY8KMiBrigNb6g5lAmBzg\",\n        \"created_at\": \"2024-01-04T16:13:41.000Z\",\n        \"updated_at\": \"2024-01-04T16:14:12.322Z\",\n        \"prorate\": true\n    }\n}"},{"id":"4c4aa862-0262-44f7-b82b-31644a4ae966","name":"200 OK (Additional info)","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.embloy.com/api/v0/client/subscriptions/active?info=0","host":["https://api.embloy.com"],"path":["api","v0","client","subscriptions","active"],"query":[{"key":"info","value":"0"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"subscription\": {\n        \"id\": \"sub_1OUvJdKMiBrigNb68GF8ZQN0\",\n        \"object\": \"subscription\",\n        \"application\": null,\n        \"application_fee_percent\": null,\n        \"automatic_tax\": {\n            \"enabled\": false\n        },\n        \"billing_cycle_anchor\": 1704391609,\n        \"billing_thresholds\": null,\n        \"cancel_at\": null,\n        \"cancel_at_period_end\": false,\n        \"canceled_at\": null,\n        \"cancellation_details\": {\n            \"comment\": null,\n            \"feedback\": null,\n            \"reason\": null\n        },\n        \"collection_method\": \"charge_automatically\",\n        \"created\": 1704391609,\n        \"currency\": \"eur\",\n        \"current_period_end\": 1707070009,\n        \"current_period_start\": 1704391609,\n        \"customer\": \"cus_PJVtS7Rf19hX4j\",\n        \"days_until_due\": null,\n        \"default_payment_method\": {\n            \"id\": \"pm_1OUtY8KMiBrigNb6g5lAmBzg\",\n            \"object\": \"payment_method\",\n            \"billing_details\": {\n                \"address\": {\n                    \"city\": null,\n                    \"country\": \"DE\",\n                    \"line1\": null,\n                    \"line2\": null,\n                    \"postal_code\": null,\n                    \"state\": null\n                },\n                \"email\": \"winston.smith@embloy.com\",\n                \"name\": \"Winstom Smith\",\n                \"phone\": null\n            },\n            \"card\": {\n                \"brand\": \"visa\",\n                \"checks\": {\n                    \"address_line1_check\": null,\n                    \"address_postal_code_check\": null,\n                    \"cvc_check\": \"pass\"\n                },\n                \"country\": \"US\",\n                \"exp_month\": 12,\n                \"exp_year\": 2034,\n                \"fingerprint\": \"0hUglDbVMf8GxtPf\",\n                \"funding\": \"credit\",\n                \"generated_from\": null,\n                \"last4\": \"4242\",\n                \"networks\": {\n                    \"available\": [\n                        \"visa\"\n                    ],\n                    \"preferred\": null\n                },\n                \"three_d_secure_usage\": {\n                    \"supported\": true\n                },\n                \"wallet\": null\n            },\n            \"created\": 1704384820,\n            \"customer\": \"cus_PJVtS7Rf19hX4j\",\n            \"livemode\": false,\n            \"metadata\": {},\n            \"type\": \"card\"\n        },\n        \"default_source\": null,\n        \"default_tax_rates\": [],\n        \"description\": null,\n        \"discount\": null,\n        \"ended_at\": null,\n        \"items\": {\n            \"object\": \"list\",\n            \"data\": [\n                {\n                    \"id\": \"si_PJYQb8PUfoaEc3\",\n                    \"object\": \"subscription_item\",\n                    \"billing_thresholds\": null,\n                    \"created\": 1704391610,\n                    \"metadata\": {},\n                    \"plan\": {\n                        \"id\": \"price_1OUqrPKMiBrigNb6lia8VWiD\",\n                        \"object\": \"plan\",\n                        \"active\": true,\n                        \"aggregate_usage\": null,\n                        \"amount\": 1000,\n                        \"amount_decimal\": \"1000\",\n                        \"billing_scheme\": \"per_unit\",\n                        \"created\": 1704374483,\n                        \"currency\": \"eur\",\n                        \"interval\": \"month\",\n                        \"interval_count\": 1,\n                        \"livemode\": false,\n                        \"metadata\": {},\n                        \"nickname\": null,\n                        \"product\": \"prod_PJTpN7HCdVqHwz\",\n                        \"tiers_mode\": null,\n                        \"transform_usage\": null,\n                        \"trial_period_days\": null,\n                        \"usage_type\": \"licensed\"\n                    },\n                    \"price\": {\n                        \"id\": \"price_1OUqrPKMiBrigNb6lia8VWiD\",\n                        \"object\": \"price\",\n                        \"active\": true,\n                        \"billing_scheme\": \"per_unit\",\n                        \"created\": 1704374483,\n                        \"currency\": \"eur\",\n                        \"custom_unit_amount\": null,\n                        \"livemode\": false,\n                        \"lookup_key\": null,\n                        \"metadata\": {},\n                        \"nickname\": null,\n                        \"product\": \"prod_PJTpN7HCdVqHwz\",\n                        \"recurring\": {\n                            \"aggregate_usage\": null,\n                            \"interval\": \"month\",\n                            \"interval_count\": 1,\n                            \"trial_period_days\": null,\n                            \"usage_type\": \"licensed\"\n                        },\n                        \"tax_behavior\": \"unspecified\",\n                        \"tiers_mode\": null,\n                        \"transform_quantity\": null,\n                        \"type\": \"recurring\",\n                        \"unit_amount\": 1000,\n                        \"unit_amount_decimal\": \"1000\"\n                    },\n                    \"quantity\": 1,\n                    \"subscription\": \"sub_1OUvJdKMiBrigNb68GF8ZQN0\",\n                    \"tax_rates\": []\n                }\n            ],\n            \"has_more\": false,\n            \"total_count\": 1,\n            \"url\": \"/v1/subscription_items?subscription=sub_1OUvJdKMiBrigNb68GF8ZQN0\"\n        },\n        \"latest_invoice\": {\n            \"id\": \"in_1OUvJdKMiBrigNb6qmiVAgLU\",\n            \"object\": \"invoice\",\n            \"account_country\": \"DE\",\n            \"account_name\": \"Embloy\",\n            \"account_tax_ids\": null,\n            \"amount_due\": 1000,\n            \"amount_paid\": 1000,\n            \"amount_remaining\": 0,\n            \"amount_shipping\": 0,\n            \"application\": null,\n            \"application_fee_amount\": null,\n            \"attempt_count\": 1,\n            \"attempted\": true,\n            \"auto_advance\": false,\n            \"automatic_tax\": {\n                \"enabled\": false,\n                \"status\": null\n            },\n            \"billing_reason\": \"subscription_create\",\n            \"charge\": {\n                \"id\": \"ch_3OUvJeKMiBrigNb60BEGnajY\",\n                \"object\": \"charge\",\n                \"amount\": 1000,\n                \"amount_captured\": 1000,\n                \"amount_refunded\": 0,\n                \"application\": null,\n                \"application_fee\": null,\n                \"application_fee_amount\": null,\n                \"balance_transaction\": \"txn_3OUvJeKMiBrigNb60k3YM2LT\",\n                \"billing_details\": {\n                    \"address\": {\n                        \"city\": null,\n                        \"country\": \"DE\",\n                        \"line1\": null,\n                        \"line2\": null,\n                        \"postal_code\": null,\n                        \"state\": null\n                    },\n                    \"email\": \"winston.smith@embloy.com\",\n                    \"name\": \"Winstom Smith\",\n                    \"phone\": null\n                },\n                \"calculated_statement_descriptor\": \"GITHUB.COM\",\n                \"captured\": true,\n                \"created\": 1704391611,\n                \"currency\": \"eur\",\n                \"customer\": \"cus_PJVtS7Rf19hX4j\",\n                \"description\": \"Subscription creation\",\n                \"destination\": null,\n                \"dispute\": null,\n                \"disputed\": false,\n                \"failure_balance_transaction\": null,\n                \"failure_code\": null,\n                \"failure_message\": null,\n                \"fraud_details\": {},\n                \"invoice\": \"in_1OUvJdKMiBrigNb6qmiVAgLU\",\n                \"livemode\": false,\n                \"metadata\": {},\n                \"on_behalf_of\": null,\n                \"order\": null,\n                \"outcome\": {\n                    \"network_status\": \"approved_by_network\",\n                    \"reason\": null,\n                    \"risk_level\": \"normal\",\n                    \"risk_score\": 44,\n                    \"seller_message\": \"Payment complete.\",\n                    \"type\": \"authorized\"\n                },\n                \"paid\": true,\n                \"payment_intent\": \"pi_3OUvJeKMiBrigNb60uyckEsR\",\n                \"payment_method\": \"pm_1OUtY8KMiBrigNb6g5lAmBzg\",\n                \"payment_method_details\": {\n                    \"card\": {\n                        \"amount_authorized\": 1000,\n                        \"brand\": \"visa\",\n                        \"checks\": {\n                            \"address_line1_check\": null,\n                            \"address_postal_code_check\": null,\n                            \"cvc_check\": null\n                        },\n                        \"country\": \"US\",\n                        \"exp_month\": 12,\n                        \"exp_year\": 2034,\n                        \"extended_authorization\": {\n                            \"status\": \"disabled\"\n                        },\n                        \"fingerprint\": \"0hUglDbVMf8GxtPf\",\n                        \"funding\": \"credit\",\n                        \"incremental_authorization\": {\n                            \"status\": \"unavailable\"\n                        },\n                        \"installments\": null,\n                        \"last4\": \"4242\",\n                        \"mandate\": null,\n                        \"multicapture\": {\n                            \"status\": \"unavailable\"\n                        },\n                        \"network\": \"visa\",\n                        \"network_token\": {\n                            \"used\": false\n                        },\n                        \"overcapture\": {\n                            \"maximum_amount_capturable\": 1000,\n                            \"status\": \"unavailable\"\n                        },\n                        \"three_d_secure\": null,\n                        \"wallet\": null\n                    },\n                    \"type\": \"card\"\n                },\n                \"radar_options\": {},\n                \"receipt_email\": null,\n                \"receipt_number\": null,\n                \"receipt_url\": \"https://pay.stripe.com/receipts/invoices/CAcaFwoVYWNjdF8xT1RENzFLTWlCcmlnTmI2KMXq26wGMgbdh9N-els6LBb65rQE1UejCDqAn89oBzQZhlvSEr2qAPI0SIWd3xCVvHtxzhqy1Zoc2MqD?s=ap\",\n                \"refunded\": false,\n                \"review\": null,\n                \"shipping\": null,\n                \"source\": null,\n                \"source_transfer\": null,\n                \"statement_descriptor\": null,\n                \"statement_descriptor_suffix\": null,\n                \"status\": \"succeeded\",\n                \"transfer_data\": null,\n                \"transfer_group\": null\n            },\n            \"collection_method\": \"charge_automatically\",\n            \"created\": 1704391609,\n            \"currency\": \"eur\",\n            \"custom_fields\": null,\n            \"customer\": \"cus_PJVtS7Rf19hX4j\",\n            \"customer_address\": null,\n            \"customer_email\": \"winston.smith@embloy.com\",\n            \"customer_name\": \"Winston Smith\",\n            \"customer_phone\": null,\n            \"customer_shipping\": null,\n            \"customer_tax_exempt\": \"none\",\n            \"customer_tax_ids\": [],\n            \"default_payment_method\": null,\n            \"default_source\": null,\n            \"default_tax_rates\": [],\n            \"description\": null,\n            \"discount\": null,\n            \"discounts\": [],\n            \"due_date\": null,\n            \"effective_at\": 1704391609,\n            \"ending_balance\": 0,\n            \"footer\": null,\n            \"from_invoice\": null,\n            \"hosted_invoice_url\": \"https://invoice.stripe.com/i/acct_1OTD71KMiBrigNb6/test_YWNjdF8xT1RENzFLTWlCcmlnTmI2LF9QSllRUkpjSVZQWUVoWlJqQzZGQkJ6S3l2S01kVjJvLDk0OTMyODA10200KAt8Wfeb?s=ap\",\n            \"invoice_pdf\": \"https://pay.stripe.com/invoice/acct_1OTD71KMiBrigNb6/test_YWNjdF8xT1RENzFLTWlCcmlnTmI2LF9QSllRUkpjSVZQWUVoWlJqQzZGQkJ6S3l2S01kVjJvLDk0OTMyODA10200KAt8Wfeb/pdf?s=ap\",\n            \"last_finalization_error\": null,\n            \"latest_revision\": null,\n            \"lines\": {\n                \"object\": \"list\",\n                \"data\": [\n                    {\n                        \"id\": \"il_1OUvJdKMiBrigNb6pOShn1jq\",\n                        \"object\": \"line_item\",\n                        \"amount\": 1000,\n                        \"amount_excluding_tax\": 1000,\n                        \"currency\": \"eur\",\n                        \"description\": \"1 × Embloy Premium (at €10.00 / month)\",\n                        \"discount_amounts\": [],\n                        \"discountable\": true,\n                        \"discounts\": [],\n                        \"livemode\": false,\n                        \"metadata\": {},\n                        \"period\": {\n                            \"end\": 1707070009,\n                            \"start\": 1704391609\n                        },\n                        \"plan\": {\n                            \"id\": \"price_1OUqrPKMiBrigNb6lia8VWiD\",\n                            \"object\": \"plan\",\n                            \"active\": true,\n                            \"aggregate_usage\": null,\n                            \"amount\": 1000,\n                            \"amount_decimal\": \"1000\",\n                            \"billing_scheme\": \"per_unit\",\n                            \"created\": 1704374483,\n                            \"currency\": \"eur\",\n                            \"interval\": \"month\",\n                            \"interval_count\": 1,\n                            \"livemode\": false,\n                            \"metadata\": {},\n                            \"nickname\": null,\n                            \"product\": \"prod_PJTpN7HCdVqHwz\",\n                            \"tiers_mode\": null,\n                            \"transform_usage\": null,\n                            \"trial_period_days\": null,\n                            \"usage_type\": \"licensed\"\n                        },\n                        \"price\": {\n                            \"id\": \"price_1OUqrPKMiBrigNb6lia8VWiD\",\n                            \"object\": \"price\",\n                            \"active\": true,\n                            \"billing_scheme\": \"per_unit\",\n                            \"created\": 1704374483,\n                            \"currency\": \"eur\",\n                            \"custom_unit_amount\": null,\n                            \"livemode\": false,\n                            \"lookup_key\": null,\n                            \"metadata\": {},\n                            \"nickname\": null,\n                            \"product\": \"prod_PJTpN7HCdVqHwz\",\n                            \"recurring\": {\n                                \"aggregate_usage\": null,\n                                \"interval\": \"month\",\n                                \"interval_count\": 1,\n                                \"trial_period_days\": null,\n                                \"usage_type\": \"licensed\"\n                            },\n                            \"tax_behavior\": \"unspecified\",\n                            \"tiers_mode\": null,\n                            \"transform_quantity\": null,\n                            \"type\": \"recurring\",\n                            \"unit_amount\": 1000,\n                            \"unit_amount_decimal\": \"1000\"\n                        },\n                        \"proration\": false,\n                        \"proration_details\": {\n                            \"credited_items\": null\n                        },\n                        \"quantity\": 1,\n                        \"subscription\": \"sub_1OUvJdKMiBrigNb68GF8ZQN0\",\n                        \"subscription_item\": \"si_PJYQb8PUfoaEc3\",\n                        \"tax_amounts\": [],\n                        \"tax_rates\": [],\n                        \"type\": \"subscription\",\n                        \"unit_amount_excluding_tax\": \"1000\"\n                    }\n                ],\n                \"has_more\": false,\n                \"total_count\": 1,\n                \"url\": \"/v1/invoices/in_1OUvJdKMiBrigNb6qmiVAgLU/lines\"\n            },\n            \"livemode\": false,\n            \"metadata\": {},\n            \"next_payment_attempt\": null,\n            \"number\": \"C5F0B98E-0006\",\n            \"on_behalf_of\": null,\n            \"paid\": true,\n            \"paid_out_of_band\": false,\n            \"payment_intent\": {\n                \"id\": \"pi_3OUvJeKMiBrigNb60uyckEsR\",\n                \"object\": \"payment_intent\",\n                \"amount\": 1000,\n                \"amount_capturable\": 0,\n                \"amount_details\": {\n                    \"tip\": {}\n                },\n                \"amount_received\": 1000,\n                \"application\": null,\n                \"application_fee_amount\": null,\n                \"automatic_payment_methods\": null,\n                \"canceled_at\": null,\n                \"cancellation_reason\": null,\n                \"capture_method\": \"automatic\",\n                \"client_secret\": \"pi_3OUvJeKMiBrigNb60uyckEsR_secret_H3LnmqHStOpCOJzAuPTcaX6XW\",\n                \"confirmation_method\": \"automatic\",\n                \"created\": 1704391610,\n                \"currency\": \"eur\",\n                \"customer\": \"cus_PJVtS7Rf19hX4j\",\n                \"description\": \"Subscription creation\",\n                \"invoice\": \"in_1OUvJdKMiBrigNb6qmiVAgLU\",\n                \"last_payment_error\": null,\n                \"latest_charge\": \"ch_3OUvJeKMiBrigNb60BEGnajY\",\n                \"livemode\": false,\n                \"metadata\": {},\n                \"next_action\": null,\n                \"on_behalf_of\": null,\n                \"payment_method\": \"pm_1OUtY8KMiBrigNb6g5lAmBzg\",\n                \"payment_method_configuration_details\": null,\n                \"payment_method_options\": {\n                    \"card\": {\n                        \"installments\": null,\n                        \"mandate_options\": null,\n                        \"network\": null,\n                        \"request_three_d_secure\": \"automatic\",\n                        \"setup_future_usage\": \"off_session\"\n                    },\n                    \"link\": {\n                        \"persistent_token\": null\n                    },\n                    \"paypal\": {\n                        \"preferred_locale\": null,\n                        \"reference\": null\n                    },\n                    \"sepa_debit\": {}\n                },\n                \"payment_method_types\": [\n                    \"card\",\n                    \"link\",\n                    \"paypal\",\n                    \"sepa_debit\"\n                ],\n                \"processing\": null,\n                \"receipt_email\": null,\n                \"review\": null,\n                \"setup_future_usage\": \"off_session\",\n                \"shipping\": null,\n                \"source\": null,\n                \"statement_descriptor\": null,\n                \"statement_descriptor_suffix\": null,\n                \"status\": \"succeeded\",\n                \"transfer_data\": null,\n                \"transfer_group\": null\n            },\n            \"payment_settings\": {\n                \"default_mandate\": null,\n                \"payment_method_options\": null,\n                \"payment_method_types\": null\n            },\n            \"period_end\": 1704391609,\n            \"period_start\": 1704391609,\n            \"post_payment_credit_notes_amount\": 0,\n            \"pre_payment_credit_notes_amount\": 0,\n            \"quote\": null,\n            \"receipt_number\": null,\n            \"rendering\": null,\n            \"rendering_options\": null,\n            \"shipping_cost\": null,\n            \"shipping_details\": null,\n            \"starting_balance\": 0,\n            \"statement_descriptor\": null,\n            \"status\": \"paid\",\n            \"status_transitions\": {\n                \"finalized_at\": 1704391609,\n                \"marked_uncollectible_at\": null,\n                \"paid_at\": 1704391611,\n                \"voided_at\": null\n            },\n            \"subscription\": \"sub_1OUvJdKMiBrigNb68GF8ZQN0\",\n            \"subscription_details\": {\n                \"metadata\": {}\n            },\n            \"subtotal\": 1000,\n            \"subtotal_excluding_tax\": 1000,\n            \"tax\": null,\n            \"test_clock\": null,\n            \"total\": 1000,\n            \"total_discount_amounts\": [],\n            \"total_excluding_tax\": 1000,\n            \"total_tax_amounts\": [],\n            \"transfer_data\": null,\n            \"webhooks_delivered_at\": 1704391613\n        },\n        \"livemode\": false,\n        \"metadata\": {},\n        \"next_pending_invoice_item_invoice\": null,\n        \"on_behalf_of\": null,\n        \"pause_collection\": null,\n        \"payment_settings\": {\n            \"payment_method_options\": null,\n            \"payment_method_types\": null,\n            \"save_default_payment_method\": \"off\"\n        },\n        \"pending_invoice_item_interval\": null,\n        \"pending_setup_intent\": null,\n        \"pending_update\": null,\n        \"plan\": {\n            \"id\": \"price_1OUqrPKMiBrigNb6lia8VWiD\",\n            \"object\": \"plan\",\n            \"active\": true,\n            \"aggregate_usage\": null,\n            \"amount\": 1000,\n            \"amount_decimal\": \"1000\",\n            \"billing_scheme\": \"per_unit\",\n            \"created\": 1704374483,\n            \"currency\": \"eur\",\n            \"interval\": \"month\",\n            \"interval_count\": 1,\n            \"livemode\": false,\n            \"metadata\": {},\n            \"nickname\": null,\n            \"product\": \"prod_PJTpN7HCdVqHwz\",\n            \"tiers_mode\": null,\n            \"transform_usage\": null,\n            \"trial_period_days\": null,\n            \"usage_type\": \"licensed\"\n        },\n        \"quantity\": 1,\n        \"schedule\": null,\n        \"start_date\": 1704391609,\n        \"status\": \"active\",\n        \"test_clock\": null,\n        \"transfer_data\": null,\n        \"trial_end\": null,\n        \"trial_settings\": {\n            \"end_behavior\": {\n                \"missing_payment_method\": \"create_invoice\"\n            }\n        },\n        \"trial_start\": null\n    }\n}"},{"id":"d09b4ca9-6f65-46c0-b141-12757e46c308","name":"404 Not Found","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.embloy.com/api/v0/client/subscriptions/active?info=1","host":["https://api.embloy.com"],"path":["api","v0","client","subscriptions","active"],"query":[{"key":"info","value":"1"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"No active subscription found.\"\n}"}],"_postman_id":"7cab524b-8cbb-4c9b-ba55-ebf24e267f12"}],"id":"6665f20c-82b1-4a41-ae6e-f50f5b050b53","description":"<p>All requests related to fetching the client's subscriptions, invoices, receipts and past payments.</p>\n","_postman_id":"6665f20c-82b1-4a41-ae6e-f50f5b050b53","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}}},{"name":"Stripe","item":[{"name":"Successful payment","id":"42f00b33-2fb5-48cf-94ac-48ef299b5c9b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"access_token","value":"insert-access-token","description":"<p>A valid access_token is needed to authenticate and authorize the current user. For further information see: <a href=\"https://documenter.getpostman.com/view/24977803/2s9YRB2rkE#e29e5a54-533b-413a-9e04-b608cc4acd68\">access_token endpoint</a></p>\n","type":"text"}],"url":"https://api.embloy.com/api/v0/checkout/payment/success?session_id=insert-checkout-session-id","description":"<p>Endpoint used to redirect customer after successful stripe-payment.</p>\n<p>Returns completed charge (including receiptURL), stripe session and line_items.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","checkout","payment","success"],"host":["https://api.embloy.com"],"query":[{"key":"session_id","value":"insert-checkout-session-id"}],"variable":[]}},"response":[{"id":"90b0881c-9b1e-4be3-b409-38f6a6891d81","name":"201 Created","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.embloy.com/api/v0/checkout/payment/success?session_id=","host":["https://api.embloy.com"],"path":["api","v0","checkout","payment","success"],"query":[{"key":"session_id","value":""}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Payment created!\",\n    \"charge\": {\n        \"id\": \"ch_3OUvGgKMiBrigNb60x04dKoG\",\n        \"object\": \"charge\",\n        \"amount\": 12345600,\n        \"amount_captured\": 12345600,\n        \"amount_refunded\": 0,\n        \"application\": null,\n        \"application_fee\": null,\n        \"application_fee_amount\": null,\n        \"balance_transaction\": \"txn_3OUvGgKMiBrigNb60qVamrmZ\",\n        \"billing_details\": {\n            \"address\": {\n                \"city\": null,\n                \"country\": \"DE\",\n                \"line1\": null,\n                \"line2\": null,\n                \"postal_code\": null,\n                \"state\": null\n            },\n            \"email\": \"winston.smith@embloy.com\",\n            \"name\": \"Winstom Smith\",\n            \"phone\": null\n        },\n        \"calculated_statement_descriptor\": \"GITHUB.COM\",\n        \"captured\": true,\n        \"created\": 1704391426,\n        \"currency\": \"eur\",\n        \"customer\": \"cus_PJVtS7Rf19hX4j\",\n        \"description\": null,\n        \"destination\": null,\n        \"dispute\": null,\n        \"disputed\": false,\n        \"failure_balance_transaction\": null,\n        \"failure_code\": null,\n        \"failure_message\": null,\n        \"fraud_details\": {},\n        \"invoice\": null,\n        \"livemode\": false,\n        \"metadata\": {},\n        \"on_behalf_of\": null,\n        \"order\": null,\n        \"outcome\": {\n            \"network_status\": \"approved_by_network\",\n            \"reason\": null,\n            \"risk_level\": \"normal\",\n            \"risk_score\": 21,\n            \"seller_message\": \"Payment complete.\",\n            \"type\": \"authorized\"\n        },\n        \"paid\": true,\n        \"payment_intent\": \"pi_3OUvGgKMiBrigNb60iOySyBS\",\n        \"payment_method\": \"pm_1OUtY8KMiBrigNb6g5lAmBzg\",\n        \"payment_method_details\": {\n            \"card\": {\n                \"amount_authorized\": 12345600,\n                \"brand\": \"visa\",\n                \"checks\": {\n                    \"address_line1_check\": null,\n                    \"address_postal_code_check\": null,\n                    \"cvc_check\": null\n                },\n                \"country\": \"US\",\n                \"exp_month\": 12,\n                \"exp_year\": 2034,\n                \"extended_authorization\": {\n                    \"status\": \"disabled\"\n                },\n                \"fingerprint\": \"0hUglDbVMf8GxtPf\",\n                \"funding\": \"credit\",\n                \"incremental_authorization\": {\n                    \"status\": \"unavailable\"\n                },\n                \"installments\": null,\n                \"last4\": \"4242\",\n                \"mandate\": null,\n                \"multicapture\": {\n                    \"status\": \"unavailable\"\n                },\n                \"network\": \"visa\",\n                \"network_token\": {\n                    \"used\": false\n                },\n                \"overcapture\": {\n                    \"maximum_amount_capturable\": 12345600,\n                    \"status\": \"unavailable\"\n                },\n                \"three_d_secure\": null,\n                \"wallet\": null\n            },\n            \"type\": \"card\"\n        },\n        \"radar_options\": {},\n        \"receipt_email\": null,\n        \"receipt_number\": null,\n        \"receipt_url\": \"https://pay.stripe.com/receipts/payment/CAcaFwoVYWNjdF8xT1RENzFLTWlCcmlnTmI2KJXm26wGMgYvoYmiDYU6LBZQM6uQGGePo8GFEl2hGe2NZEskwhLadZfABAaqiPSwwki-pn5CykxUQPd7\",\n        \"refunded\": false,\n        \"review\": null,\n        \"shipping\": null,\n        \"source\": null,\n        \"source_transfer\": null,\n        \"statement_descriptor\": null,\n        \"statement_descriptor_suffix\": null,\n        \"status\": \"succeeded\",\n        \"transfer_data\": null,\n        \"transfer_group\": null\n    },\n    \"session\": {\n        \"id\": \"cs_test_a1yvJ6xImfTl1dIfjhFo22RYA95GLJkWDgZwX3EYkjJ8uGqZ1wYotCXm7n\",\n        \"object\": \"checkout.session\",\n        \"after_expiration\": null,\n        \"allow_promotion_codes\": null,\n        \"amount_subtotal\": 12345600,\n        \"amount_total\": 12345600,\n        \"automatic_tax\": {\n            \"enabled\": false,\n            \"status\": null\n        },\n        \"billing_address_collection\": null,\n        \"cancel_url\": \"http://localhost:3000/api/v0/checkout/failure?session_id={CHECKOUT_SESSION_ID}\",\n        \"client_reference_id\": null,\n        \"client_secret\": null,\n        \"consent\": null,\n        \"consent_collection\": null,\n        \"created\": 1704391419,\n        \"currency\": \"eur\",\n        \"currency_conversion\": null,\n        \"custom_fields\": [],\n        \"custom_text\": {\n            \"after_submit\": null,\n            \"shipping_address\": null,\n            \"submit\": null,\n            \"terms_of_service_acceptance\": null\n        },\n        \"customer\": \"cus_PJVtS7Rf19hX4j\",\n        \"customer_creation\": null,\n        \"customer_details\": {\n            \"address\": {\n                \"city\": null,\n                \"country\": \"DE\",\n                \"line1\": null,\n                \"line2\": null,\n                \"postal_code\": null,\n                \"state\": null\n            },\n            \"email\": \"winston.smith@embloy.com\",\n            \"name\": \"Winston Smith\",\n            \"phone\": null,\n            \"tax_exempt\": \"none\",\n            \"tax_ids\": []\n        },\n        \"customer_email\": null,\n        \"expires_at\": 1704477819,\n        \"invoice\": null,\n        \"invoice_creation\": {\n            \"enabled\": false,\n            \"invoice_data\": {\n                \"account_tax_ids\": null,\n                \"custom_fields\": null,\n                \"description\": null,\n                \"footer\": null,\n                \"metadata\": {},\n                \"rendering_options\": null\n            }\n        },\n        \"livemode\": false,\n        \"locale\": null,\n        \"metadata\": {},\n        \"mode\": \"payment\",\n        \"payment_intent\": \"pi_3OUvGgKMiBrigNb60iOySyBS\",\n        \"payment_link\": null,\n        \"payment_method_collection\": \"if_required\",\n        \"payment_method_configuration_details\": null,\n        \"payment_method_options\": {},\n        \"payment_method_types\": [\n            \"card\"\n        ],\n        \"payment_status\": \"paid\",\n        \"phone_number_collection\": {\n            \"enabled\": false\n        },\n        \"recovered_from\": null,\n        \"setup_intent\": null,\n        \"shipping_address_collection\": null,\n        \"shipping_cost\": null,\n        \"shipping_details\": null,\n        \"shipping_options\": [],\n        \"status\": \"complete\",\n        \"submit_type\": null,\n        \"subscription\": null,\n        \"success_url\": \"http://localhost:3000/api/v0/checkout/payment/success?session_id={CHECKOUT_SESSION_ID}\",\n        \"total_details\": {\n            \"amount_discount\": 0,\n            \"amount_shipping\": 0,\n            \"amount_tax\": 0\n        },\n        \"ui_mode\": \"hosted\",\n        \"url\": null\n    },\n    \"line_items\": {\n        \"object\": \"list\",\n        \"data\": [\n            {\n                \"id\": \"li_1OUvGZKMiBrigNb67BHU7xoy\",\n                \"object\": \"item\",\n                \"amount_discount\": 0,\n                \"amount_subtotal\": 12345600,\n                \"amount_tax\": 0,\n                \"amount_total\": 12345600,\n                \"currency\": \"eur\",\n                \"description\": \"Embloy Setup Assistance\",\n                \"price\": {\n                    \"id\": \"price_1OUhNDKMiBrigNb67roRCr5S\",\n                    \"object\": \"price\",\n                    \"active\": true,\n                    \"billing_scheme\": \"per_unit\",\n                    \"created\": 1704338015,\n                    \"currency\": \"eur\",\n                    \"custom_unit_amount\": null,\n                    \"livemode\": false,\n                    \"lookup_key\": null,\n                    \"metadata\": {},\n                    \"nickname\": null,\n                    \"product\": \"prod_PJK1ej6o6hK5nW\",\n                    \"recurring\": null,\n                    \"tax_behavior\": \"unspecified\",\n                    \"tiers_mode\": null,\n                    \"transform_quantity\": null,\n                    \"type\": \"one_time\",\n                    \"unit_amount\": 12345600,\n                    \"unit_amount_decimal\": \"12345600\"\n                },\n                \"quantity\": 1\n            }\n        ],\n        \"has_more\": false,\n        \"url\": \"/v1/checkout/sessions/cs_test_a1yvJ6xImfTl1dIfjhFo22RYA95GLJkWDgZwX3EYkjJ8uGqZ1wYotCXm7n/line_items\"\n    }\n}"},{"id":"a8895127-9ab2-4505-989f-8875d9a44337","name":"400 Bad Request","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.embloy.com/api/v0/checkout/payment/success","host":["https://api.embloy.com"],"path":["api","v0","checkout","payment","success"],"query":[{"key":"session_id","value":"insert-checkout-session-id","disabled":true}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"Could not determine which URL to request: Stripe::Checkout::Session instance has invalid ID: nil\"\n}"},{"id":"725e12de-d7d5-4624-98e8-4db1a26e7f2d","name":"400 Bad Request","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.embloy.com/api/v0/checkout/payment/success?session_id=insert-checkout-session-id","host":["https://api.embloy.com"],"path":["api","v0","checkout","payment","success"],"query":[{"key":"session_id","value":"insert-checkout-session-id"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"Could not determine which URL to request: Stripe::PaymentIntent instance has invalid ID: nil\"\n}"},{"id":"fab4fda8-1f5d-4ed3-818c-e414dd1c335c","name":"401 Unauthorized","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.embloy.com/api/v0/checkout/payment/success?session_id=insert-checkout-session-id","host":["https://api.embloy.com"],"path":["api","v0","checkout","payment","success"],"query":[{"key":"session_id","value":"insert-checkout-session-id"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"token\": [\n        {\n            \"error\": \"ERR_INVALID\",\n            \"description\": \"Attribute is invalid or expired\"\n        }\n    ]\n}"}],"_postman_id":"42f00b33-2fb5-48cf-94ac-48ef299b5c9b"},{"name":"Successful subscription","id":"9a3e1762-a038-4267-ba75-cf28899547a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/checkout/subscription/success?session_id=insert-checkout-session-id","description":"<p>Endpoint used to redirect customer after successful stripe-subscription.</p>\n<p>Returns completed subscription (including receiptURL), stripe session and line_items.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","checkout","subscription","success"],"host":["https://api.embloy.com"],"query":[{"key":"session_id","value":"insert-checkout-session-id"}],"variable":[]}},"response":[{"id":"e2855f2e-74f2-4f47-bf97-eab5a3eafc81","name":"201 Created","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.embloy.com/api/v0/checkout/subscription/success?session_id=insert-checkout-session-id","host":["https://api.embloy.com"],"path":["api","v0","checkout","subscription","success"],"query":[{"key":"session_id","value":"insert-checkout-session-id"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Subscription created!\",\n    \"subscription\": {\n        \"id\": \"sub_1OUv5fKMiBrigNb6347PSF1j\",\n        \"object\": \"subscription\",\n        \"application\": null,\n        \"application_fee_percent\": null,\n        \"automatic_tax\": {\n            \"enabled\": false\n        },\n        \"billing_cycle_anchor\": 1704390743,\n        \"billing_thresholds\": null,\n        \"cancel_at\": null,\n        \"cancel_at_period_end\": false,\n        \"canceled_at\": null,\n        \"cancellation_details\": {\n            \"comment\": null,\n            \"feedback\": null,\n            \"reason\": null\n        },\n        \"collection_method\": \"charge_automatically\",\n        \"created\": 1704390743,\n        \"currency\": \"eur\",\n        \"current_period_end\": 1707069143,\n        \"current_period_start\": 1704390743,\n        \"customer\": \"cus_PJVtS7Rf19hX4j\",\n        \"days_until_due\": null,\n        \"default_payment_method\": {\n            \"id\": \"pm_1OUtY8KMiBrigNb6g5lAmBzg\",\n            \"object\": \"payment_method\",\n            \"billing_details\": {\n                \"address\": {\n                    \"city\": null,\n                    \"country\": \"DE\",\n                    \"line1\": null,\n                    \"line2\": null,\n                    \"postal_code\": null,\n                    \"state\": null\n                },\n                \"email\": \"winston.smith@embloy.com\",\n                \"name\": \"Winstom Smith\",\n                \"phone\": null\n            },\n            \"card\": {\n                \"brand\": \"visa\",\n                \"checks\": {\n                    \"address_line1_check\": null,\n                    \"address_postal_code_check\": null,\n                    \"cvc_check\": \"pass\"\n                },\n                \"country\": \"US\",\n                \"exp_month\": 12,\n                \"exp_year\": 2034,\n                \"fingerprint\": \"0hUglDbVMf8GxtPf\",\n                \"funding\": \"credit\",\n                \"generated_from\": null,\n                \"last4\": \"4242\",\n                \"networks\": {\n                    \"available\": [\n                        \"visa\"\n                    ],\n                    \"preferred\": null\n                },\n                \"three_d_secure_usage\": {\n                    \"supported\": true\n                },\n                \"wallet\": null\n            },\n            \"created\": 1704384820,\n            \"customer\": \"cus_PJVtS7Rf19hX4j\",\n            \"livemode\": false,\n            \"metadata\": {},\n            \"type\": \"card\"\n        },\n        \"default_source\": null,\n        \"default_tax_rates\": [],\n        \"description\": null,\n        \"discount\": null,\n        \"ended_at\": null,\n        \"items\": {\n            \"object\": \"list\",\n            \"data\": [\n                {\n                    \"id\": \"si_PJYC4jpWYBlzJ9\",\n                    \"object\": \"subscription_item\",\n                    \"billing_thresholds\": null,\n                    \"created\": 1704390743,\n                    \"metadata\": {},\n                    \"plan\": {\n                        \"id\": \"price_1OUqrPKMiBrigNb6lia8VWiD\",\n                        \"object\": \"plan\",\n                        \"active\": true,\n                        \"aggregate_usage\": null,\n                        \"amount\": 1000,\n                        \"amount_decimal\": \"1000\",\n                        \"billing_scheme\": \"per_unit\",\n                        \"created\": 1704374483,\n                        \"currency\": \"eur\",\n                        \"interval\": \"month\",\n                        \"interval_count\": 1,\n                        \"livemode\": false,\n                        \"metadata\": {},\n                        \"nickname\": null,\n                        \"product\": \"prod_PJTpN7HCdVqHwz\",\n                        \"tiers_mode\": null,\n                        \"transform_usage\": null,\n                        \"trial_period_days\": null,\n                        \"usage_type\": \"licensed\"\n                    },\n                    \"price\": {\n                        \"id\": \"price_1OUqrPKMiBrigNb6lia8VWiD\",\n                        \"object\": \"price\",\n                        \"active\": true,\n                        \"billing_scheme\": \"per_unit\",\n                        \"created\": 1704374483,\n                        \"currency\": \"eur\",\n                        \"custom_unit_amount\": null,\n                        \"livemode\": false,\n                        \"lookup_key\": null,\n                        \"metadata\": {},\n                        \"nickname\": null,\n                        \"product\": \"prod_PJTpN7HCdVqHwz\",\n                        \"recurring\": {\n                            \"aggregate_usage\": null,\n                            \"interval\": \"month\",\n                            \"interval_count\": 1,\n                            \"trial_period_days\": null,\n                            \"usage_type\": \"licensed\"\n                        },\n                        \"tax_behavior\": \"unspecified\",\n                        \"tiers_mode\": null,\n                        \"transform_quantity\": null,\n                        \"type\": \"recurring\",\n                        \"unit_amount\": 1000,\n                        \"unit_amount_decimal\": \"1000\"\n                    },\n                    \"quantity\": 1,\n                    \"subscription\": \"sub_1OUv5fKMiBrigNb6347PSF1j\",\n                    \"tax_rates\": []\n                }\n            ],\n            \"has_more\": false,\n            \"total_count\": 1,\n            \"url\": \"/v1/subscription_items?subscription=sub_1OUv5fKMiBrigNb6347PSF1j\"\n        },\n        \"latest_invoice\": {\n            \"id\": \"in_1OUv5fKMiBrigNb6S8dwKnfe\",\n            \"object\": \"invoice\",\n            \"account_country\": \"DE\",\n            \"account_name\": \"Embloy\",\n            \"account_tax_ids\": null,\n            \"amount_due\": 1000,\n            \"amount_paid\": 1000,\n            \"amount_remaining\": 0,\n            \"amount_shipping\": 0,\n            \"application\": null,\n            \"application_fee_amount\": null,\n            \"attempt_count\": 1,\n            \"attempted\": true,\n            \"auto_advance\": false,\n            \"automatic_tax\": {\n                \"enabled\": false,\n                \"status\": null\n            },\n            \"billing_reason\": \"subscription_create\",\n            \"charge\": {\n                \"id\": \"ch_3OUv5fKMiBrigNb60jrNXZWm\",\n                \"object\": \"charge\",\n                \"amount\": 1000,\n                \"amount_captured\": 1000,\n                \"amount_refunded\": 0,\n                \"application\": null,\n                \"application_fee\": null,\n                \"application_fee_amount\": null,\n                \"balance_transaction\": \"txn_3OUv5fKMiBrigNb60UUS28AM\",\n                \"billing_details\": {\n                    \"address\": {\n                        \"city\": null,\n                        \"country\": \"DE\",\n                        \"line1\": null,\n                        \"line2\": null,\n                        \"postal_code\": null,\n                        \"state\": null\n                    },\n                    \"email\": \"winston.smith@embloy.com\",\n                    \"name\": \"Winstom Smith\",\n                    \"phone\": null\n                },\n                \"calculated_statement_descriptor\": \"GITHUB.COM\",\n                \"captured\": true,\n                \"created\": 1704390744,\n                \"currency\": \"eur\",\n                \"customer\": \"cus_PJVtS7Rf19hX4j\",\n                \"description\": \"Subscription creation\",\n                \"destination\": null,\n                \"dispute\": null,\n                \"disputed\": false,\n                \"failure_balance_transaction\": null,\n                \"failure_code\": null,\n                \"failure_message\": null,\n                \"fraud_details\": {},\n                \"invoice\": \"in_1OUv5fKMiBrigNb6S8dwKnfe\",\n                \"livemode\": false,\n                \"metadata\": {},\n                \"on_behalf_of\": null,\n                \"order\": null,\n                \"outcome\": {\n                    \"network_status\": \"approved_by_network\",\n                    \"reason\": null,\n                    \"risk_level\": \"normal\",\n                    \"risk_score\": 48,\n                    \"seller_message\": \"Payment complete.\",\n                    \"type\": \"authorized\"\n                },\n                \"paid\": true,\n                \"payment_intent\": \"pi_3OUv5fKMiBrigNb60i8VZXMW\",\n                \"payment_method\": \"pm_1OUtY8KMiBrigNb6g5lAmBzg\",\n                \"payment_method_details\": {\n                    \"card\": {\n                        \"amount_authorized\": 1000,\n                        \"brand\": \"visa\",\n                        \"checks\": {\n                            \"address_line1_check\": null,\n                            \"address_postal_code_check\": null,\n                            \"cvc_check\": null\n                        },\n                        \"country\": \"US\",\n                        \"exp_month\": 12,\n                        \"exp_year\": 2034,\n                        \"extended_authorization\": {\n                            \"status\": \"disabled\"\n                        },\n                        \"fingerprint\": \"0hUglDbVMf8GxtPf\",\n                        \"funding\": \"credit\",\n                        \"incremental_authorization\": {\n                            \"status\": \"unavailable\"\n                        },\n                        \"installments\": null,\n                        \"last4\": \"4242\",\n                        \"mandate\": null,\n                        \"multicapture\": {\n                            \"status\": \"unavailable\"\n                        },\n                        \"network\": \"visa\",\n                        \"network_token\": {\n                            \"used\": false\n                        },\n                        \"overcapture\": {\n                            \"maximum_amount_capturable\": 1000,\n                            \"status\": \"unavailable\"\n                        },\n                        \"three_d_secure\": null,\n                        \"wallet\": null\n                    },\n                    \"type\": \"card\"\n                },\n                \"radar_options\": {},\n                \"receipt_email\": null,\n                \"receipt_number\": null,\n                \"receipt_url\": \"https://pay.stripe.com/receipts/invoices/CAcaFwoVYWNjdF8xT1RENzFLTWlCcmlnTmI2KInk26wGMgZY7amWwYY6LBaFkIipb0CcGTn0hP5nY57SQ-0dHJDKoeHpL-xin7REEojJKUyaNsjrOJKp?s=ap\",\n                \"refunded\": false,\n                \"review\": null,\n                \"shipping\": null,\n                \"source\": null,\n                \"source_transfer\": null,\n                \"statement_descriptor\": null,\n                \"statement_descriptor_suffix\": null,\n                \"status\": \"succeeded\",\n                \"transfer_data\": null,\n                \"transfer_group\": null\n            },\n            \"collection_method\": \"charge_automatically\",\n            \"created\": 1704390743,\n            \"currency\": \"eur\",\n            \"custom_fields\": null,\n            \"customer\": \"cus_PJVtS7Rf19hX4j\",\n            \"customer_address\": null,\n            \"customer_email\": \"winston.smith@embloy.com\",\n            \"customer_name\": \"Winston Smith\",\n            \"customer_phone\": null,\n            \"customer_shipping\": null,\n            \"customer_tax_exempt\": \"none\",\n            \"customer_tax_ids\": [],\n            \"default_payment_method\": null,\n            \"default_source\": null,\n            \"default_tax_rates\": [],\n            \"description\": null,\n            \"discount\": null,\n            \"discounts\": [],\n            \"due_date\": null,\n            \"effective_at\": 1704390743,\n            \"ending_balance\": 0,\n            \"footer\": null,\n            \"from_invoice\": null,\n            \"hosted_invoice_url\": \"https://invoice.stripe.com/i/acct_1OTD71KMiBrigNb6/test_YWNjdF8xT1RENzFLTWlCcmlnTmI2LF9QSllDZTU3ejk3eER2QkdENXhJT2ZSUFZESGNzRHh6LDk0OTMxOTc30200g70Dj77T?s=ap\",\n            \"invoice_pdf\": \"https://pay.stripe.com/invoice/acct_1OTD71KMiBrigNb6/test_YWNjdF8xT1RENzFLTWlCcmlnTmI2LF9QSllDZTU3ejk3eER2QkdENXhJT2ZSUFZESGNzRHh6LDk0OTMxOTc30200g70Dj77T/pdf?s=ap\",\n            \"last_finalization_error\": null,\n            \"latest_revision\": null,\n            \"lines\": {\n                \"object\": \"list\",\n                \"data\": [\n                    {\n                        \"id\": \"il_1OUv5fKMiBrigNb6yWapGJe6\",\n                        \"object\": \"line_item\",\n                        \"amount\": 1000,\n                        \"amount_excluding_tax\": 1000,\n                        \"currency\": \"eur\",\n                        \"description\": \"1 × Embloy Premium (at €10.00 / month)\",\n                        \"discount_amounts\": [],\n                        \"discountable\": true,\n                        \"discounts\": [],\n                        \"livemode\": false,\n                        \"metadata\": {},\n                        \"period\": {\n                            \"end\": 1707069143,\n                            \"start\": 1704390743\n                        },\n                        \"plan\": {\n                            \"id\": \"price_1OUqrPKMiBrigNb6lia8VWiD\",\n                            \"object\": \"plan\",\n                            \"active\": true,\n                            \"aggregate_usage\": null,\n                            \"amount\": 1000,\n                            \"amount_decimal\": \"1000\",\n                            \"billing_scheme\": \"per_unit\",\n                            \"created\": 1704374483,\n                            \"currency\": \"eur\",\n                            \"interval\": \"month\",\n                            \"interval_count\": 1,\n                            \"livemode\": false,\n                            \"metadata\": {},\n                            \"nickname\": null,\n                            \"product\": \"prod_PJTpN7HCdVqHwz\",\n                            \"tiers_mode\": null,\n                            \"transform_usage\": null,\n                            \"trial_period_days\": null,\n                            \"usage_type\": \"licensed\"\n                        },\n                        \"price\": {\n                            \"id\": \"price_1OUqrPKMiBrigNb6lia8VWiD\",\n                            \"object\": \"price\",\n                            \"active\": true,\n                            \"billing_scheme\": \"per_unit\",\n                            \"created\": 1704374483,\n                            \"currency\": \"eur\",\n                            \"custom_unit_amount\": null,\n                            \"livemode\": false,\n                            \"lookup_key\": null,\n                            \"metadata\": {},\n                            \"nickname\": null,\n                            \"product\": \"prod_PJTpN7HCdVqHwz\",\n                            \"recurring\": {\n                                \"aggregate_usage\": null,\n                                \"interval\": \"month\",\n                                \"interval_count\": 1,\n                                \"trial_period_days\": null,\n                                \"usage_type\": \"licensed\"\n                            },\n                            \"tax_behavior\": \"unspecified\",\n                            \"tiers_mode\": null,\n                            \"transform_quantity\": null,\n                            \"type\": \"recurring\",\n                            \"unit_amount\": 1000,\n                            \"unit_amount_decimal\": \"1000\"\n                        },\n                        \"proration\": false,\n                        \"proration_details\": {\n                            \"credited_items\": null\n                        },\n                        \"quantity\": 1,\n                        \"subscription\": \"sub_1OUv5fKMiBrigNb6347PSF1j\",\n                        \"subscription_item\": \"si_PJYC4jpWYBlzJ9\",\n                        \"tax_amounts\": [],\n                        \"tax_rates\": [],\n                        \"type\": \"subscription\",\n                        \"unit_amount_excluding_tax\": \"1000\"\n                    }\n                ],\n                \"has_more\": false,\n                \"total_count\": 1,\n                \"url\": \"/v1/invoices/in_1OUv5fKMiBrigNb6S8dwKnfe/lines\"\n            },\n            \"livemode\": false,\n            \"metadata\": {},\n            \"next_payment_attempt\": null,\n            \"number\": \"C5F0B98E-0005\",\n            \"on_behalf_of\": null,\n            \"paid\": true,\n            \"paid_out_of_band\": false,\n            \"payment_intent\": {\n                \"id\": \"pi_3OUv5fKMiBrigNb60i8VZXMW\",\n                \"object\": \"payment_intent\",\n                \"amount\": 1000,\n                \"amount_capturable\": 0,\n                \"amount_details\": {\n                    \"tip\": {}\n                },\n                \"amount_received\": 1000,\n                \"application\": null,\n                \"application_fee_amount\": null,\n                \"automatic_payment_methods\": null,\n                \"canceled_at\": null,\n                \"cancellation_reason\": null,\n                \"capture_method\": \"automatic\",\n                \"client_secret\": \"pi_3OUv5fKMiBrigNb60i8VZXMW_secret_UBYjbIDAdoyHszo4rtzzlUbrw\",\n                \"confirmation_method\": \"automatic\",\n                \"created\": 1704390743,\n                \"currency\": \"eur\",\n                \"customer\": \"cus_PJVtS7Rf19hX4j\",\n                \"description\": \"Subscription creation\",\n                \"invoice\": \"in_1OUv5fKMiBrigNb6S8dwKnfe\",\n                \"last_payment_error\": null,\n                \"latest_charge\": \"ch_3OUv5fKMiBrigNb60jrNXZWm\",\n                \"livemode\": false,\n                \"metadata\": {},\n                \"next_action\": null,\n                \"on_behalf_of\": null,\n                \"payment_method\": \"pm_1OUtY8KMiBrigNb6g5lAmBzg\",\n                \"payment_method_configuration_details\": null,\n                \"payment_method_options\": {\n                    \"card\": {\n                        \"installments\": null,\n                        \"mandate_options\": null,\n                        \"network\": null,\n                        \"request_three_d_secure\": \"automatic\",\n                        \"setup_future_usage\": \"off_session\"\n                    },\n                    \"link\": {\n                        \"persistent_token\": null\n                    },\n                    \"paypal\": {\n                        \"preferred_locale\": null,\n                        \"reference\": null\n                    },\n                    \"sepa_debit\": {}\n                },\n                \"payment_method_types\": [\n                    \"card\",\n                    \"link\",\n                    \"paypal\",\n                    \"sepa_debit\"\n                ],\n                \"processing\": null,\n                \"receipt_email\": null,\n                \"review\": null,\n                \"setup_future_usage\": \"off_session\",\n                \"shipping\": null,\n                \"source\": null,\n                \"statement_descriptor\": null,\n                \"statement_descriptor_suffix\": null,\n                \"status\": \"succeeded\",\n                \"transfer_data\": null,\n                \"transfer_group\": null\n            },\n            \"payment_settings\": {\n                \"default_mandate\": null,\n                \"payment_method_options\": null,\n                \"payment_method_types\": null\n            },\n            \"period_end\": 1704390743,\n            \"period_start\": 1704390743,\n            \"post_payment_credit_notes_amount\": 0,\n            \"pre_payment_credit_notes_amount\": 0,\n            \"quote\": null,\n            \"receipt_number\": null,\n            \"rendering\": null,\n            \"rendering_options\": null,\n            \"shipping_cost\": null,\n            \"shipping_details\": null,\n            \"starting_balance\": 0,\n            \"statement_descriptor\": null,\n            \"status\": \"paid\",\n            \"status_transitions\": {\n                \"finalized_at\": 1704390743,\n                \"marked_uncollectible_at\": null,\n                \"paid_at\": 1704390745,\n                \"voided_at\": null\n            },\n            \"subscription\": \"sub_1OUv5fKMiBrigNb6347PSF1j\",\n            \"subscription_details\": {\n                \"metadata\": {}\n            },\n            \"subtotal\": 1000,\n            \"subtotal_excluding_tax\": 1000,\n            \"tax\": null,\n            \"test_clock\": null,\n            \"total\": 1000,\n            \"total_discount_amounts\": [],\n            \"total_excluding_tax\": 1000,\n            \"total_tax_amounts\": [],\n            \"transfer_data\": null,\n            \"webhooks_delivered_at\": 1704390746\n        },\n        \"livemode\": false,\n        \"metadata\": {},\n        \"next_pending_invoice_item_invoice\": null,\n        \"on_behalf_of\": null,\n        \"pause_collection\": null,\n        \"payment_settings\": {\n            \"payment_method_options\": null,\n            \"payment_method_types\": null,\n            \"save_default_payment_method\": \"off\"\n        },\n        \"pending_invoice_item_interval\": null,\n        \"pending_setup_intent\": null,\n        \"pending_update\": null,\n        \"plan\": {\n            \"id\": \"price_1OUqrPKMiBrigNb6lia8VWiD\",\n            \"object\": \"plan\",\n            \"active\": true,\n            \"aggregate_usage\": null,\n            \"amount\": 1000,\n            \"amount_decimal\": \"1000\",\n            \"billing_scheme\": \"per_unit\",\n            \"created\": 1704374483,\n            \"currency\": \"eur\",\n            \"interval\": \"month\",\n            \"interval_count\": 1,\n            \"livemode\": false,\n            \"metadata\": {},\n            \"nickname\": null,\n            \"product\": \"prod_PJTpN7HCdVqHwz\",\n            \"tiers_mode\": null,\n            \"transform_usage\": null,\n            \"trial_period_days\": null,\n            \"usage_type\": \"licensed\"\n        },\n        \"quantity\": 1,\n        \"schedule\": null,\n        \"start_date\": 1704390743,\n        \"status\": \"active\",\n        \"test_clock\": null,\n        \"transfer_data\": null,\n        \"trial_end\": null,\n        \"trial_settings\": {\n            \"end_behavior\": {\n                \"missing_payment_method\": \"create_invoice\"\n            }\n        },\n        \"trial_start\": null\n    },\n    \"session\": {\n        \"id\": \"cs_test_a1u6BGXQaWe7tqVkcLkScRP1J4dk5fs1AsCWZpETv6hyxQpLKRzgXxsxmP\",\n        \"object\": \"checkout.session\",\n        \"after_expiration\": null,\n        \"allow_promotion_codes\": null,\n        \"amount_subtotal\": 1000,\n        \"amount_total\": 1000,\n        \"automatic_tax\": {\n            \"enabled\": false,\n            \"status\": null\n        },\n        \"billing_address_collection\": null,\n        \"cancel_url\": \"http://localhost:3000/api/v0/checkout/failure?session_id={CHECKOUT_SESSION_ID}\",\n        \"client_reference_id\": null,\n        \"client_secret\": null,\n        \"consent\": null,\n        \"consent_collection\": null,\n        \"created\": 1704390682,\n        \"currency\": \"eur\",\n        \"currency_conversion\": null,\n        \"custom_fields\": [],\n        \"custom_text\": {\n            \"after_submit\": null,\n            \"shipping_address\": null,\n            \"submit\": null,\n            \"terms_of_service_acceptance\": null\n        },\n        \"customer\": \"cus_PJVtS7Rf19hX4j\",\n        \"customer_creation\": null,\n        \"customer_details\": {\n            \"address\": {\n                \"city\": null,\n                \"country\": \"DE\",\n                \"line1\": null,\n                \"line2\": null,\n                \"postal_code\": null,\n                \"state\": null\n            },\n            \"email\": \"winston.smith@embloy.com\",\n            \"name\": \"Winston Smith\",\n            \"phone\": null,\n            \"tax_exempt\": \"none\",\n            \"tax_ids\": []\n        },\n        \"customer_email\": null,\n        \"expires_at\": 1704477082,\n        \"invoice\": \"in_1OUv5fKMiBrigNb6S8dwKnfe\",\n        \"invoice_creation\": null,\n        \"livemode\": false,\n        \"locale\": null,\n        \"metadata\": {},\n        \"mode\": \"subscription\",\n        \"payment_intent\": null,\n        \"payment_link\": null,\n        \"payment_method_collection\": \"always\",\n        \"payment_method_configuration_details\": null,\n        \"payment_method_options\": null,\n        \"payment_method_types\": [\n            \"card\"\n        ],\n        \"payment_status\": \"paid\",\n        \"phone_number_collection\": {\n            \"enabled\": false\n        },\n        \"recovered_from\": null,\n        \"setup_intent\": null,\n        \"shipping_address_collection\": null,\n        \"shipping_cost\": null,\n        \"shipping_details\": null,\n        \"shipping_options\": [],\n        \"status\": \"complete\",\n        \"submit_type\": null,\n        \"subscription\": \"sub_1OUv5fKMiBrigNb6347PSF1j\",\n        \"success_url\": \"http://localhost:3000/api/v0/checkout/subscription/success?session_id={CHECKOUT_SESSION_ID}\",\n        \"total_details\": {\n            \"amount_discount\": 0,\n            \"amount_shipping\": 0,\n            \"amount_tax\": 0\n        },\n        \"ui_mode\": \"hosted\",\n        \"url\": null\n    },\n    \"line_items\": {\n        \"object\": \"list\",\n        \"data\": [\n            {\n                \"id\": \"li_1OUv4gKMiBrigNb65lvnufOh\",\n                \"object\": \"item\",\n                \"amount_discount\": 0,\n                \"amount_subtotal\": 1000,\n                \"amount_tax\": 0,\n                \"amount_total\": 1000,\n                \"currency\": \"eur\",\n                \"description\": \"Embloy Premium\",\n                \"price\": {\n                    \"id\": \"price_1OUqrPKMiBrigNb6lia8VWiD\",\n                    \"object\": \"price\",\n                    \"active\": true,\n                    \"billing_scheme\": \"per_unit\",\n                    \"created\": 1704374483,\n                    \"currency\": \"eur\",\n                    \"custom_unit_amount\": null,\n                    \"livemode\": false,\n                    \"lookup_key\": null,\n                    \"metadata\": {},\n                    \"nickname\": null,\n                    \"product\": \"prod_PJTpN7HCdVqHwz\",\n                    \"recurring\": {\n                        \"aggregate_usage\": null,\n                        \"interval\": \"month\",\n                        \"interval_count\": 1,\n                        \"trial_period_days\": null,\n                        \"usage_type\": \"licensed\"\n                    },\n                    \"tax_behavior\": \"unspecified\",\n                    \"tiers_mode\": null,\n                    \"transform_quantity\": null,\n                    \"type\": \"recurring\",\n                    \"unit_amount\": 1000,\n                    \"unit_amount_decimal\": \"1000\"\n                },\n                \"quantity\": 1\n            }\n        ],\n        \"has_more\": false,\n        \"url\": \"/v1/checkout/sessions/cs_test_a1u6BGXQaWe7tqVkcLkScRP1J4dk5fs1AsCWZpETv6hyxQpLKRzgXxsxmP/line_items\"\n    }\n}"},{"id":"8b46c20d-52fa-48cc-af2e-35eb9bcbcf8c","name":"400 Bad Request","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.embloy.com/api/v0/checkout/subscription/success","host":["https://api.embloy.com"],"path":["api","v0","checkout","subscription","success"],"query":[{"key":"session_id","value":"insert-checkout-session-id","disabled":true}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"Could not determine which URL to request: Stripe::Checkout::Session instance has invalid ID: nil\"\n}"},{"id":"3c7e8d4f-aa94-4088-9709-e22e1c0119a6","name":"400 Bad Request","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.embloy.com/api/v0/checkout/subscription/success?session_id=insert-checkout-session-id","host":["https://api.embloy.com"],"path":["api","v0","checkout","subscription","success"],"query":[{"key":"session_id","value":"insert-checkout-session-id"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"Could not determine which URL to request: Stripe::PaymentIntent instance has invalid ID: nil\"\n}"},{"id":"fff258cf-6bb3-45bb-a93c-a9c5a227769e","name":"401 Unauthorized","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.embloy.com/api/v0/checkout/subscription/success?session_id=insert-checkout-session-id","host":["https://api.embloy.com"],"path":["api","v0","checkout","subscription","success"],"query":[{"key":"session_id","value":"insert-checkout-session-id"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"token\": [\n        {\n            \"error\": \"ERR_INVALID\",\n            \"description\": \"Attribute is invalid or expired\"\n        }\n    ]\n}"}],"_postman_id":"9a3e1762-a038-4267-ba75-cf28899547a5"},{"name":"Failed procedure","id":"de05c66a-7cab-42f4-9edb-03fed03204a3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/checkout/failure?session_id=insert-checkout-session-id","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","checkout","failure"],"host":["https://api.embloy.com"],"query":[{"key":"session_id","value":"insert-checkout-session-id"}],"variable":[]}},"response":[{"id":"ca3300ad-b1a3-4175-81fc-e47a6d4bdefe","name":"401 Unauthorized","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.embloy.com/api/v0/checkout/failure?session_id=","protocol":"https","host":["api","embloy","com"],"path":["api","v0","checkout","failure"],"query":[{"key":"session_id","value":""}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"token\": [\n        {\n            \"error\": \"ERR_INVALID\",\n            \"description\": \"Attribute is invalid or expired\"\n        }\n    ]\n}"}],"_postman_id":"de05c66a-7cab-42f4-9edb-03fed03204a3"},{"name":"Portal session","id":"687fefbc-dd89-4fcc-8e17-30d72a0dacaf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/checkout/portal","description":"<p>Returns a portal session for the customer's stripe dashboard.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","checkout","portal"],"host":["https://api.embloy.com"],"query":[],"variable":[]}},"response":[{"id":"e5db5242-b18d-4895-9fe4-daa6c3f84ba8","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/checkout/portal"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"portal_session\": {\n        \"id\": \"bps_1OYY5CKMiBrigNb6I2axKOQz\",\n        \"object\": \"billing_portal.session\",\n        \"configuration\": \"bpc_1OUyIDKMiBrigNb6UElcAB5n\",\n        \"created\": 1705255614,\n        \"customer\": \"cus_PNIfAp6SlEirfb\",\n        \"flow\": null,\n        \"livemode\": false,\n        \"locale\": null,\n        \"on_behalf_of\": null,\n        \"return_url\": \"https://genius.embloy.com\",\n        \"url\": \"https://billing.stripe.com/p/session/test_YWNjdF8xT1RENzFLTWlCcmlnTmI2LF9QTklnQlc2VFFtM2loRFdPakUybXZqbk82dVozdWNV0100qLX3d8vj\"\n    }\n}"},{"id":"9218c094-3df9-477f-a779-59048d14311d","name":"401 Unauthorized","originalRequest":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/checkout/portal"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"subscription\": [\n        {\n            \"error\": \"ERR_INVALID\",\n            \"description\": \"Attribute is invalid or expired\"\n        }\n    ]\n}"}],"_postman_id":"687fefbc-dd89-4fcc-8e17-30d72a0dacaf"},{"name":"Checkout","id":"19871b4d-01c2-4823-9de1-272ee3d6adfc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://api.embloy.com/api/v0/checkout?tier=enterprise_1&payment_mode=subscription","description":"<p>Creates a checkout session for either a recurring 'subscription' or a one-time 'payment'.</p>\n<p>Returns customer and payment information including stripe url (e.g., \"<a href=\"https://checkout.stripe.com/c/pay/...\">https://checkout.stripe.com/c/pay/...\"</a>)</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","checkout"],"host":["https://api.embloy.com"],"query":[{"description":{"content":"<p>Subscription tier (basic, premium, enterprise_1, enterprise_2, enterprise_3)</p>\n","type":"text/plain"},"key":"tier","value":"enterprise_1"},{"description":{"content":"<p>Payment mode (can either be a recurring 'subscription' or a one-time 'payment')</p>\n","type":"text/plain"},"key":"payment_mode","value":"subscription"},{"disabled":true,"description":{"content":"<p>Add the payment method via the API and mark it as the default for future payments</p>\n","type":"text/plain"},"key":"payment_method_token","value":""}],"variable":[]}},"response":[{"id":"0b92552c-6b8b-441d-a55e-da2a37153ac2","name":"200 OK","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://api.embloy.com/api/v0/checkout?tier=basic&payment_mode=subscription&origin=core","host":["https://api.embloy.com"],"path":["api","v0","checkout"],"query":[{"key":"tier","value":"basic","description":"Subscription tier (basic, premium, enterprise_1, enterprise_2, enterprise_3)"},{"key":"payment_mode","value":"subscription","description":"Payment mode (can either be a recurring 'subscription' or a one-time 'payment')"},{"key":"origin","value":"core","description":"The Embloy service that the request is sent from. (Either 'core' or 'genius'). Otherwise the defualt fallback URL is used."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"cs_test_a147VVz9czrVJ7yS1XDFP0H0ZpYvjvGorBUCznrTc2MpWLxaTGu6f7HKvM\",\n    \"object\": \"checkout.session\",\n    \"after_expiration\": null,\n    \"allow_promotion_codes\": null,\n    \"amount_subtotal\": 1000,\n    \"amount_total\": 1000,\n    \"automatic_tax\": {\n        \"enabled\": false,\n        \"status\": null\n    },\n    \"billing_address_collection\": null,\n    \"cancel_url\": \"http://localhost:3000/api/v0/checkout/failure?session_id={CHECKOUT_SESSION_ID}\",\n    \"client_reference_id\": null,\n    \"client_secret\": null,\n    \"consent\": null,\n    \"consent_collection\": null,\n    \"created\": 1704391158,\n    \"currency\": \"eur\",\n    \"currency_conversion\": null,\n    \"custom_fields\": [],\n    \"custom_text\": {\n        \"after_submit\": null,\n        \"shipping_address\": null,\n        \"submit\": null,\n        \"terms_of_service_acceptance\": null\n    },\n    \"customer\": \"cus_PJVtS7Rf19hX4j\",\n    \"customer_creation\": null,\n    \"customer_details\": {\n        \"address\": null,\n        \"email\": \"winston.smith@embloy.com\",\n        \"name\": null,\n        \"phone\": null,\n        \"tax_exempt\": \"none\",\n        \"tax_ids\": null\n    },\n    \"customer_email\": null,\n    \"expires_at\": 1704477558,\n    \"invoice\": null,\n    \"invoice_creation\": null,\n    \"livemode\": false,\n    \"locale\": null,\n    \"metadata\": {},\n    \"mode\": \"subscription\",\n    \"payment_intent\": null,\n    \"payment_link\": null,\n    \"payment_method_collection\": \"always\",\n    \"payment_method_configuration_details\": null,\n    \"payment_method_options\": null,\n    \"payment_method_types\": [\n        \"card\"\n    ],\n    \"payment_status\": \"unpaid\",\n    \"phone_number_collection\": {\n        \"enabled\": false\n    },\n    \"recovered_from\": null,\n    \"setup_intent\": null,\n    \"shipping_address_collection\": null,\n    \"shipping_cost\": null,\n    \"shipping_details\": null,\n    \"shipping_options\": [],\n    \"status\": \"open\",\n    \"submit_type\": null,\n    \"subscription\": null,\n    \"success_url\": \"http://localhost:3000/api/v0/checkout/subscription/success?session_id={CHECKOUT_SESSION_ID}\",\n    \"total_details\": {\n        \"amount_discount\": 0,\n        \"amount_shipping\": 0,\n        \"amount_tax\": 0\n    },\n    \"ui_mode\": \"hosted\",\n    \"url\": \"https://checkout.stripe.com/c/pay/cs_test_a147VVz9czrVJ7yS1XDFP0H0ZpYvjvGorBUCznrTc2MpWLxaTGu6f7HKvM#fidkdWxOYHwnPyd1blpxYHZxWjA0SlFBMjROSGxHd2xiS2czV251QDFzcUBkVV9oZjM3b3VrM25AQjZtd2JWZzU3dz1mbjJgV0RuUHdDXEtEcndObEZqbHN8MjBhd101SG9MV2hmbUZUb3FwNTVCTUQwdnxGPScpJ2N3amhWYHdzYHcnP3F3cGApJ2lkfGpwcVF8dWAnPyd2bGtiaWBabHFgaCcpJ2BrZGdpYFVpZGZgbWppYWB3dic%2FcXdwYHgl\"\n}"},{"id":"3ff26a2c-0f96-4b4a-9312-44c1f55149a5","name":"400 Bad Request","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://api.embloy.com/api/v0/checkout?tier=basic&payment_mode=test","host":["https://api.embloy.com"],"path":["api","v0","checkout"],"query":[{"key":"tier","value":"basic","description":"Subscription tier (basic, premium, enterprise_1, enterprise_2, enterprise_3)"},{"key":"payment_mode","value":"test","description":"Payment mode (can either be a recurring 'subscription' or a one-time 'payment')"},{"key":"payment_method_token","value":"","description":"Add the payment method via the API and mark it as the default for future payments","disabled":true}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"Invalid mode: must be one of payment, setup, or subscription\"\n}"},{"id":"f096b427-257f-463f-9951-80f58614a836","name":"400 Bad Request","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://api.embloy.com/api/v0/checkout?tier=basic&payment_mode=test","host":["https://api.embloy.com"],"path":["api","v0","checkout"],"query":[{"key":"tier","value":"basic","description":"Subscription tier (basic, premium, enterprise_1, enterprise_2, enterprise_3)"},{"key":"payment_mode","value":"test","description":"Payment mode (can either be a recurring 'subscription' or a one-time 'payment')"},{"key":"payment_method_token","value":"","description":"Add the payment method via the API and mark it as the default for future payments","disabled":true}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"Invalid tier: must be one of basic, premium, enterprise_1, enterprise_2 or enterprise_3\"\n}"},{"id":"cd28beb3-42b4-470d-9135-a34a9f8c1457","name":"400 Bad Request","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://api.embloy.com/api/v0/checkout","host":["https://api.embloy.com"],"path":["api","v0","checkout"],"query":[{"key":"tier","value":"price_1OUhNDKMiBrigNb67roRCr5S","description":"Subscription tier (basic, premium, enterprise_1, enterprise_2, enterprise_3)","disabled":true},{"key":"payment_mode","value":"payment","description":"Payment mode (can either be a recurring 'subscription' or a one-time 'payment')","disabled":true},{"key":"payment_method_token","value":"","description":"Add the payment method via the API and mark it as the default for future payments","disabled":true}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"You must pass either `subscription_data` or `tier` or `mode`.\"\n}"},{"id":"ea8d6c3e-bc29-4a1b-84fd-aafd41c0e9e6","name":"400 Bad Request","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://api.embloy.com/api/v0/checkout?tier=basic&payment_mode=subscription","host":["https://api.embloy.com"],"path":["api","v0","checkout"],"query":[{"key":"tier","value":"basic","description":"Subscription tier (basic, premium, enterprise_1, enterprise_2, enterprise_3)"},{"key":"payment_mode","value":"subscription","description":"Payment mode (can either be a recurring 'subscription' or a one-time 'payment')"},{"key":"payment_method_token","value":"","description":"Add the payment method via the API and mark it as the default for future payments","disabled":true}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"You specified `payment` mode but passed a recurring price. Either switch to `subscription` mode or use only one-time prices.\"\n}"}],"_postman_id":"19871b4d-01c2-4823-9de1-272ee3d6adfc"}],"id":"d0c134ac-7cec-44eb-8bd2-a145844d26ef","description":"<p>All requests related to processing a client's payment and setting up a client's individual subscription using Stripe.</p>\n","_postman_id":"d0c134ac-7cec-44eb-8bd2-a145844d26ef","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}}},{"name":"Genius","item":[{"name":"Create genius query","id":"a9d49a6e-249b-446c-8ab5-336f751aff5e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"https://api.embloy.com/api/v0/resource?job_id=insert-your-job-id&exp=Wed Sep 23 2026 19:10:25 GMT+0000 (Coordinated Universal Time)&qr=1","description":"<p>Genius-Queries act as a method to access a specific resource from external services and pages for a limited amount of time by using unique link that can be used to access a single resource.</p>\n<p>To create such a query, only a <code>job_id</code>or <code>user_id</code> (and optionally a `expires_as` field) are necessary.</p>\n<p>The default validity of a Genius-Query is one day.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","resource"],"host":["https://api.embloy.com"],"query":[{"description":{"content":"<p>ID of a job owned by the current user</p>\n","type":"text/plain"},"key":"job_id","value":"insert-your-job-id"},{"disabled":true,"description":{"content":"<p>Optional ID of a user profile</p>\n","type":"text/plain"},"key":"user_id","value":"1"},{"description":{"content":"<p>Optional expiration date for the link. The default value is 1 day, and can be customized to a value between 1 minute and 1 year.</p>\n","type":"text/plain"},"key":"exp","value":"Fri Aug 14 2026 18:58:05 GMT+0000 (Coordinated Universal Time)"},{"description":{"content":"<p>Optional flag for QR Code generation</p>\n","type":"text/plain"},"key":"qr","value":"1"}],"variable":[]}},"response":[{"id":"a88c32e7-8e80-44d4-aa6e-1d81c7de8588","name":"200 OK","originalRequest":{"method":"POST","header":[],"url":"https://api.embloy.com/api/v0/resource"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"query_token\": \"eyJhbGciOiJIUzI1NiJ9°eyJzdWIiOjEsImV4cCI6MTcwNzg1ODM1OSwianRpIjoiYWVmZDAyZWJjNzA3ZDk2MDAzY2IwNGQ3YmM3Y2UwZjkiLCJpYXQiOjE3MDc4NTQ3NTksImlzcyI6ImFwaS5lbWJsb3kuY29tIn0°jVOy6EYn6RQvA3w9XqTJSIR8f5Gf-oPbGqjnBeK_8cc\"\n}"},{"id":"77f894dc-d907-40aa-a085-8959a76c8ec8","name":"400 Bad Request","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://api.embloy.com/api/v0/resource?job_id=insert-your-job-id&expires_at=Thu Jun 18 2026 22:39:54 GMT+0000 (Coordinated Universal Time)","host":["https://api.embloy.com"],"path":["api","v0","resource"],"query":[{"key":"job_id","value":"insert-your-job-id","description":"Option ID of a job owned by the current user"},{"key":"user_id","value":"1","description":"Optional ID of a user profile","disabled":true},{"key":"expires_at","value":"Sat Jul 11 2026 21:02:33 GMT+0000 (Coordinated Universal Time)","description":"Optional expiration date for the link. The default value is 1 day, and can be customized to a value between 1 minute and 1 year."}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"validity\": [\n        {\n            \"error\": \"ERR_INVALID\",\n            \"description\": \"Attribute is malformed or unknown\"\n        }\n    ]\n}"},{"id":"da96d03a-9fe3-434e-a902-07bc9082ce5a","name":"404 Not Found","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://api.embloy.com/api/v0/resource?job_id=insert-your-job-id&expires_at=Tue May 11 2027 14:12:27 GMT+0000 (Coordinated Universal Time)","host":["https://api.embloy.com"],"path":["api","v0","resource"],"query":[{"key":"job_id","value":"insert-your-job-id","description":"Option ID of a job owned by the current user"},{"key":"user_id","value":"1","description":"Optional ID of a user profile","disabled":true},{"key":"expires_at","value":"Sat Jan 09 2027 21:33:56 GMT+0000 (Coordinated Universal Time)","description":"Optional expiration date for the link. The default value is 1 day, and can be customized to a value between 1 minute and 1 year."}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"job\": [\n        {\n            \"error\": \"ERR_INVALID\",\n            \"description\": \"Attribute can not be retrieved\"\n        }\n    ]\n}"}],"_postman_id":"a9d49a6e-249b-446c-8ab5-336f751aff5e"},{"name":"Genius queries","id":"13592ddf-e3b3-4911-9e77-fc0be16d4388","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/resource/{{genius_query}}","description":"<p>Returns a specific resourced depending on the payload of the resource specified in the Genius-Query.</p>\n","urlObject":{"path":["api","v0","resource","{{genius_query}}"],"host":["https://api.embloy.com"],"query":[],"variable":[]}},"response":[{"id":"86fdaf32-5381-4940-a285-f15a2b272e67","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/resource/{{genius_query}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"0"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Permitted-Cross-Domain-Policies","value":"none"},{"key":"Referrer-Policy","value":"strict-origin-when-cross-origin"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"ETag","value":"W/\"3ffb9bd472bb59ade696ff24d3618d4b\""},{"key":"Cache-Control","value":"max-age=0, private, must-revalidate"},{"key":"X-Request-Id","value":"b2cdcfa9-d434-429a-a60e-54d4aec8f407"},{"key":"X-Runtime","value":"1.330632"},{"key":"Server-Timing","value":"cache_read.active_support;dur=0.20, cache_write.active_support;dur=0.09, start_processing.action_controller;dur=0.59, sql.active_record;dur=551.97, instantiation.active_record;dur=115.30, service_url.active_storage;dur=1.92, process_action.action_controller;dur=787.17"},{"key":"vary","value":"Origin"},{"key":"Content-Length","value":"5116"}],"cookie":[],"responseTime":null,"body":"{\n    \"job\": {\n        \"id\": 2,\n        \"title\": \"Organic coffee shop looking for a barista\",\n        \"position\": \"Barista\",\n        \"key_skills\": \"Barista, Coffee, Customer Service\",\n        \"job_type\": \"Food\",\n        \"job_slug\": \"25339723-818c-4a59-81cf-d01f6b2e56ca\",\n        \"job_status\": \"listed\",\n        \"activity_status\": 1,\n        \"referrer_url\": \"https://embloy.com/\",\n        \"salary\": 18,\n        \"currency\": \"USD\",\n        \"euro_salary\": null,\n        \"start_slot\": \"2042-10-02T20:42:42.356Z\",\n        \"duration\": 20,\n        \"code_lang\": null,\n        \"longitude\": 11.613942994844358,\n        \"latitude\": 48.1951076,\n        \"country_code\": null,\n        \"postal_code\": null,\n        \"city\": null,\n        \"address\": null,\n        \"view_count\": 0,\n        \"applications_count\": 0,\n        \"created_at\": \"2024-11-15T16:02:50.597Z\",\n        \"updated_at\": \"2024-11-15T16:02:51.371Z\",\n        \"image_url\": null,\n        \"description\": {\n            \"id\": 5,\n            \"name\": \"description\",\n            \"body\": \"<div>Work in the greatest espresso bar in town and make making others happy your paid job!</div>\",\n            \"record_type\": \"Job\",\n            \"record_id\": 2,\n            \"created_at\": \"2024-11-15T15:20:36.306Z\",\n            \"updated_at\": \"2024-11-15T15:20:36.306Z\"\n        },\n        \"employer\": {\n            \"employer_email\": \"info@embloy.com\",\n            \"employer_name\": \"Embloy Platforms\",\n            \"employer_phone\": \"004912345678910\",\n            \"employer_image_url\": \"http://localhost:3000/rails/active_storage/disk/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaDdDVG9JYTJWNVNTSWhNblZqT0dGb2JqaG5lVE5qYVhobGFXZDBPR3A1YkRRMGEySmhkUVk2QmtWVU9oQmthWE53YjNOcGRHbHZia2tpUjJsdWJHbHVaVHNnWm1sc1pXNWhiV1U5SW14dloyOHRiR2xuYUhRdWNHNW5JanNnWm1sc1pXNWhiV1VxUFZWVVJpMDRKeWRzYjJkdkxXeHBaMmgwTG5CdVp3WTdCbFE2RVdOdmJuUmxiblJmZEhsd1pVa2lEbWx0WVdkbEwzQnVad1k3QmxRNkVYTmxjblpwWTJWZmJtRnRaVG9LYkc5allXdz0iLCJleHAiOiIyMDI0LTExLTE1VDE2OjM5OjQ3LjYyOFoiLCJwdXIiOiJibG9iX2tleSJ9fQ==--d69558a6c8060199e26bb02fbd4f74f28b8f55cd/logo-light.png\"\n        },\n        \"application_options\": [\n            {\n                \"id\": 1,\n                \"job_id\": 2,\n                \"ext_id\": \"embloy__ab53adff-e7d7-47e3-be24-9a6c80ffe446\",\n                \"question\": \"Did you ever work as a barista?\",\n                \"question_type\": \"yes_no\",\n                \"required\": true,\n                \"options\": [],\n                \"created_at\": \"2024-11-15T15:20:35.554Z\",\n                \"updated_at\": \"2024-11-15T15:20:35.554Z\",\n                \"deleted_at\": null\n            },\n            {\n                \"id\": 2,\n                \"job_id\": 2,\n                \"ext_id\": \"embloy__03df6ef9-b589-4aaf-b1be-a41eeae4ae3a\",\n                \"question\": \"If yes, where and for how long?\",\n                \"question_type\": \"long_text\",\n                \"required\": false,\n                \"options\": [],\n                \"created_at\": \"2024-11-15T15:20:35.610Z\",\n                \"updated_at\": \"2024-11-15T15:20:35.610Z\",\n                \"deleted_at\": null\n            },\n            {\n                \"id\": 3,\n                \"job_id\": 2,\n                \"ext_id\": \"embloy__f8e869c6-2f77-4c65-accf-3d00554d1257\",\n                \"question\": \"What is your favorite coffee?\",\n                \"question_type\": \"short_text\",\n                \"required\": true,\n                \"options\": [],\n                \"created_at\": \"2024-11-15T15:20:35.668Z\",\n                \"updated_at\": \"2024-11-15T15:20:35.668Z\",\n                \"deleted_at\": null\n            },\n            {\n                \"id\": 4,\n                \"job_id\": 2,\n                \"ext_id\": \"embloy__1772d194-552e-43bd-95da-e51b9edbc092\",\n                \"question\": \"How many cups of coffee do you drink per day?\",\n                \"question_type\": \"number\",\n                \"required\": true,\n                \"options\": [],\n                \"created_at\": \"2024-11-15T15:20:35.724Z\",\n                \"updated_at\": \"2024-11-15T15:20:35.724Z\",\n                \"deleted_at\": null\n            },\n            {\n                \"id\": 5,\n                \"job_id\": 2,\n                \"ext_id\": \"embloy__1a0f4293-3a10-436b-84f7-fc03930825a5\",\n                \"question\": \"What is the most important thing when preparing coffee?\",\n                \"question_type\": \"long_text\",\n                \"required\": true,\n                \"options\": [],\n                \"created_at\": \"2024-11-15T15:20:35.784Z\",\n                \"updated_at\": \"2024-11-15T15:20:35.784Z\",\n                \"deleted_at\": null\n            },\n            {\n                \"id\": 6,\n                \"job_id\": 2,\n                \"ext_id\": \"embloy__7dbca07e-1672-4cb7-9b1a-ca6f31da8d00\",\n                \"question\": \"When did you last prepare coffee?\",\n                \"question_type\": \"date\",\n                \"required\": false,\n                \"options\": [],\n                \"created_at\": \"2024-11-15T15:20:35.840Z\",\n                \"updated_at\": \"2024-11-15T15:20:35.840Z\",\n                \"deleted_at\": null\n            },\n            {\n                \"id\": 7,\n                \"job_id\": 2,\n                \"ext_id\": \"embloy__0d00738a-82b7-42b5-82c6-17d631ff8f09\",\n                \"question\": \"Provide a link to a video of you preparing coffee.\",\n                \"question_type\": \"link\",\n                \"required\": false,\n                \"options\": [],\n                \"created_at\": \"2024-11-15T15:20:35.892Z\",\n                \"updated_at\": \"2024-11-15T15:20:35.892Z\",\n                \"deleted_at\": null\n            },\n            {\n                \"id\": 8,\n                \"job_id\": 2,\n                \"ext_id\": \"embloy__aee562a1-5809-4002-be0f-002ec8023528\",\n                \"question\": \"Should Capuccino be served after 11am?\",\n                \"question_type\": \"multiple_choice\",\n                \"required\": true,\n                \"options\": [\n                    \"No way, it should be illegal\",\n                    \"Yes, but for italians it should remain a crime\",\n                    \"Yes, it's a free world\",\n                    \"Is it 11am already?\"\n                ],\n                \"created_at\": \"2024-11-15T15:20:35.945Z\",\n                \"updated_at\": \"2024-11-15T15:20:35.945Z\",\n                \"deleted_at\": null\n            },\n            {\n                \"id\": 9,\n                \"job_id\": 2,\n                \"ext_id\": \"embloy__43d3671d-a254-4cca-956b-86bc7f60a281\",\n                \"question\": \"Are you addicted to coffee?\",\n                \"question_type\": \"single_choice\",\n                \"required\": true,\n                \"options\": [\n                    \"Yes\",\n                    \"No\",\n                    \"Maybe...\",\n                    \"I can neither confirm nor deny.\"\n                ],\n                \"created_at\": \"2024-11-15T15:20:36.046Z\",\n                \"updated_at\": \"2024-11-15T15:20:36.046Z\",\n                \"deleted_at\": null\n            },\n            {\n                \"id\": 10,\n                \"job_id\": 2,\n                \"ext_id\": \"embloy__98f02371-ae26-49fe-ba58-8ba95e468211\",\n                \"question\": \"Upload your CV\",\n                \"question_type\": \"file\",\n                \"required\": false,\n                \"options\": [\n                    \"pdf\"\n                ],\n                \"created_at\": \"2024-11-15T15:20:36.110Z\",\n                \"updated_at\": \"2024-11-15T15:20:36.110Z\",\n                \"deleted_at\": null\n            },\n            {\n                \"id\": 11,\n                \"job_id\": 2,\n                \"ext_id\": \"embloy__9957ca0a-f3a0-4199-b2de-dc07376153f9\",\n                \"question\": \"Upload an image of a perfect Espresso\",\n                \"question_type\": \"file\",\n                \"required\": false,\n                \"options\": [\n                    \"svg\",\n                    \"png\",\n                    \"jpeg\",\n                    \"jpg\"\n                ],\n                \"created_at\": \"2024-11-15T15:20:36.176Z\",\n                \"updated_at\": \"2024-11-15T15:20:36.176Z\",\n                \"deleted_at\": null\n            },\n            {\n                \"id\": 12,\n                \"job_id\": 2,\n                \"ext_id\": \"embloy__eea0876f-5e2b-49b6-bb6c-3d77470b3fd9\",\n                \"question\": \"Upload a video of you preparing coffee\",\n                \"question_type\": \"file\",\n                \"required\": false,\n                \"options\": [\n                    \"mp4\",\n                    \"avi\",\n                    \"mov\"\n                ],\n                \"created_at\": \"2024-11-15T15:20:36.229Z\",\n                \"updated_at\": \"2024-11-15T15:20:36.229Z\",\n                \"deleted_at\": null\n            }\n        ]\n    }\n}"},{"id":"136f7641-0ebc-4f21-85fe-71f49b1889f3","name":"400 Bad Request","originalRequest":{"method":"GET","header":[],"url":"https://api.embloy.com/api/v0/resource/123"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"genius_query\": [\n        {\n            \"error\": \"ERR_INVALID\",\n            \"description\": \"Attribute is malformed or unknown\"\n        }\n    ]\n}"}],"_postman_id":"13592ddf-e3b3-4911-9e77-fc0be16d4388"},{"name":"Store","id":"047a12c7-9ccb-4a75-a3a6-7fc575e5c902","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api2.embloy.com/api/v0/store","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","store"],"host":["https://api2.embloy.com"],"query":[],"variable":[]}},"response":[{"id":"1dc17a59-058f-4e10-a292-f473211b91cf","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"https://api2.embloy.com/api/v0/store"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"product_id\": 1,\n        \"product_name\": \"basic\",\n        \"product_image_url\": \"/img/smart.svg\",\n        \"description\": {\n            \"features\": [\n                {\n                    \"icon_url\": \"universal.svg\",\n                    \"Universal Application Gateway\": \"The \\\"Apply with Embloy\\\" option allows jobseekers to apply with one click. Boost your accessibility and lower the barrier to apply.\"\n                },\n                {\n                    \"icon_url\": \"line.svg\",\n                    \"Fully integratable\": \"Continue to use your familiar HR-tools and manage Embloy applications as if they were submitted through traditional channels.\"\n                }\n            ],\n            \"short_text\": \"Full access to Embloy's Universal Application Gateway.\"\n        },\n        \"price\": \"100.00\",\n        \"is_subscription\": true,\n        \"unique_for\": null,\n        \"unique_identifier\": \"f84d5484-9ccb-4f45-ae0a-5eb180874b69\",\n        \"subscription_type\": \"cpa\",\n        \"subscription_options\": [\n            {\n                \"type\": \"monthly\",\n                \"unit\": \"days\",\n                \"price\": \"50\",\n                \"currency\": \"EUR\",\n                \"duration\": \"30\"\n            }\n        ],\n        \"duration\": 30\n    }\n]"}],"_postman_id":"047a12c7-9ccb-4a75-a3a6-7fc575e5c902"},{"name":"Open positions","id":"2f6e3c6e-5ae6-4659-82ec-f62c0254de9d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[],"url":"https://api2.embloy.com/api/v0/handler?job_slug=test123","description":"<p>This is a test endpoint used to handle job applications for open positions at Embloy which are submitted via <a href=\"https://genius.embloy.com\">genius.embloy.com</a>.</p>\n","urlObject":{"protocol":"https","path":["api","v0","handler"],"host":["api2","embloy","com"],"query":[{"key":"job_slug","value":"test123"}],"variable":[]}},"response":[{"id":"c26cc447-e8a6-4cf9-aa7b-251e9d378bea","name":"200 OK","originalRequest":{"method":"POST","header":[],"url":{"raw":"https://api2.embloy.com/api/v0/handler?job_slug=test123","protocol":"https","host":["api2","embloy","com"],"path":["api","v0","handler"],"query":[{"key":"job_slug","value":"test123"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"url\": \"https://embloy.com/sdk/apply?request_token=...\"\n}"}],"_postman_id":"2f6e3c6e-5ae6-4659-82ec-f62c0254de9d"}],"id":"567634cc-a468-46ad-a978-2fccbbc3aeca","description":"<p>All requests currently supported by the Genius-API.</p>\n<p>// TODO</p>\n","_postman_id":"567634cc-a468-46ad-a978-2fccbbc3aeca","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}}},{"name":"[DEPRECATED]","item":[{"name":"[DEPRECATED] /client/subscriptions/{id}","id":"08a40191-8715-49da-8ee6-66209dcd7dfc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"access_token","value":"insert-access-token","type":"text","description":"<p>A valid access_token is needed to authenticate and authorize the current user. For further information see: <a href=\"https://documenter.getpostman.com/view/24977803/2s9YRB2rkE#e29e5a54-533b-413a-9e04-b608cc4acd68\">access_token endpoint</a></p>\n"}],"url":"https://api.embloy.com/api/v0/client/subscriptions/{{subscription_id}}","description":"<p>This endpoint is responsible for creating a <strong><code>request_token</code></strong>. for a specific job and client with a validity of 30 minutes. It uses the decoded <strong><code>client_token</code></strong>'s subject (sub) and a specific identifier (\"job#1\") to generate the token. The generated request token is then returned in the response which can be used as authentication for further requests to the core-API.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","client","subscriptions","{{subscription_id}}"],"host":["https://api.embloy.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"08a40191-8715-49da-8ee6-66209dcd7dfc"},{"name":"[DEPRECATED] /client/subscriptions","id":"3373ae62-eead-478c-b304-3c2431c557b0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"access_token","value":"insert-access-token","type":"text","description":"<p>A valid access_token is needed to authenticate and authorize the current user. For further information see: <a href=\"https://documenter.getpostman.com/view/24977803/2s9YRB2rkE#e29e5a54-533b-413a-9e04-b608cc4acd68\">access_token endpoint</a></p>\n"}],"body":{"mode":"raw","raw":"{\n  \"subscription\": {\n    \"tier\": \"basic\",\n    \"active\": true,\n    \"expiration_date\": \"2023-12-31T23:59:59Z\",\n    \"start_date\": \"2022-01-01T00:00:00Z\",\n    \"auto_renew\": true,\n    \"renew_date\": \"2023-06-30T23:59:59Z\"\n  }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.embloy.com/api/v0/client/subscriptions","description":"<p>This endpoint is responsible for creating a <strong><code>request_token</code></strong>. for a specific job and client with a validity of 30 minutes. It uses the decoded <strong><code>client_token</code></strong>'s subject (sub) and a specific identifier (\"job#1\") to generate the token. The generated request token is then returned in the response which can be used as authentication for further requests to the core-API.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","client","subscriptions"],"host":["https://api.embloy.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"3373ae62-eead-478c-b304-3c2431c557b0"},{"name":"[DEPRECATED] /client/subscriptions/{id}/activate","id":"ef77fd27-5b5e-4765-91af-7aa1bced4334","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"access_token","value":"insert-access-token","type":"text","description":"<p>A valid access_token is needed to authenticate and authorize the current user. For further information see: <a href=\"https://documenter.getpostman.com/view/24977803/2s9YRB2rkE#e29e5a54-533b-413a-9e04-b608cc4acd68\">access_token endpoint</a></p>\n"}],"url":"https://api.embloy.com/api/v0/client/subscriptions/{{subscription_id}}/activate","description":"<p>This endpoint is responsible for creating a <strong><code>request_token</code></strong>. for a specific job and client with a validity of 30 minutes. It uses the decoded <strong><code>client_token</code></strong>'s subject (sub) and a specific identifier (\"job#1\") to generate the token. The generated request token is then returned in the response which can be used as authentication for further requests to the core-API.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","client","subscriptions","{{subscription_id}}","activate"],"host":["https://api.embloy.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"ef77fd27-5b5e-4765-91af-7aa1bced4334"},{"name":"[DEPRECATED] /client/subscriptions/{id}/renew","id":"6c0d7fa1-9943-4d92-9f04-74553fac093f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"access_token","value":"insert-access-token","type":"text","description":"<p>A valid access_token is needed to authenticate and authorize the current user. For further information see: <a href=\"https://documenter.getpostman.com/view/24977803/2s9YRB2rkE#e29e5a54-533b-413a-9e04-b608cc4acd68\">access_token endpoint</a></p>\n"}],"url":"https://api.embloy.com/api/v0/client/subscriptions/{{subscription_id}}/renew","description":"<p>This endpoint is responsible for creating a <strong><code>request_token</code></strong>. for a specific job and client with a validity of 30 minutes. It uses the decoded <strong><code>client_token</code></strong>'s subject (sub) and a specific identifier (\"job#1\") to generate the token. The generated request token is then returned in the response which can be used as authentication for further requests to the core-API.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","client","subscriptions","{{subscription_id}}","renew"],"host":["https://api.embloy.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"6c0d7fa1-9943-4d92-9f04-74553fac093f"},{"name":"[DEPRECATED] /client/subscriptions/{id}/cancel","id":"ffaac945-cf10-46a8-b0af-62e4df0c58a8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"access_token","value":"insert-access-token","type":"text","description":"<p>A valid access_token is needed to authenticate and authorize the current user. For further information see: <a href=\"https://documenter.getpostman.com/view/24977803/2s9YRB2rkE#e29e5a54-533b-413a-9e04-b608cc4acd68\">access_token endpoint</a></p>\n"}],"url":"https://api.embloy.com/api/v0/client/subscriptions/{{subscription_id}}/cancel","description":"<p>This endpoint is responsible for creating a <strong><code>request_token</code></strong>. for a specific job and client with a validity of 30 minutes. It uses the decoded <strong><code>client_token</code></strong>'s subject (sub) and a specific identifier (\"job#1\") to generate the token. The generated request token is then returned in the response which can be used as authentication for further requests to the core-API.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","client","subscriptions","{{subscription_id}}","cancel"],"host":["https://api.embloy.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"ffaac945-cf10-46a8-b0af-62e4df0c58a8"},{"name":"[DEPRECATED] /client/subscriptions/{id}","id":"e08c7416-3109-4c03-ad0b-633fe5ba3d3f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"access_token","value":"insert-access-token","type":"text","description":"<p>A valid access_token is needed to authenticate and authorize the current user. For further information see: <a href=\"https://documenter.getpostman.com/view/24977803/2s9YRB2rkE#e29e5a54-533b-413a-9e04-b608cc4acd68\">access_token endpoint</a></p>\n"}],"url":"https://api.embloy.com/api/v0/client/subscriptions/{{subscription_id}}","description":"<p>This endpoint is responsible for creating a <strong><code>request_token</code></strong>. for a specific job and client with a validity of 30 minutes. It uses the decoded <strong><code>client_token</code></strong>'s subject (sub) and a specific identifier (\"job#1\") to generate the token. The generated request token is then returned in the response which can be used as authentication for further requests to the core-API.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","client","subscriptions","{{subscription_id}}"],"host":["https://api.embloy.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"e08c7416-3109-4c03-ad0b-633fe5ba3d3f"},{"name":"[DEPRECATED] Create Stripe-Payment","id":"10e3cf9f-1215-4758-b77c-9762127bb184","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"id\": \"evt_1Gt5S2G882ZvajlDltn5772M\",\n  \"object\": \"event\",\n  \"api_version\": \"2020-03-02\",\n  \"created\": 1583786470,\n  \"data\": {\n    \"object\": {\n      \"id\": \"pi_1Gt5S2G882ZvajlDltn5772M\",\n      \"object\": \"payment_intent\",\n      \"amount\": 2000,\n      \"currency\": \"usd\",\n      \"status\": \"succeeded\"\n    }\n  },\n  \"livemode\": false,\n  \"type\": \"payment_intent.succeeded\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.embloy.com/api/v0/stripe_webhook","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","stripe_webhook"],"host":["https://api.embloy.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"10e3cf9f-1215-4758-b77c-9762127bb184"},{"name":"[DEPRECATED] Notify Stripe-Webhook","id":"990448a6-1704-4891-95ed-96c1d0cadf1c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"access_token","value":"insert-access-token","description":"<p>A valid access_token is needed to authenticate and authorize the current user. For further information see: <a href=\"https://documenter.getpostman.com/view/24977803/2s9YRB2rkE#e29e5a54-533b-413a-9e04-b608cc4acd68\">access_token endpoint</a></p>\n","type":"text"}],"url":"https://api.embloy.com/api/v0/payments","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}},"urlObject":{"path":["api","v0","payments"],"host":["https://api.embloy.com"],"query":[],"variable":[]}},"response":[],"_postman_id":"990448a6-1704-4891-95ed-96c1d0cadf1c"}],"id":"f548f0f8-eb62-4855-9d29-a72dedcefe8d","_postman_id":"f548f0f8-eb62-4855-9d29-a72dedcefe8d","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}}},{"name":"Webhooks","item":[{"name":"Handle incoming hook","id":"f88d7d9f-bdd7-4ce0-a04e-37d25d1d1357","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"triggeredAt\": 1431454330072,\n    \"event\": \"candidateHired\",\n    \"data\": {\n        \"candidateId\": \"38c1c3de-5ed6-4b0d-a052-dd3b2e3dfd12\",\n        \"contactId\": \"0ebcac3f-a57c-4b79-81da-bad2ac4324b5\",\n        \"opportunityId\": \"38c1c3de-5ed6-4b0d-a052-dd3b2e3dfd12\"\n    },\n    \"signature\": \"121da16477f210be03026cd412f9482784bdcaec502198bc149eb8e27638112c\",\n    \"token\": \"be58f711f349c7780e4579cd7c63341ac6f881e4dccc3154\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.embloy.com/api/v0/webhooks/:source/:id","description":"<p>Endpoint listening to incoming webhook requests.</p>\n","urlObject":{"path":["api","v0","webhooks",":source",":id"],"host":["https://api.embloy.com"],"query":[],"variable":[{"description":{"content":"<p>Source of incoming webhook call. Allowed values are:<code>embloy</code>,<code>lever</code>,<code>ashby</code></p>\n","type":"text/plain"},"type":"any","value":"lever","key":"source"},{"description":{"content":"<p>ID to keep track of webhook owner</p>\n","type":"text/plain"},"type":"any","value":"9ff11de78818f1102de91b3621f4313c","key":"id"}]}},"response":[{"id":"ac122c40-d865-4c89-b6a7-ad635fceb002","name":"200 OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"triggeredAt\": 1431454330072,\n    \"event\": \"candidateStageChange\",\n    \"data\": {\n        \"opportunityId\": \"3410c8b9-5c31-4bab-b7e9-9f710206d647\",\n        \"candidateId\": \"daeaa038-cddb-4d69-9b8c-74b6c23be3f3\",\n        \"contactId\": \"05c248f9-ccb1-435f-bab5-0ec608aec263\",\n        \"toStageId\": \"7c2690d8-6308-4ed9-ae2a-cbfe7db26593\",\n        \"fromStageId\": \"992f01a9-ee19-41d2-ae79-1040701b195c\"\n    },\n    \"signature\": \"b2354e2c9668a484edceb6546eeb2c5d6de9155475ffbf68547f03a58c734203\",\n    \"token\": \"be58f711f349c7780e4579cd7c63341ac6f881e4dccc3154\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.embloy.com/api/v0/webhooks/:source/:id","host":["https://api.embloy.com"],"path":["api","v0","webhooks",":source",":id"],"variable":[{"key":"source","value":"lever","description":"Source of incoming webhook call. Allowed values are:`embloy`,`lever`,`ashby`"},{"key":"id","value":"9ff11de78818f1102de91b3621f4313c","description":"ID to keep track of webhook owner"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"message\": \"Event processed\"\n}"},{"id":"a30e47bb-3351-42a4-9113-89498ece1737","name":"401 Unauthorized","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"triggeredAt\": 1431454330072,\n    \"event\": \"candidateStageChange\",\n    \"data\": {\n        \"opportunityId\": \"3410c8b9-5c31-4bab-b7e9-9f710206d647\",\n        \"candidateId\": \"daeaa038-cddb-4d69-9b8c-74b6c23be3f3\",\n        \"contactId\": \"05c248f9-ccb1-435f-bab5-0ec608aec263\",\n        \"toStageId\": \"7c2690d8-6308-4ed9-ae2a-cbfe7db26593\",\n        \"fromStageId\": \"992f01a9-ee19-41d2-ae79-1040701b195c\"\n    },\n    \"signature\": \"28e3fbb90ce869c3695c4a9559ff43eae998389a48b42c509d1adbeea0897c16\",\n    \"token\": \"be58f711f349c7780e4579cd7c63341ac6f881e4dccc3154\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.embloy.com/api/v0/webhooks/:source/:id","host":["https://api.embloy.com"],"path":["api","v0","webhooks",":source",":id"],"variable":[{"key":"source","value":"lever","description":"Source of incoming webhook call. Allowed values are:`embloy`,`lever`,`ashby`"},{"key":"id","value":"n_Ed54gY8RAt6Rs2IfQxPA","description":"ID to keep track of webhook owner"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"Invalid signature\"\n}"},{"id":"3bddc214-de9b-4506-bf36-27d1b95875ed","name":"404 Not Found","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"triggeredAt\": 1431454330072,\n    \"event\": \"candidateHired\",\n    \"data\": {\n        \"candidateId\": \"fc29952a-5b7e-4ce0-bca5-23aab339ec41\",\n        \"contactId\": \"05c248f9-ccb1-435f-bab5-0ec608aec263\",\n        \"opportunityId\": \"fc29952a-5b7e-4ce0-bca5-23aab339ec41\"\n    },\n    \"signature\": \"121da16477f210be03026cd412f9482784bdcaec502198bc149eb8e27638112c\",\n    \"token\": \"be58f711f349c7780e4579cd7c63341ac6f881e4dccc3154\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.embloy.com/api/v0/webhooks/:source/:id","host":["https://api.embloy.com"],"path":["api","v0","webhooks",":source",":id"],"variable":[{"key":"source","value":"lever","description":"Source of incoming webhook call. Allowed values are:`embloy`,`lever`,`ashby`"},{"key":"id","value":"9ff11de78818f1102de91b3621f4313c","description":"ID to keep track of webhook owner"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"Application not found\"\n}"},{"id":"53f17b2b-1ced-45a4-82f5-14984292a5cc","name":"422 Unprocessable Content","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"triggeredAt\": 1431454330072,\n    \"event\": \"candidateStageChange\",\n    \"data\": {\n        \"opportunityId\": \"3410c8b9-5c31-4bab-b7e9-9f710206d647\",\n        \"candidateId\": \"daeaa038-cddb-4d69-9b8c-74b6c23be3f3\",\n        \"contactId\": \"05c248f9-ccb1-435f-bab5-0ec608aec263\",\n        \"toStageId\": \"7c2690d8-6308-4ed9-ae2a-cbfe7db26593\",\n        \"fromStageId\": \"992f01a9-ee19-41d2-ae79-1040701b195c\"\n    },\n    \"signature\": \"0b6934720ba33eb9546eeefe23951cf5937400cd14cd64b6f626672c6b117f1e\",\n    \"token\": \"be58f711f349c7780e4579cd7c63341ac6f881e4dccc3154\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.embloy.com/api/v0/webhooks/:source/:id","host":["https://api.embloy.com"],"path":["api","v0","webhooks",":source",":id"],"variable":[{"key":"source","value":"lever","description":"Source of incoming webhook call. Allowed values are:`embloy`,`lever`,`ashby`"},{"key":"id","value":"9ff11de78818f1102de91b3621f4313c","description":"ID to keep track of webhook owner"}]}},"status":"Unprocessable Content","code":422,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": \"Unknown event type\"\n}"}],"_postman_id":"f88d7d9f-bdd7-4ce0-a04e-37d25d1d1357"}],"id":"9e30c881-2d2a-4e75-aa3d-a5be0063dcf8","_postman_id":"9e30c881-2d2a-4e75-aa3d-a5be0063dcf8","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]},"isInherited":true,"source":{"_postman_id":"e44099dd-6647-4b78-bd7a-03293e47dee5","id":"e44099dd-6647-4b78-bd7a-03293e47dee5","name":"Embloy-API Collection","type":"collection"}}}],"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"insert-access-token"}]}},"event":[{"listen":"prerequest","script":{"id":"b77ceeb3-eebf-4ad6-828c-073588872978","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"a94ba568-88e4-4c61-bf1b-cc0d3905caa7","type":"text/javascript","exec":[""]}}],"variable":[{"key":"root","value":"https://api.embloy.com","type":"string"},{"key":"api_version","value":"v0","type":"string"},{"key":"refresh_token","value":"insert-refresh-token","type":"string"},{"key":"access_token","value":"insert-access-token"},{"key":"client_token","value":"insert-client-token","type":"string"},{"key":"request_token","value":"insert-request-token","type":"string"},{"key":"password_reset_token","value":"insert-password-reset-token","type":"string"},{"key":"own_job_id","value":"insert-your-job-id","type":"string"},{"key":"application_id","value":"insert-application-id","type":"string"},{"key":"checkout_session_id","value":"insert-checkout-session-id","type":"string"},{"key":"job_id","value":"insert-job-id","type":"string"},{"key":"genius_root","value":"https://api2.embloy.com","type":"string"},{"key":"genius_api_version","value":"v0","type":"string"},{"key":"activation_token","value":"insert-your-activation-token","type":"string"},{"key":"password","value":"insert-password"},{"key":"username","value":"your-name@example.com"},{"key":"notification_id","value":"insert-notification-id"},{"key":"company_id","value":"insert-company-id","type":"string"},{"key":"otp_code","value":"insert-otp-code","type":"string"},{"key":"job_slug","value":"insert-job-slug","type":"default"},{"key":"job_list_id","value":"insert-job-list-id","type":"default"},{"key":"job_list_item_id","value":"insert-job-list-item-id","type":"default"},{"key":"job_option_id","value":"insert-job-option-id","type":"default"}]}