{"info":{"_postman_id":"eb4b580d-925f-47d4-91d9-6619076f3d69","name":"Freelancehunt API 2.0","description":"<html><head></head><body><p>This is a guide to help developers use Freelancehunt Authentication, which enables your application to take actions on behalf of a Freelancehunt account or access certain data about a user’s account.</p>\n<h1 id=\"authentication\">Authentication</h1>\n<p>API requests requires authentication.</p>\n<ol>\n<li><p>Getting a token. Visit <a href=\"https://freelancehunt.com/my/api2\">Apps and API</a> page and generate API key.</p>\n</li>\n<li><p>Sending the token. Send generated token as a header:</p>\n</li>\n</ol>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>curl -H \"Authorization: Bearer {{token}}\" https://api.freelancehunt.com/v2/my/profile\n</code></pre><p><strong>Note</strong>: double curly braces must be removed in real requests, they're only useful in Postman for environment variables usage.</p>\n<h1 id=\"supported-currencies\">Supported currencies</h1>\n<p>Allowed values for currency code in any request or response is <code>UAH</code> and <code>RUB</code>, unless endpoint description states otherwise.</p>\n<h1 id=\"requests\">Requests</h1>\n<h2 id=\"language\">Language</h2>\n<p>Add <code>Accept-Language</code> HTTP header to setup response language. Default language is English.</p>\n<p>Supported languages:</p>\n<ul>\n<li><code>ru</code> - Russian</li>\n<li><code>uk</code> - Ukrainian</li>\n<li><code>en</code> - English</li>\n</ul>\n<hr>\n<h2 id=\"pagination\">Pagination</h2>\n<p>Pagination must be used only in the GET requests as <code>page</code> parameter. Example: <code>/projects?page[number]=2</code></p>\n<hr>\n<h2 id=\"filters\">Filters</h2>\n<p>Filters must be used only in the GET requests as <code>filter</code> paramteter. Example: <code>/projects?filter[employer_id]=4</code></p>\n<p>The list of available filters will be written for each endpoint.</p>\n<hr>\n<h1 id=\"responses\">Responses</h1>\n<h2 id=\"success-response\">Success response</h2>\n<p>Success responses must contain <code>data</code> and <code>links</code> objects and may contain <code>meta</code> object.</p>\n<p><code>data</code> object may be a collection of objects, object or <code>null</code>.</p>\n<p><code>links</code> object must contain <code>self</code> key with requested endpoint and may cointain pagination keys: <code>next</code>, <code>last</code>, <code>prev</code>, <code>first</code>.</p>\n<p><code>meta</code> object may contain any additional information (specific relationships, etc.).</p>\n<p>If <code>data</code> contains single object  - it must contain keys: <code>id</code>, <code>type</code>, <code>attributes</code> and may contain <code>links</code>.</p>\n<hr>\n<h3 id=\"examples\">Examples:</h3>\n<hr>\n<h4 id=\"single-entity\">Single entity:</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"data\": {\n        \"id\": 72444,\n        \"type\": \"review\",\n        \"attributes\": {\n            \"published_at\": \"2018-04-11T14:20:13+03:00\",\n            \"comment\": \"Good employer.\",\n            \"grades\": {\n                \"connectivity\": 10,\n                \"definition\": 10,\n                \"pay\": 10,\n                \"requirements\": 10,\n                \"total\": 10\n            },\n            \"from\": {\n                \"id\": 5725,\n                \"type\": \"freelancer\",\n                \"login\": \"freelancer_login\",\n                \"first_name\": \"Firstname\",\n                \"last_name\": \"L.\",\n                \"avatar\": {\n                    \"small\": {\n                        \"url\": \"https://content.freelancehunt.com/profile/photo/50/freelancer_login.png\",\n                        \"width\": 50,\n                        \"height\": 50\n                    },\n                    \"large\": {\n                        \"url\": \"https://content.freelancehunt.com/profile/photo/225/freelancer_login.png\",\n                        \"width\": 255,\n                        \"height\": 255\n                    }\n                },\n                \"self\": \"https://api.freelancehunt.com/v2/freelancers/5725\"\n            },\n            \"project\": {\n                \"id\": 299170,\n                \"type\": \"project\",\n                \"name\": \"High-budget project 1\",\n                \"status\": {\n                    \"id\": 21,\n                    \"name\": \"Проект завершен\"\n                },\n                \"safe_type\": \"employer_cashless\",\n                \"budget\": {\n                    \"amount\": 91000,\n                    \"currency\": \"UAH\"\n                },\n                \"self\": \"https://api.freelancehunt.com/v2/projects/299170\"\n            }\n        }\n    },\n    \"links\": {\n        \"self\": \"https://api.freelancehunt.com/v2/employers/4/reviews/72444\"\n    }\n}\n</code></pre><h4 id=\"collection-of-entities\">Collection of entities:</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"data\": [\n        {\n            \"id\": 72444,\n            \"type\": \"review\",\n            \"attributes\": {\n                \"published_at\": \"2018-04-11T14:20:13+03:00\",\n                \"comment\": \"Good employer.\",\n                \"grades\": {\n                    \"connectivity\": 10,\n                    \"definition\": 10,\n                    \"pay\": 10,\n                    \"requirements\": 10,\n                    \"total\": 10\n                },\n                \"from\": {\n                    \"id\": 5725,\n                    \"type\": \"freelancer\",\n                    \"login\": \"freelancer_login\",\n                    \"first_name\": \"Firstname\",\n                    \"last_name\": \"L.\",\n                    \"avatar\": {\n                        \"small\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/50/freelancer_login.png\",\n                            \"width\": 50,\n                            \"height\": 50\n                        },\n                        \"large\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/225/freelancer_login.png\",\n                            \"width\": 255,\n                            \"height\": 255\n                        }\n                    },\n                    \"self\": \"https://api.freelancehunt.com/v2/freelancers/5725\"\n                },\n                \"project\": {\n                    \"id\": 299170,\n                    \"type\": \"project\",\n                    \"name\": \"High-budget project 1\",\n                    \"status\": {\n                        \"id\": 21,\n                        \"name\": \"Проект завершен\"\n                    },\n                    \"safe_type\": \"employer_cashless\",\n                    \"budget\": {\n                        \"amount\": 91000,\n                        \"currency\": \"UAH\"\n                    },\n                    \"self\": \"https://api.freelancehunt.com/v2/projects/299170\"\n                }\n            }\n        },\n        ...\n        {\n            \"id\": 72164,\n            \"type\": \"review\",\n            \"attributes\": {\n                \"published_at\": \"2017-01-10T14:11:25+13:00\",\n                \"comment\": \"Best employer ever.\",\n                \"grades\": {\n                    \"connectivity\": 10,\n                    \"definition\": 10,\n                    \"pay\": 10,\n                    \"requirements\": 10,\n                    \"total\": 10\n                },\n                \"from\": {\n                    \"id\": 5725,\n                    \"type\": \"freelancer\",\n                    \"login\": \"freelancer_login\",\n                    \"first_name\": \"Firstname\",\n                    \"last_name\": \"L.\",\n                    \"avatar\": {\n                        \"small\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/50/freelancer_login.png\",\n                            \"width\": 50,\n                            \"height\": 50\n                        },\n                        \"large\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/225/freelancer_login.png\",\n                            \"width\": 255,\n                            \"height\": 255\n                        }\n                    },\n                    \"self\": \"https://api.freelancehunt.com/v2/freelancers/5725\"\n                },\n                \"project\": {\n                    \"id\": 299175,\n                    \"type\": \"project\",\n                    \"name\": \"High-budget project 2\",\n                    \"status\": {\n                        \"id\": 21,\n                        \"name\": \"Проект завершен\"\n                    },\n                    \"safe_type\": \"employer_cashless\",\n                    \"budget\": {\n                        \"amount\": 80000,\n                        \"currency\": \"UAH\"\n                    },\n                    \"self\": \"https://api.freelancehunt.com/v2/projects/299170\"\n                }\n            }\n        }\n    ],\n    \"links\": {\n        \"self\": \"https://api.freelancehunt.com/v2/my/reviews\",\n        \"next\": \"https://api.freelancehunt.com/v2/my/reviews?page[number]=2\",\n        \"last\": \"https://api.freelancehunt.com/v2/my/reviews?page[number]=10\"\n    }\n}\n</code></pre><h4 id=\"static-data\">Static data:</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"data\": [\n        {\n            \"id\": 56,\n            \"name\": \"1C\"\n        },\n        ...\n        {\n            \"id\": 59,\n            \"name\": \"3D graphics\"\n        }\n    ],\n    \"links\": {\n        \"self\": \"https://api.freelancehunt.com/v2/skills\"\n    }\n}\n</code></pre><hr>\n<h2 id=\"error-response\">Error response</h2>\n<p>Error responses must contain <code>error</code> object with required keys: <code>status</code>, <code>title</code> and optional keys: <code>detail</code>, <code>meta</code>.</p>\n<p>Examples:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"error\": {\n        \"status\": 404,\n        \"title\": \"Not Found\"\n    }\n}\n</code></pre><pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>\n{\n    \"error\": {\n        \"status\": 422,\n        \"title\": \"Unprocessable Entity\",\n        \"detail\": \"Validation failed\",\n        \"meta\": {\n            \"info\": {\n                \"skills\": [\n                    \"Required field\"\n                ]\n            }\n        }\n    }\n}\n</code></pre><h1 id=\"rate-limiting\">Rate limiting</h1>\n<p>To prevent our API from being overwhelmed by too many requests, Freelancehunt rate-limits requests.</p>\n<p>The limit is across all Freelancehunt API queries. If this limit is exceeded, an error is returned: HTTP 429 (Too Many Requests).</p>\n<p>When you make an API request, you will receive a set of rate-limiting headers to help your application respond appropriately. The headers are:</p>\n<ul>\n<li><code>X-Ratelimit-Limit</code> — This is the average number of requests you can make over an extended period of time.</li>\n<li><code>X-Ratelimit-Remaining</code> — The number of points you have left to use.</li>\n</ul>\n<p>Individual endpoints may have additional rate limits, with additional headers to describe those limits. For details, see the documentation for each endpoint.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Authentication","slug":"authentication"},{"content":"Supported currencies","slug":"supported-currencies"},{"content":"Requests","slug":"requests"},{"content":"Responses","slug":"responses"},{"content":"Rate limiting","slug":"rate-limiting"}],"owner":"3971751","collectionId":"eb4b580d-925f-47d4-91d9-6619076f3d69","publishedId":"S1Lzy7WU","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FFBB33"},"publishDate":"2019-08-19T09:02:42.000Z"},"item":[{"name":"Projects","item":[{"name":"Create","item":[{"name":"Public project","event":[{"listen":"prerequest","script":{"id":"5d8526ec-987e-48db-9bed-dde0ca8a0c51","exec":[""],"type":"text/javascript"}}],"id":"10a2dd9e-43bf-4360-9f7f-6f12d6e079e0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"Public project\",\n\t\"budget\": {\n\t\t\"amount\": 2300,\n\t\t\"currency\": \"UAH\"\n\t},\n\t\"safe_type\": \"split\",\n\t\"description_html\": \"<p>Need to update several articles in the knowledge base: screenshots in all languages and a couple of dozen small text edits. I will describe everything in the workspace. Looking for basic <strong>HTML knowledge</strong>.</p>\",\n\t\"skills\": [\n\t\t104,\n\t\t124\n\t],\n\t\"expired_at\": \"2020-02-10T15:18:43+00:00\",\n\t\"tags\": [\n\t\t\"1C-Bitrix\"\n\t],\n\t\"is_only_for_plus\": false\n}"},"url":"{{api_url}}/v2/projects","description":"<h4 id=\"can-be-used-only-by-verified-profiles\">Can be used only by verified profiles</h4>\n<h3 id=\"required-body-parameters\">Required Body Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Project name.</td>\n</tr>\n<tr>\n<td>budget</td>\n<td>object</td>\n<td>Should be object with <code>amount</code> and <code>currency</code> keys.<br />Example: <code>{\"amount\": 2000, \"currency\": \"UAH\"}</code></td>\n</tr>\n<tr>\n<td>safe_type</td>\n<td>string/null</td>\n<td>Project payment type.<br />Valid values:<br /><code>null</code> - Direct payment <br /><code>employer</code> - Safe (fee is paid by employer)<br /><code>developer</code> - Safe (fee is paid by freelancer) <br /><code>split</code> - Safe (fee is paid in halves)<br /><code>employer_cashless</code> - Business Safe</td>\n</tr>\n<tr>\n<td>description_html</td>\n<td>string</td>\n<td>Project description with HTML tags.</td>\n</tr>\n<tr>\n<td>skills</td>\n<td>integer[]</td>\n<td>Should be array of skill IDs.</td>\n</tr>\n<tr>\n<td>expired_at</td>\n<td>string</td>\n<td>Project expire date. Should be in ISO 8601 format.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"optional-body-parameters\">Optional Body Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>tags</td>\n<td>string[]</td>\n<td>Should be array of tag names.<br />Example: <code>[\"1C-Bitrix\", \"PHP\"]</code></td>\n</tr>\n<tr>\n<td>is_only_for_plus</td>\n<td>bool</td>\n<td>Restrict project only to freelancers with Plus-profile.<br />Default: <code>false</code></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"relational-data-in-attributes\">Relational data in attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>employer</td>\n<td>Project owner.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","projects"],"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"6d550f9f-50b4-4d7e-983c-945e36608900","name":"Successful request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"Public project\",\n\t\"budget\": {\n\t\t\"amount\": 2300,\n\t\t\"currency\": \"UAH\"\n\t},\n\t\"safe_type\": \"split\",\n\t\"description_html\": \"<p>Need to update several articles in the knowledge base: screenshots in all languages and a couple of dozen small text edits. I will describe everything in the workspace. Looking for basic <strong>HTML knowledge</strong>.</p>\",\n\t\"skills\": [\n\t\t104,\n\t\t124\n\t],\n\t\"expired_at\": \"2019-05-15T15:18:43+00:00\",\n\t\"tags\": [\n\t\t\"1C-Bitrix\"\n\t],\n\t\"is_only_for_plus\": false\n}","options":{"raw":{"language":"json"}}},"url":"{{api_url}}/v2/projects"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.16.0"},{"key":"Date","value":"Mon, 13 May 2019 09:04:13 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept"},{"key":"X-Auth-Status","value":"true"},{"key":"X-RateLimit-Limit","value":"1200 per hour"},{"key":"X-RateLimit-Remaining","value":"1198"},{"key":"X-Request-Id","value":"f5f888c7-55a6-4551-b447-d08e4320e472"},{"key":"Cache-Control","value":"no-cache, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Content-Language","value":"en"},{"key":"X-Powered-By","value":"api.freelancehunt.com"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 299207,\n        \"type\": \"project\",\n        \"attributes\": {\n            \"name\": \"Public project\",\n            \"description\": \"Need to update several articles in the knowledge base: screenshots in all languages and a couple of dozen small text edits. I will describe everything in the workspace. Looking for basic HTML knowledge.\",\n            \"description_html\": \"<p>Need to update several articles in the knowledge base: screenshots in all languages and a couple of dozen small text edits. I will describe everything in the workspace. Looking for basic <strong>HTML knowledge</strong>.</p>\",\n            \"skills\": [\n                {\n                    \"id\": 104,\n                    \"name\": \"Content management\"\n                },\n                {\n                    \"id\": 124,\n                    \"name\": \"HTML/CSS\"\n                }\n            ],\n            \"status\": {\n                \"id\": 11,\n                \"name\": \"Open for proposals\"\n            },\n            \"budget\": {\n                \"amount\": 2300,\n                \"currency\": \"UAH\"\n            },\n            \"bid_count\": 0,\n            \"is_remote_job\": false,\n            \"is_premium\": false,\n            \"is_only_for_plus\": false,\n            \"location\": null,\n            \"safe_type\": \"split\",\n            \"is_personal\": false,\n            \"employer\": {\n                \"id\": 4,\n                \"type\": \"employer\",\n                \"login\": \"freelancehunt\",\n                \"first_name\": \"Freelancehunt\",\n                \"last_name\": \".\",\n                \"avatar\": {\n                    \"small\": {\n                        \"url\": \"https://content.freelancehunt.com/profile/photo/50/freelancehunt.png\",\n                        \"width\": 50,\n                        \"height\": 50\n                    },\n                    \"large\": {\n                        \"url\": \"https://content.freelancehunt.com/profile/photo/225/freelancehunt.png\",\n                        \"width\": 255,\n                        \"height\": 255\n                    }\n                },\n                \"self\": \"https://api.freelancehunt.com/v2/employers/4\"\n            },\n            \"freelancer\": null,\n            \"updates\": [],\n            \"published_at\": \"2020-01-21T18:17:58+02:00\",\n            \"expired_at\": \"2020-02-10T18:17:58+02:00\"\n        },\n        \"links\": {\n            \"self\": {\n                \"api\": \"https://api.freelancehunt.com/v2/projects/299207\",\n                \"web\": \"https://freelancehunt.com/project/public-project/299207.html\"\n            },\n            \"comments\": \"https://api.freelancehunt.com/v2/projects/299207/comments\",\n            \"bids\": \"https://api.freelancehunt.com/v2/projects/299207/bids\"\n        }\n    },\n    \"links\": {\n        \"self\": \"https://api.freelancehunt.com/v2/projects\"\n    }\n}"}],"_postman_id":"10a2dd9e-43bf-4360-9f7f-6f12d6e079e0"},{"name":"Personal project","event":[{"listen":"prerequest","script":{"id":"bee9003d-f1e6-4c2e-8744-a901e26d86b7","exec":[""],"type":"text/javascript"}}],"id":"b84770ab-a2ea-4c48-ad4e-43645e056bab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"Personal project\",\n\t\"budget\": {\n\t\t\"amount\": 5000,\n\t\t\"currency\": \"RUB\"\n\t},\n\t\"safe_type\": \"employer\",\n\t\"is_personal\": true,\n\t\"freelancer_id\": 3,\n\t\"description_html\": \"<p>Need to update several articles in the knowledge base: screenshots in all languages and a couple of dozen small text edits. I will describe everything in the workspace. Looking for basic <strong>HTML knowledge</strong>.</p>>\",\n\t\"skills\": [\n\t\t104,\n\t\t124\n\t],\n\t\"expired_at\": \"2020-02-10T15:18:43+00:00\",\n\t\"tags\": [\n\t\t\"1C-Bitrix\"\n\t]\n}"},"url":"{{api_url}}/v2/projects","description":"<h3 id=\"required-body-parameters\">Required Body Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Project name.</td>\n</tr>\n<tr>\n<td>freelancer_id</td>\n<td>integer</td>\n<td>Freelancer ID.</td>\n</tr>\n<tr>\n<td>is_personal</td>\n<td>boolean</td>\n<td>Mark project as personal. Valid value: <code>true</code>.</td>\n</tr>\n<tr>\n<td>budget</td>\n<td>object</td>\n<td>Should be object with <code>amount</code> and <code>currency</code> keys.<br />Example: <code>{\"amount\": 2000, \"currency\": \"UAH\"}</code></td>\n</tr>\n<tr>\n<td>safe_type</td>\n<td>string/null</td>\n<td>Project payment type.<br />Valid values:<br /><code>employer</code> - Safe (fee is paid by employer)<br /><code>developer</code> - Safe (fee is paid by freelancer) <br /><code>split</code> - Safe (fee is paid in halves)<br /><code>employer_cashless</code> - Business Safe</td>\n</tr>\n<tr>\n<td>description_html</td>\n<td>string</td>\n<td>Project description with HTML tags.</td>\n</tr>\n<tr>\n<td>skills</td>\n<td>integer[]</td>\n<td>Should be array of skill IDs.</td>\n</tr>\n<tr>\n<td>expired_at</td>\n<td>string</td>\n<td>Project expire date. Should be in ISO 8601 format.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"optional-body-parameters\">Optional Body Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>tags</td>\n<td>string[]</td>\n<td>Should be array of tag names.<br />Example: <code>[\"1C-Bitrix\", \"PHP\"]</code></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"relational-data-in-attributes\">Relational data in attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>employer</td>\n<td>Project owner.</td>\n</tr>\n<tr>\n<td>freelancer</td>\n<td>Invited freelancer.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","projects"],"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"c51d7593-58e1-4939-98ac-6874fbcb21bf","name":"Successful request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"Personal project\",\n\t\"budget\": {\n\t\t\"amount\": 5000,\n\t\t\"currency\": \"RUB\"\n\t},\n\t\"safe_type\": \"employer\",\n\t\"is_personal\": true,\n\t\"freelancer_id\": 3,\n\t\"description_html\": \"<p>Need to update several articles in the knowledge base: screenshots in all languages and a couple of dozen small text edits. I will describe everything in the workspace. Looking for basic <strong>HTML knowledge</strong>.</p>>\",\n\t\"skills\": [\n\t\t104,\n\t\t124\n\t],\n\t\"expired_at\": \"2020-02-10T15:18:43+00:00\",\n\t\"tags\": [\n\t\t\"1C-Bitrix\"\n\t]\n}","options":{"raw":{"language":"json"}}},"url":"{{api_url}}/v2/projects"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.16.0"},{"key":"Date","value":"Wed, 15 May 2019 07:21:38 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept"},{"key":"X-Auth-Status","value":"true"},{"key":"X-RateLimit-Limit","value":"1200 per hour"},{"key":"X-RateLimit-Remaining","value":"1191"},{"key":"X-Request-Id","value":"5d205a1e-7674-4fe0-b41a-2480d2dffc6e"},{"key":"Cache-Control","value":"no-cache, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Content-Language","value":"en"},{"key":"X-Powered-By","value":"api.freelancehunt.com"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 299208,\n        \"type\": \"project\",\n        \"attributes\": {\n            \"name\": \"Personal project\",\n            \"description\": \"Need to update several articles in the knowledge base: screenshots in all languages and a couple of dozen small text edits. I will describe everything in the workspace. Looking for basic HTML knowledge.>\",\n            \"description_html\": \"<p>Need to update several articles in the knowledge base: screenshots in all languages and a couple of dozen small text edits. I will describe everything in the workspace. Looking for basic <strong>HTML knowledge</strong>.</p>&gt;\",\n            \"skills\": [\n                {\n                    \"id\": 104,\n                    \"name\": \"Content management\"\n                },\n                {\n                    \"id\": 124,\n                    \"name\": \"HTML/CSS\"\n                }\n            ],\n            \"status\": {\n                \"id\": 13,\n                \"name\": \"Contractor chosen\"\n            },\n            \"budget\": {\n                \"amount\": 5000,\n                \"currency\": \"RUB\"\n            },\n            \"bid_count\": 1,\n            \"is_remote_job\": false,\n            \"is_premium\": false,\n            \"is_only_for_plus\": false,\n            \"location\": null,\n            \"safe_type\": \"employer\",\n            \"is_personal\": true,\n            \"employer\": {\n                \"id\": 4,\n                \"type\": \"employer\",\n                \"login\": \"freelancehunt\",\n                \"first_name\": \"Freelancehunt\",\n                \"last_name\": \".\",\n                \"avatar\": {\n                    \"small\": {\n                        \"url\": \"https://content.freelancehunt.com/profile/photo/50/freelancehunt.png\",\n                        \"width\": 50,\n                        \"height\": 50\n                    },\n                    \"large\": {\n                        \"url\": \"https://content.freelancehunt.com/profile/photo/225/freelancehunt.png\",\n                        \"width\": 255,\n                        \"height\": 255\n                    }\n                },\n                \"self\": \"http://api.freelancehunt.com/v2/employers/4\"\n            },\n            \"freelancer\": {\n                \"id\": 3,\n                \"type\": \"freelancer\",\n                \"login\": \"beowulf\",\n                \"first_name\": \"Константин\",\n                \"last_name\": \"О.\",\n                \"avatar\": {\n                    \"small\": {\n                        \"url\": \"https://content.freelancehunt.com/profile/photo/50/beowulf.png\",\n                        \"width\": 50,\n                        \"height\": 50\n                    },\n                    \"large\": {\n                        \"url\": \"https://content.freelancehunt.com/profile/photo/225/beowulf.png\",\n                        \"width\": 255,\n                        \"height\": 255\n                    }\n                },\n                \"self\": \"http://api.freelancehunt.com/v2/freelancers/3\"\n            },\n            \"updates\": [],\n            \"published_at\": \"2020-01-21T18:20:19+02:00\",\n            \"expired_at\": \"2020-02-10T18:20:19+02:00\"\n        },\n        \"links\": {\n            \"self\": {\n                \"api\": \"http://api.freelancehunt.com/v2/projects/299208\",\n                \"web\": \"http://freelancehunt.com/project/personal-project/299208.html\"\n            },\n            \"comments\": \"http://api.freelancehunt.com/v2/projects/299208/comments\",\n            \"bids\": \"http://api.freelancehunt.com/v2/projects/299208/bids\"\n        }\n    },\n    \"links\": {\n        \"self\": \"http://api.freelancehunt.com/v2/projects\"\n    }\n}"}],"_postman_id":"b84770ab-a2ea-4c48-ad4e-43645e056bab"}],"id":"ff11ae15-05af-4ee8-ae7c-155cd137506f","_postman_id":"ff11ae15-05af-4ee8-ae7c-155cd137506f","description":""},{"name":"Update","item":[{"name":"Update project without bids","event":[{"listen":"prerequest","script":{"id":"5d8526ec-987e-48db-9bed-dde0ca8a0c51","exec":[""],"type":"text/javascript"}},{"listen":"test","script":{"id":"e51bb489-4a1b-44dc-b292-6a381e8f6e98","exec":[""],"type":"text/javascript"}}],"id":"9bcc2ab1-307a-421c-ad3e-6dc1937be4a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"Updated project name\",\n\t\"budget\": {\n\t\t\"amount\": 2400,\n\t\t\"currency\": \"UAH\"\n\t},\n\t\"safe_type\": \"split\",\n\t\"description_html\": \"<p>Update: need to update several articles in the knowledge base: screenshots in all languages and a couple of dozen small text edits. I will describe everything in the workspace. Looking for basic <strong>HTML knowledge</strong>.</p>\",\n\t\"skills\": [\n\t\t104,\n\t\t124\n\t],\n\t\"expired_at\": \"2020-02-10T15:18:43+00:00\",\n\t\"tags\": [\n\t\t\"1C-Bitrix\"\n\t]\n}"},"url":"{{api_url}}/v2/projects/{{project_id}}","description":"<h3 id=\"required-body-parameters\">Required Body Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Project name.</td>\n</tr>\n<tr>\n<td>budget</td>\n<td>object</td>\n<td>Should be object with <code>amount</code> and <code>currency</code> keys.<br />Example: <code>{\"amount\": 2000, \"currency\": \"UAH\"}</code></td>\n</tr>\n<tr>\n<td>safe_type</td>\n<td>string/null</td>\n<td>Project payment type.<br />Valid values:<br /><code>null</code> - Direct payment <br /><code>employer</code> - Safe (fee is paid by employer)<br /><code>developer</code> - Safe (fee is paid by freelancer) <br /><code>split</code> - Safe (fee is paid in halves)<br /><code>employer_cashless</code> - Business Safe</td>\n</tr>\n<tr>\n<td>description_html</td>\n<td>string</td>\n<td>Project description with HTML tags.</td>\n</tr>\n<tr>\n<td>skills</td>\n<td>integer[]</td>\n<td>Should be array of skill IDs.</td>\n</tr>\n<tr>\n<td>expired_at</td>\n<td>string</td>\n<td>Project expire date. Should be in ISO 8601 format.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"optional-body-parameters\">Optional Body Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>tags</td>\n<td>string[]</td>\n<td>Should be array of tag names.<br />Example: <code>[\"1C-Bitrix\", \"PHP\"]</code></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"relational-data-in-attributes\">Relational data in attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>employer</td>\n<td>Project owner.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","projects","{{project_id}}"],"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"0c265956-90ec-433e-9ab3-5ea7c96d6e0f","name":"Successful request","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"Updated project name\",\n\t\"budget\": {\n\t\t\"amount\": 2400,\n\t\t\"currency\": \"UAH\"\n\t},\n\t\"safe_type\": \"split\",\n\t\"description_html\": \"<p>Update: need to update several articles in the knowledge base: screenshots in all languages and a couple of dozen small text edits. I will describe everything in the workspace. Looking for basic <strong>HTML knowledge</strong>.</p>\",\n\t\"skills\": [\n\t\t104,\n\t\t124\n\t],\n\t\"expired_at\": \"2020-02-10T18:32:36+02:00\",\n\t\"tags\": [\n\t\t\"1C-Bitrix\"\n\t]\n}","options":{"raw":{"language":"json"}}},"url":"{{api_url}}/v2/projects/299171"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.16.0"},{"key":"Date","value":"Mon, 13 May 2019 11:44:11 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept"},{"key":"X-Auth-Status","value":"true"},{"key":"X-RateLimit-Limit","value":"1200 per hour"},{"key":"X-RateLimit-Remaining","value":"1198"},{"key":"X-Request-Id","value":"1be67e0f-0590-4ea1-bdea-d9d04df74d49"},{"key":"Cache-Control","value":"no-cache, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Content-Language","value":"en"},{"key":"X-Powered-By","value":"api.freelancehunt.com"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 299171,\n        \"type\": \"project\",\n        \"attributes\": {\n            \"name\": \"Updated project name\",\n            \"description\": \"Update: need to update several articles in the knowledge base: screenshots in all languages and a couple of dozen small text edits. I will describe everything in the workspace. Looking for basic HTML knowledge.\",\n            \"description_html\": \"<p>Update: need to update several articles in the knowledge base: screenshots in all languages and a couple of dozen small text edits. I will describe everything in the workspace. Looking for basic <strong>HTML knowledge</strong>.</p>\",\n            \"skills\": [\n                {\n                    \"id\": 104,\n                    \"name\": \"Content management\"\n                },\n                {\n                    \"id\": 124,\n                    \"name\": \"HTML/CSS\"\n                }\n            ],\n            \"status\": {\n                \"id\": 11,\n                \"name\": \"Open for proposals\"\n            },\n            \"budget\": {\n                \"amount\": 2400,\n                \"currency\": \"UAH\"\n            },\n            \"bid_count\": 0,\n            \"is_remote_job\": false,\n            \"is_premium\": false,\n            \"is_only_for_plus\": false,\n            \"location\": null,\n            \"safe_type\": \"split\",\n            \"is_personal\": false,\n            \"employer\": {\n                \"id\": 340096,\n                \"type\": \"employer\",\n                \"login\": \"ledpodarok\",\n                \"first_name\": \"Anatoliy\",\n                \"last_name\": \"S.\",\n                \"avatar\": {\n                    \"small\": {\n                        \"url\": \"https://content.freelancehunt.com/profile/photo/50/ledpodarok.png\",\n                        \"width\": 50,\n                        \"height\": 50\n                    },\n                    \"large\": {\n                        \"url\": \"https://content.freelancehunt.com/profile/photo/225/ledpodarok.png\",\n                        \"width\": 255,\n                        \"height\": 255\n                    }\n                },\n                \"self\": \"http://api.freelancehunt.com/v2/employers/340096\"\n            },\n            \"freelancer\": null,\n            \"updates\": [],\n            \"published_at\": \"2018-04-15T23:44:05+03:00\",\n            \"expired_at\": \"2020-02-10T18:32:36+02:00\"\n        },\n        \"links\": {\n            \"self\": {\n                \"api\": \"http://api.freelancehunt.com/v2/projects/299171\",\n                \"web\": \"http://freelancehunt.com/project/updated-project-name/299171.html\"\n            },\n            \"comments\": \"http://api.freelancehunt.com/v2/projects/299171/comments\",\n            \"bids\": \"http://api.freelancehunt.com/v2/projects/299171/bids\"\n        }\n    },\n    \"links\": {\n        \"self\": \"http://api.freelancehunt.com/v2/projects/299171\"\n    }\n}"}],"_postman_id":"9bcc2ab1-307a-421c-ad3e-6dc1937be4a5"},{"name":"Update project with bids","event":[{"listen":"prerequest","script":{"id":"5d8526ec-987e-48db-9bed-dde0ca8a0c51","exec":[""],"type":"text/javascript"}}],"id":"7152ed85-e405-4fed-a14d-6edeb4397254","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n    \"budget\": {\n        \"amount\": 2800,\n        \"currency\": \"UAH\"\n    },\n    \"skills\": [\n        104,\n        124\n    ],\n    \"update_html\": \"<b>First update</b>\"\n}"},"url":"{{api_url}}/v2/projects/{{project_id}}/amend","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Example</th>\n<th>Comment</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>budget</td>\n<td><code>{\"amount\": 2300, \"currency\": \"UAH\"}</code></td>\n<td>Should be object with <code>amount</code> and <code>currency</code>.</td>\n</tr>\n<tr>\n<td>update_html</td>\n<td><code>&lt;b&gt;First update&lt;/b&gt;</code></td>\n<td>Update for project description with HTML tags, will be added after initial description.</td>\n</tr>\n<tr>\n<td>skills</td>\n<td><code>[104, 124]</code></td>\n<td>Should be array of skill IDs.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"relational-data-in-attributes\">Relational data in attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>employer</td>\n<td>Project owner.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","projects","{{project_id}}","amend"],"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"e6734984-b380-4e47-90e9-811fb917282d","name":"Successful request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n    \"budget\": {\n        \"amount\": 2800,\n        \"currency\": \"UAH\"\n    },\n    \"skills\": [\n        104,\n        124\n    ],\n    \"update_html\": \"<b>First update</b>\"\n}","options":{"raw":{"language":"json"}}},"url":"{{api_url}}/v2/projects/299172/amend"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.16.0"},{"key":"Date","value":"Mon, 13 May 2019 11:52:53 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept"},{"key":"X-Auth-Status","value":"true"},{"key":"X-RateLimit-Limit","value":"1200 per hour"},{"key":"X-RateLimit-Remaining","value":"1199"},{"key":"X-Request-Id","value":"c0d22f5a-09c7-46b7-bfe3-9e3c1d3e5e77"},{"key":"Cache-Control","value":"no-cache, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Content-Language","value":"en"},{"key":"X-Powered-By","value":"api.freelancehunt.com"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 299171,\n        \"type\": \"project\",\n        \"attributes\": {\n            \"name\": \"Updated project name\",\n            \"description\": \"Update: need to update several articles in the knowledge base: screenshots in all languages and a couple of dozen small text edits. I will describe everything in the workspace. Looking for basic HTML knowledge.\",\n            \"description_html\": \"<p>Update: need to update several articles in the knowledge base: screenshots in all languages and a couple of dozen small text edits. I will describe everything in the workspace. Looking for basic <strong>HTML knowledge</strong>.</p>\",\n            \"skills\": [\n                {\n                    \"id\": 104,\n                    \"name\": \"Content management\"\n                },\n                {\n                    \"id\": 124,\n                    \"name\": \"HTML/CSS\"\n                }\n            ],\n            \"status\": {\n                \"id\": 11,\n                \"name\": \"Open for proposals\"\n            },\n            \"budget\": {\n                \"amount\": 2800,\n                \"currency\": \"UAH\"\n            },\n            \"bid_count\": 0,\n            \"is_remote_job\": false,\n            \"is_premium\": false,\n            \"is_only_for_plus\": false,\n            \"location\": null,\n            \"safe_type\": \"split\",\n            \"is_personal\": false,\n            \"employer\": {\n                \"id\": 340096,\n                \"type\": \"employer\",\n                \"login\": \"ledpodarok\",\n                \"first_name\": \"Anatoliy\",\n                \"last_name\": \"S.\",\n                \"avatar\": {\n                    \"small\": {\n                        \"url\": \"https://content.freelancehunt.com/profile/photo/50/ledpodarok.png\",\n                        \"width\": 50,\n                        \"height\": 50\n                    },\n                    \"large\": {\n                        \"url\": \"https://content.freelancehunt.com/profile/photo/225/ledpodarok.png\",\n                        \"width\": 255,\n                        \"height\": 255\n                    }\n                },\n                \"self\": \"http://api.freelancehunt.com/v2/employers/340096\"\n            },\n            \"freelancer\": null,\n            \"updates\": [\n                {\n                    \"description\": \"First update\",\n                    \"description_html\": \"<b>First update</b>\",\n                    \"published_at\": \"2020-01-21T18:34:02+02:00\"\n                }\n            ],\n            \"published_at\": \"2018-04-15T23:44:05+03:00\",\n            \"expired_at\": \"2020-02-10T18:32:36+02:00\"\n        },\n        \"links\": {\n            \"self\": {\n                \"api\": \"http://api.freelancehunt.com/v2/projects/299171\",\n                \"web\": \"http://freelancehunt.com/project/updated-project-name/299171.html\"\n            },\n            \"comments\": \"http://api.freelancehunt.com/v2/projects/299171/comments\",\n            \"bids\": \"http://api.freelancehunt.com/v2/projects/299171/bids\"\n        }\n    },\n    \"links\": {\n        \"self\": \"http://api.freelancehunt.com/v2/projects/299171/amend\"\n    }\n}"}],"_postman_id":"7152ed85-e405-4fed-a14d-6edeb4397254"},{"name":"Extend expire date","event":[{"listen":"prerequest","script":{"id":"5d8526ec-987e-48db-9bed-dde0ca8a0c51","exec":[""],"type":"text/javascript"}}],"id":"db35f666-65d9-4fac-bc02-b2ddabcca3c3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n    \"expired_at\": \"2020-02-10T15:44:50+00:00\"\n}"},"url":"{{api_url}}/v2/projects/{{project_id}}/extend","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Example</th>\n<th>Comment</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>expired_at</td>\n<td><code>2019-05-15T15:18:43+00:00</code></td>\n<td>Date should be in ISO 8601 format</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","projects","{{project_id}}","extend"],"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"8a8d1baf-13a8-42ef-8346-e8a21a651c7c","name":"Successful request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n    \"expired_at\": \"2020-02-10T18:36:30+02:00\"\n}","options":{"raw":{"language":"json"}}},"url":"{{api_url}}/v2/projects/299172/extend"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.16.0"},{"key":"Date","value":"Wed, 15 May 2019 08:07:41 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept"},{"key":"X-Auth-Status","value":"true"},{"key":"X-RateLimit-Limit","value":"1200 per hour"},{"key":"X-RateLimit-Remaining","value":"1198"},{"key":"X-Request-Id","value":"7b15167c-d448-4721-9660-8c8bc5b29ff5"},{"key":"Cache-Control","value":"no-cache, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Content-Language","value":"en"},{"key":"X-Powered-By","value":"api.freelancehunt.com"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 299171,\n        \"type\": \"project\",\n        \"attributes\": {\n            \"name\": \"Updated project name\",\n            \"description\": \"Update: need to update several articles in the knowledge base: screenshots in all languages and a couple of dozen small text edits. I will describe everything in the workspace. Looking for basic HTML knowledge.\",\n            \"description_html\": \"<p>Update: need to update several articles in the knowledge base: screenshots in all languages and a couple of dozen small text edits. I will describe everything in the workspace. Looking for basic <strong>HTML knowledge</strong>.</p>\",\n            \"skills\": [\n                {\n                    \"id\": 104,\n                    \"name\": \"Content management\"\n                },\n                {\n                    \"id\": 124,\n                    \"name\": \"HTML/CSS\"\n                }\n            ],\n            \"status\": {\n                \"id\": 11,\n                \"name\": \"Open for proposals\"\n            },\n            \"budget\": {\n                \"amount\": 2800,\n                \"currency\": \"UAH\"\n            },\n            \"bid_count\": 0,\n            \"is_remote_job\": false,\n            \"is_premium\": false,\n            \"is_only_for_plus\": false,\n            \"location\": null,\n            \"safe_type\": \"split\",\n            \"is_personal\": false,\n            \"employer\": {\n                \"id\": 340096,\n                \"type\": \"employer\",\n                \"login\": \"ledpodarok\",\n                \"first_name\": \"Anatoliy\",\n                \"last_name\": \"S.\",\n                \"avatar\": {\n                    \"small\": {\n                        \"url\": \"https://content.freelancehunt.com/profile/photo/50/ledpodarok.png\",\n                        \"width\": 50,\n                        \"height\": 50\n                    },\n                    \"large\": {\n                        \"url\": \"https://content.freelancehunt.com/profile/photo/225/ledpodarok.png\",\n                        \"width\": 255,\n                        \"height\": 255\n                    }\n                },\n                \"self\": \"http://api.freelancehunt.com/v2/employers/340096\"\n            },\n            \"freelancer\": null,\n            \"updates\": [\n                {\n                    \"description\": \"First update\",\n                    \"description_html\": \"<b>First update</b>\",\n                    \"published_at\": \"2020-01-21T18:34:02+02:00\"\n                }\n            ],\n            \"published_at\": \"2018-04-15T23:44:05+03:00\",\n            \"expired_at\": \"2020-02-10T18:36:30+02:00\"\n        },\n        \"links\": {\n            \"self\": {\n                \"api\": \"http://api.freelancehunt.com/v2/projects/299171\",\n                \"web\": \"http://freelancehunt.com/project/updated-project-name/299171.html\"\n            },\n            \"comments\": \"http://api.freelancehunt.com/v2/projects/299171/comments\",\n            \"bids\": \"http://api.freelancehunt.com/v2/projects/299171/bids\"\n        }\n    },\n    \"links\": {\n        \"self\": \"http://api.freelancehunt.com/v2/projects/299171/extend\"\n    }\n}"}],"_postman_id":"db35f666-65d9-4fac-bc02-b2ddabcca3c3"}],"id":"2d25d0f8-6501-4a93-aae3-9963a68009a4","_postman_id":"2d25d0f8-6501-4a93-aae3-9963a68009a4","description":""},{"name":"Bids","item":[{"name":"Project bids list","event":[{"listen":"prerequest","script":{"id":"620572ef-e697-438a-9a2d-79fe9b57883b","exec":[""],"type":"text/javascript"}},{"listen":"test","script":{"id":"831dce65-6a9d-4523-91fd-a033df40d610","exec":[""],"type":"text/javascript"}}],"id":"fe496db3-dd4a-4364-82a6-28e4bb850861","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{api_url}}/v2/projects/{{project_id}}/bids","description":"<h3 id=\"filters\">Filters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>is_winner</td>\n<td>integer</td>\n<td>Show only the winner bid.</td>\n</tr>\n<tr>\n<td>status</td>\n<td>string</td>\n<td>Filter bids by statuses. Valid values: <code>active</code>, <code>revoked</code>, <code>rejected</code></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"relational-data-in-attributes\">Relational data in attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>freelancer</td>\n<td>Bidding freelancer.</td>\n</tr>\n<tr>\n<td>project</td>\n<td>Project where the bid is placed.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","projects","{{project_id}}","bids"],"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"93fce5c8-1ff1-4651-ab97-fad51e862c7b","name":"Successful request","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"}],"url":"{{api_url}}/v2/projects/299172/bids"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.16.0"},{"key":"Date","value":"Tue, 14 May 2019 12:55:39 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept"},{"key":"X-Auth-Status","value":"true"},{"key":"X-RateLimit-Limit","value":"1200 per hour"},{"key":"X-RateLimit-Remaining","value":"1194"},{"key":"X-Request-Id","value":"7117a847-a383-412f-93dd-cb7a82b22b50"},{"key":"Cache-Control","value":"no-cache, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Content-Language","value":"en"},{"key":"X-Powered-By","value":"api.freelancehunt.com"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 3119168,\n            \"type\": \"bid\",\n            \"attributes\": {\n                \"days\": 25,\n                \"safe_type\": \"employer\",\n                \"budget\": {\n                    \"amount\": 18000,\n                    \"currency\": \"UAH\"\n                },\n                \"comment\": \"I can help you with this problem.\",\n                \"status\": \"active\",\n                \"is_hidden\": false,\n                \"is_winner\": false,\n                \"freelancer\": {\n                    \"id\": 191397,\n                    \"type\": \"freelancer\",\n                    \"login\": \"NeoSeo\",\n                    \"first_name\": \"Maxim\",\n                    \"last_name\": \"P.\",\n                    \"avatar\": {\n                        \"small\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/50/NeoSeo.png\",\n                            \"width\": 50,\n                            \"height\": 50\n                        },\n                        \"large\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/225/NeoSeo.png\",\n                            \"width\": 255,\n                            \"height\": 255\n                        }\n                    },\n                    \"self\": \"http://api.freelancehunt.com/v2/freelancers/191397\"\n                },\n                \"project\": {\n                    \"id\": 299172,\n                    \"type\": \"project\",\n                    \"name\": \"Project with bids\",\n                    \"status\": {\n                        \"id\": 11,\n                        \"name\": \"Open for proposals\"\n                    },\n                    \"safe_type\": \"employer\",\n                    \"budget\": {\n                        \"amount\": 2300,\n                        \"currency\": \"UAH\"\n                    },\n                    \"self\": \"http://api.freelancehunt.com/v2/projects/299172\"\n                },\n                \"attachment\": null,\n                \"published_at\": \"2018-04-15T23:44:05+03:00\"\n            }\n        },\n        {\n            \"id\": 3139995,\n            \"type\": \"bid\",\n            \"attributes\": {\n                \"days\": 1,\n                \"safe_type\": \"employer\",\n                \"budget\": {\n                    \"amount\": 2500,\n                    \"currency\": \"UAH\"\n                },\n                \"comment\": \"Choose me and we can fix it!\",\n                \"status\": \"active\",\n                \"is_hidden\": false,\n                \"is_winner\": false,\n                \"freelancer\": {\n                    \"id\": 5725,\n                    \"type\": \"freelancer\",\n                    \"login\": \"alex_yar\",\n                    \"first_name\": \"Andrey\",\n                    \"last_name\": \"Y.\",\n                    \"avatar\": {\n                        \"small\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/50/alex_yar.png\",\n                            \"width\": 50,\n                            \"height\": 50\n                        },\n                        \"large\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/225/alex_yar.png\",\n                            \"width\": 255,\n                            \"height\": 255\n                        }\n                    },\n                    \"self\": \"http://api.freelancehunt.com/v2/freelancers/5725\"\n                },\n                \"project\": {\n                    \"id\": 299172,\n                    \"type\": \"project\",\n                    \"name\": \"Project with bids\",\n                    \"status\": {\n                        \"id\": 11,\n                        \"name\": \"Open for proposals\"\n                    },\n                    \"safe_type\": \"employer\",\n                    \"budget\": {\n                        \"amount\": 2300,\n                        \"currency\": \"UAH\"\n                    },\n                    \"self\": \"http://api.freelancehunt.com/v2/projects/299172\"\n                },\n                \"attachment\": null,\n                \"published_at\": \"2018-04-15T23:44:05+03:00\"\n            }\n        }\n    ],\n    \"links\": {\n        \"self\": \"http://api.freelancehunt.com/v2/projects/299172/bids\"\n    }\n}"}],"_postman_id":"fe496db3-dd4a-4364-82a6-28e4bb850861"},{"name":"Freelancer bids list","event":[{"listen":"prerequest","script":{"id":"620572ef-e697-438a-9a2d-79fe9b57883b","exec":[""],"type":"text/javascript"}},{"listen":"test","script":{"id":"831dce65-6a9d-4523-91fd-a033df40d610","exec":[""],"type":"text/javascript"}}],"id":"16a2c8ba-a84e-450c-9745-49f0c3f50689","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"}],"url":"{{api_url}}/v2/my/bids","description":"<h3 id=\"filters\">Filters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>project_id</td>\n<td>integer</td>\n<td>Project ID.</td>\n</tr>\n<tr>\n<td>status</td>\n<td>string</td>\n<td>Filter bids by statuses. Valid values: <code>active</code>, <code>revoked</code>, <code>rejected</code></td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"relational-data-in-attributes\">Relational data in attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>freelancer</td>\n<td>Bidding freelancer.</td>\n</tr>\n<tr>\n<td>project</td>\n<td>Project where the bid is placed.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","my","bids"],"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"e8389c78-98ab-4414-9fd4-0416eca4b61a","name":"Successful request","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"}],"url":"{{api_url}}/v2/my/bids"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.16.0"},{"key":"Date","value":"Tue, 14 May 2019 12:12:49 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept"},{"key":"X-Auth-Status","value":"true"},{"key":"X-RateLimit-Limit","value":"1200 per hour"},{"key":"X-RateLimit-Remaining","value":"1197"},{"key":"X-Request-Id","value":"a3dfdaae-1b20-4121-9256-4a575b4cbdb9"},{"key":"Cache-Control","value":"no-cache, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Content-Language","value":"en"},{"key":"X-Powered-By","value":"api.freelancehunt.com"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 3116750,\n            \"type\": \"bid\",\n            \"attributes\": {\n                \"days\": 1,\n                \"safe_type\": \"employer\",\n                \"budget\": {\n                    \"amount\": 400,\n                    \"currency\": \"UAH\"\n                },\n                \"comment\": \"Choose me and we can fix it!\",\n                \"status\": \"rejected\",\n                \"is_hidden\": false,\n                \"is_winner\": false,\n                \"freelancer\": {\n                    \"id\": 3166,\n                    \"type\": \"freelancer\",\n                    \"login\": \"raznomir\",\n                    \"first_name\": \"Mikhail\",\n                    \"last_name\": \"Tereshchenko\",\n                    \"avatar\": {\n                        \"small\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/50/raznomir.png\",\n                            \"width\": 50,\n                            \"height\": 50\n                        },\n                        \"large\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/225/raznomir.png\",\n                            \"width\": 255,\n                            \"height\": 255\n                        }\n                    },\n                    \"self\": \"http://api.freelancehunt.com/v2/freelancers/3166\"\n                },\n                \"project\": {\n                    \"id\": 298088,\n                    \"type\": \"project\",\n                    \"name\": \"Нарисовать одну сцену в необходимой стилистике.\",\n                    \"status\": {\n                        \"id\": 23,\n                        \"name\": \"Project expired\"\n                    },\n                    \"safe_type\": \"split\",\n                    \"budget\": null,\n                    \"self\": \"http://api.freelancehunt.com/v2/projects/298088\"\n                },\n                \"attachment\": null,\n                \"published_at\": \"2018-01-26T13:49:29+02:00\"\n            }\n        },\n        {\n            \"id\": 3139988,\n            \"type\": \"bid\",\n            \"attributes\": {\n                \"days\": 2,\n                \"safe_type\": \"employer\",\n                \"budget\": {\n                    \"amount\": 2400,\n                    \"currency\": \"UAH\"\n                },\n                \"comment\": \"Read the tips for writing a comment on a bet.\",\n                \"status\": \"active\",\n                \"is_hidden\": false,\n                \"is_winner\": true,\n                \"freelancer\": {\n                    \"id\": 3166,\n                    \"type\": \"freelancer\",\n                    \"login\": \"raznomir\",\n                    \"first_name\": \"Mikhail\",\n                    \"last_name\": \"Tereshchenko\",\n                    \"avatar\": {\n                        \"small\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/50/raznomir.png\",\n                            \"width\": 50,\n                            \"height\": 50\n                        },\n                        \"large\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/225/raznomir.png\",\n                            \"width\": 255,\n                            \"height\": 255\n                        }\n                    },\n                    \"self\": \"http://api.freelancehunt.com/v2/freelancers/3166\"\n                },\n                \"project\": {\n                    \"id\": 299164,\n                    \"type\": \"project\",\n                    \"name\": \"API проект с выбранным фрилансером\",\n                    \"status\": {\n                        \"id\": 13,\n                        \"name\": \"Contractor chosen\"\n                    },\n                    \"safe_type\": \"employer\",\n                    \"budget\": {\n                        \"amount\": 2300,\n                        \"currency\": \"UAH\"\n                    },\n                    \"self\": \"http://api.freelancehunt.com/v2/projects/299164\"\n                },\n                \"attachment\": null,\n                \"published_at\": \"2019-02-21T14:09:08+02:00\"\n            }\n        },\n        {\n            \"id\": 3140021,\n            \"type\": \"bid\",\n            \"attributes\": {\n                \"days\": 1,\n                \"safe_type\": \"employer\",\n                \"budget\": {\n                    \"amount\": 1000,\n                    \"currency\": \"UAH\"\n                },\n                \"comment\": \"Bid to be chosen\",\n                \"status\": \"revoked\",\n                \"is_hidden\": false,\n                \"is_winner\": false,\n                \"freelancer\": {\n                    \"id\": 3166,\n                    \"type\": \"freelancer\",\n                    \"login\": \"raznomir\",\n                    \"first_name\": \"Mikhail\",\n                    \"last_name\": \"Tereshchenko\",\n                    \"avatar\": {\n                        \"small\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/50/raznomir.png\",\n                            \"width\": 50,\n                            \"height\": 50\n                        },\n                        \"large\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/225/raznomir.png\",\n                            \"width\": 255,\n                            \"height\": 255\n                        }\n                    },\n                    \"self\": \"http://api.freelancehunt.com/v2/freelancers/3166\"\n                },\n                \"project\": {\n                    \"id\": 297444,\n                    \"type\": \"project\",\n                    \"name\": \"Перенести товары с магазина  Woocomerce на Opnecart\",\n                    \"status\": {\n                        \"id\": 11,\n                        \"name\": \"Open for proposals\"\n                    },\n                    \"safe_type\": \"employer\",\n                    \"budget\": null,\n                    \"self\": \"http://api.freelancehunt.com/v2/projects/297444\"\n                },\n                \"attachment\": null,\n                \"published_at\": \"2018-01-27T19:59:24+02:00\"\n            }\n        },\n        {\n            \"id\": 3140023,\n            \"type\": \"bid\",\n            \"attributes\": {\n                \"days\": 2,\n                \"safe_type\": \"employer\",\n                \"budget\": {\n                    \"amount\": 1001,\n                    \"currency\": \"UAH\"\n                },\n                \"comment\": \"Bid by F able to propose direct payment\",\n                \"status\": \"active\",\n                \"is_hidden\": false,\n                \"is_winner\": true,\n                \"freelancer\": {\n                    \"id\": 3166,\n                    \"type\": \"freelancer\",\n                    \"login\": \"raznomir\",\n                    \"first_name\": \"Mikhail\",\n                    \"last_name\": \"Tereshchenko\",\n                    \"avatar\": {\n                        \"small\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/50/raznomir.png\",\n                            \"width\": 50,\n                            \"height\": 50\n                        },\n                        \"large\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/225/raznomir.png\",\n                            \"width\": 255,\n                            \"height\": 255\n                        }\n                    },\n                    \"self\": \"http://api.freelancehunt.com/v2/freelancers/3166\"\n                },\n                \"project\": {\n                    \"id\": 299187,\n                    \"type\": \"project\",\n                    \"name\": \"API conditions test by E w safes but few pos reviews(direct pay deny)\",\n                    \"status\": {\n                        \"id\": 13,\n                        \"name\": \"Contractor chosen\"\n                    },\n                    \"safe_type\": \"employer\",\n                    \"budget\": {\n                        \"amount\": 1000,\n                        \"currency\": \"UAH\"\n                    },\n                    \"self\": \"http://api.freelancehunt.com/v2/projects/299187\"\n                },\n                \"attachment\": null,\n                \"published_at\": \"2017-02-21T14:01:52+02:00\"\n            }\n        },\n        {\n            \"id\": 3140024,\n            \"type\": \"bid\",\n            \"attributes\": {\n                \"days\": 2,\n                \"safe_type\": \"employer\",\n                \"budget\": {\n                    \"amount\": 1001,\n                    \"currency\": \"UAH\"\n                },\n                \"comment\": \"Bid by F able to propose direct payment\",\n                \"status\": \"active\",\n                \"is_hidden\": false,\n                \"is_winner\": true,\n                \"freelancer\": {\n                    \"id\": 3166,\n                    \"type\": \"freelancer\",\n                    \"login\": \"raznomir\",\n                    \"first_name\": \"Mikhail\",\n                    \"last_name\": \"Tereshchenko\",\n                    \"avatar\": {\n                        \"small\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/50/raznomir.png\",\n                            \"width\": 50,\n                            \"height\": 50\n                        },\n                        \"large\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/225/raznomir.png\",\n                            \"width\": 255,\n                            \"height\": 255\n                        }\n                    },\n                    \"self\": \"http://api.freelancehunt.com/v2/freelancers/3166\"\n                },\n                \"project\": {\n                    \"id\": 299188,\n                    \"type\": \"project\",\n                    \"name\": \"API conditions test by E w enough pos reviews but no safes(direct pay deny)\",\n                    \"status\": {\n                        \"id\": 13,\n                        \"name\": \"Contractor chosen\"\n                    },\n                    \"safe_type\": \"employer\",\n                    \"budget\": {\n                        \"amount\": 1000,\n                        \"currency\": \"UAH\"\n                    },\n                    \"self\": \"http://api.freelancehunt.com/v2/projects/299188\"\n                },\n                \"attachment\": null,\n                \"published_at\": \"2017-02-21T14:01:52+02:00\"\n            }\n        },\n        {\n            \"id\": 3140026,\n            \"type\": \"bid\",\n            \"attributes\": {\n                \"days\": 2,\n                \"safe_type\": \"employer\",\n                \"budget\": {\n                    \"amount\": 1001,\n                    \"currency\": \"UAH\"\n                },\n                \"comment\": \"Bid by F able to propose direct payment\",\n                \"status\": \"active\",\n                \"is_hidden\": false,\n                \"is_winner\": true,\n                \"freelancer\": {\n                    \"id\": 3166,\n                    \"type\": \"freelancer\",\n                    \"login\": \"raznomir\",\n                    \"first_name\": \"Mikhail\",\n                    \"last_name\": \"Tereshchenko\",\n                    \"avatar\": {\n                        \"small\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/50/raznomir.png\",\n                            \"width\": 50,\n                            \"height\": 50\n                        },\n                        \"large\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/225/raznomir.png\",\n                            \"width\": 255,\n                            \"height\": 255\n                        }\n                    },\n                    \"self\": \"http://api.freelancehunt.com/v2/freelancers/3166\"\n                },\n                \"project\": {\n                    \"id\": 299190,\n                    \"type\": \"project\",\n                    \"name\": \"API conditions test in personal project(direct pay deny)\",\n                    \"status\": {\n                        \"id\": 13,\n                        \"name\": \"Contractor chosen\"\n                    },\n                    \"safe_type\": null,\n                    \"budget\": {\n                        \"amount\": 1000,\n                        \"currency\": \"UAH\"\n                    },\n                    \"self\": \"http://api.freelancehunt.com/v2/projects/299190\"\n                },\n                \"attachment\": null,\n                \"published_at\": \"2017-02-21T14:01:52+02:00\"\n            }\n        },\n        {\n            \"id\": 3140028,\n            \"type\": \"bid\",\n            \"attributes\": {\n                \"days\": 2,\n                \"safe_type\": \"employer\",\n                \"budget\": {\n                    \"amount\": 1001,\n                    \"currency\": \"UAH\"\n                },\n                \"comment\": \"Bid by F able to propose direct payment\",\n                \"status\": \"active\",\n                \"is_hidden\": false,\n                \"is_winner\": true,\n                \"freelancer\": {\n                    \"id\": 3166,\n                    \"type\": \"freelancer\",\n                    \"login\": \"raznomir\",\n                    \"first_name\": \"Mikhail\",\n                    \"last_name\": \"Tereshchenko\",\n                    \"avatar\": {\n                        \"small\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/50/raznomir.png\",\n                            \"width\": 50,\n                            \"height\": 50\n                        },\n                        \"large\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/225/raznomir.png\",\n                            \"width\": 255,\n                            \"height\": 255\n                        }\n                    },\n                    \"self\": \"http://api.freelancehunt.com/v2/freelancers/3166\"\n                },\n                \"project\": {\n                    \"id\": 299192,\n                    \"type\": \"project\",\n                    \"name\": \"API conditions test(bsafe denied because freelancer legal not approved)\",\n                    \"status\": {\n                        \"id\": 13,\n                        \"name\": \"Contractor chosen\"\n                    },\n                    \"safe_type\": \"employer\",\n                    \"budget\": {\n                        \"amount\": 1000,\n                        \"currency\": \"UAH\"\n                    },\n                    \"self\": \"http://api.freelancehunt.com/v2/projects/299192\"\n                },\n                \"attachment\": null,\n                \"published_at\": \"2017-02-21T14:01:52+02:00\"\n            }\n        }\n    ],\n    \"links\": {\n        \"self\": \"http://api.freelancehunt.com/v2/my/bids\"\n    }\n}"}],"_postman_id":"16a2c8ba-a84e-450c-9745-49f0c3f50689"},{"name":"Revoke bid by freelancer","event":[{"listen":"prerequest","script":{"id":"620572ef-e697-438a-9a2d-79fe9b57883b","exec":[""],"type":"text/javascript"}},{"listen":"test","script":{"id":"831dce65-6a9d-4523-91fd-a033df40d610","exec":[""],"type":"text/javascript"}}],"id":"57750fe3-3e84-4de7-b863-18b38447ada8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}"}],"url":"{{api_url}}/v2/projects/{{project_id}}/bids/{{bid_id}}/revoke","urlObject":{"path":["v2","projects","{{project_id}}","bids","{{bid_id}}","revoke"],"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"2059f3ad-7623-48be-9adf-895d529cd698","name":"Successful request","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"}],"url":"{{api_url}}/v2/projects/297091/bids/3140007/revoke"},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.16.0"},{"key":"Date","value":"Tue, 14 May 2019 12:13:38 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept"},{"key":"X-Auth-Status","value":"true"},{"key":"X-RateLimit-Limit","value":"1200 per hour"},{"key":"X-RateLimit-Remaining","value":"1195"},{"key":"X-Request-Id","value":"35e41849-c977-44e2-87bf-9d93dbb1c346"},{"key":"Cache-Control","value":"no-cache, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Content-Language","value":"en"},{"key":"X-Powered-By","value":"api.freelancehunt.com"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"57750fe3-3e84-4de7-b863-18b38447ada8"},{"name":"Restore bid","event":[{"listen":"prerequest","script":{"id":"620572ef-e697-438a-9a2d-79fe9b57883b","exec":[""],"type":"text/javascript"}},{"listen":"test","script":{"id":"831dce65-6a9d-4523-91fd-a033df40d610","exec":[""],"type":"text/javascript"}}],"id":"36a0ff2b-e782-47d9-9179-2344c6fb451b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}"}],"url":"{{api_url}}/v2/projects/{{project_id}}/bids/{{bid_id}}/restore","urlObject":{"path":["v2","projects","{{project_id}}","bids","{{bid_id}}","restore"],"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"3c0cfa32-65ef-4bfb-8205-2804afe24560","name":"Successful request","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"}],"url":"{{api_url}}/v2/projects/297091/bids/3140007/restore"},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.16.0"},{"key":"Date","value":"Mon, 13 May 2019 14:15:45 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept"},{"key":"X-Auth-Status","value":"true"},{"key":"X-RateLimit-Limit","value":"1200 per hour"},{"key":"X-RateLimit-Remaining","value":"1189"},{"key":"X-Request-Id","value":"7e55c799-756d-4f21-b7b6-eccf59587b9f"},{"key":"Cache-Control","value":"no-cache, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Content-Language","value":"en"},{"key":"X-Powered-By","value":"api.freelancehunt.com"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"36a0ff2b-e782-47d9-9179-2344c6fb451b"},{"name":"Reject bid by employer","event":[{"listen":"prerequest","script":{"id":"620572ef-e697-438a-9a2d-79fe9b57883b","exec":[""],"type":"text/javascript"}},{"listen":"test","script":{"id":"831dce65-6a9d-4523-91fd-a033df40d610","exec":[""],"type":"text/javascript"}}],"id":"fcfb89db-a1ae-4e63-a634-5e28318bde5f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}"}],"url":"{{api_url}}/v2/projects/{{project_id}}/bids/{{bid_id}}/reject","urlObject":{"path":["v2","projects","{{project_id}}","bids","{{bid_id}}","reject"],"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"501cd94f-a10d-4176-aabe-677319fa84e1","name":"Successful request","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"}],"url":"{{api_url}}/v2/projects/297091/bids/3140007/reject"},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.16.0"},{"key":"Date","value":"Mon, 13 May 2019 14:18:29 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept"},{"key":"X-Auth-Status","value":"true"},{"key":"X-RateLimit-Limit","value":"1200 per hour"},{"key":"X-RateLimit-Remaining","value":"1191"},{"key":"X-Request-Id","value":"aea0ab94-573a-4cb2-b2e6-9ab51e994828"},{"key":"Cache-Control","value":"no-cache, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Content-Language","value":"en"},{"key":"X-Powered-By","value":"api.freelancehunt.com"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"fcfb89db-a1ae-4e63-a634-5e28318bde5f"},{"name":"Choose winner","event":[{"listen":"prerequest","script":{"id":"620572ef-e697-438a-9a2d-79fe9b57883b","exec":[""],"type":"text/javascript"}},{"listen":"test","script":{"id":"831dce65-6a9d-4523-91fd-a033df40d610","exec":[""],"type":"text/javascript"}}],"id":"b30fcdb9-840e-41a5-9f04-cab91e3bb529","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"comment\": \"I choose you!\"\n}"},"url":"{{api_url}}/v2/projects/{{project_id}}/bids/{{bid_id}}/choose","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Example</th>\n<th>Comment</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>comment</td>\n<td><code>I choose you!</code></td>\n<td>Comment for winner without HTML support</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","projects","{{project_id}}","bids","{{bid_id}}","choose"],"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"d57aa978-27a5-4ec4-bac2-e31e6b8d6566","name":"Successful request","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"comment\": \"I choose you!\"\n}"},"url":"{{api_url}}/v2/projects/299172/bids/3140007/choose"},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.16.0"},{"key":"Date","value":"Tue, 14 May 2019 12:56:57 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept"},{"key":"X-Auth-Status","value":"true"},{"key":"X-RateLimit-Limit","value":"1200 per hour"},{"key":"X-RateLimit-Remaining","value":"1199"},{"key":"X-Request-Id","value":"b3a6b629-130a-43b5-a949-e9f4b303c7cc"},{"key":"Cache-Control","value":"no-cache, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Content-Language","value":"en"},{"key":"X-Powered-By","value":"api.freelancehunt.com"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"b30fcdb9-840e-41a5-9f04-cab91e3bb529"},{"name":"Add bid","event":[{"listen":"prerequest","script":{"id":"620572ef-e697-438a-9a2d-79fe9b57883b","exec":[""],"type":"text/javascript"}},{"listen":"test","script":{"id":"831dce65-6a9d-4523-91fd-a033df40d610","exec":[""],"type":"text/javascript"}}],"id":"40f25f10-12e4-479f-862d-059b0c6719ef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"days\": 2,\n    \"safe_type\": \"employer\",\n    \"budget\": {\n        \"amount\": 5000,\n        \"currency\": \"UAH\"\n    },\n    \"comment\": \"I can do it for you in two days if you choose me! Write me and we for more details!\",\n    \"is_hidden\": true\n}"},"url":"{{api_url}}/v2/projects/{{project_id}}/bids","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Example</th>\n<th>Comment</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>days</td>\n<td><code>2</code></td>\n<td>Project duration in days</td>\n</tr>\n<tr>\n<td>budget</td>\n<td><code>{\"amount\": 2300, \"currency\": \"UAH\"}</code></td>\n<td>Should be object with <code>amount</code> and <code>currency</code></td>\n</tr>\n<tr>\n<td>safe_type</td>\n<td><code>split</code></td>\n<td><code>null</code> - Direct payment <br /><code>employer</code> - Safe (fee is paid by employer)<br /><code>developer</code> - Safe (fee is paid by freelancer) <br /><code>split</code> - Safe (fee is paid in halves)<br /><code>employer_cashless</code> - Business Safe</td>\n</tr>\n<tr>\n<td>comment</td>\n<td><code>I can do it for you!</code></td>\n<td>Bid comment without HTML support</td>\n</tr>\n<tr>\n<td>is_hidden</td>\n<td><code>true</code></td>\n<td>Set <code>true</code> if you want to hide your bid (works only for Profile Plus)</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","projects","{{project_id}}","bids"],"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"96149d06-1cf8-43b3-9513-5a9624538bf2","name":"Successful request","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"days\": 2,\n    \"safe_type\": \"employer\",\n    \"budget\": {\n        \"amount\": 2300,\n        \"currency\": \"UAH\"\n    },\n    \"comment\": \"I can do it for you in two days if you choose me! Write me and we for more details!\",\n    \"is_hidden\": true\n}"},"url":"{{api_url}}/v2/projects/299172/bids"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.16.0"},{"key":"Date","value":"Tue, 14 May 2019 12:56:28 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept"},{"key":"X-Auth-Status","value":"true"},{"key":"X-RateLimit-Limit","value":"1200 per hour"},{"key":"X-RateLimit-Remaining","value":"1197"},{"key":"X-Request-Id","value":"73945a9a-2e0c-43b5-9e6e-f8f6a3f13cc6"},{"key":"Pragma","value":"no-cache"},{"key":"Cache-Control","value":"no-cache, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Content-Language","value":"en"},{"key":"X-Powered-By","value":"api.freelancehunt.com"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 3140040,\n        \"type\": \"bid\",\n        \"attributes\": {\n            \"days\": 2,\n            \"safe_type\": \"employer\",\n            \"budget\": {\n                \"amount\": 5000,\n                \"currency\": \"UAH\"\n            },\n            \"comment\": \"I can do it for you in two days if you choose me! Write me and we for more details!\",\n            \"status\": \"active\",\n            \"is_hidden\": false,\n            \"is_winner\": false,\n            \"freelancer\": {\n                \"id\": 3166,\n                \"type\": \"freelancer\",\n                \"login\": \"raznomir\",\n                \"first_name\": \"Mikhail\",\n                \"last_name\": \"Tereshchenko\",\n                \"avatar\": {\n                    \"small\": {\n                        \"url\": \"https://content.freelancehunt.com/profile/photo/50/raznomir.png\",\n                        \"width\": 50,\n                        \"height\": 50\n                    },\n                    \"large\": {\n                        \"url\": \"https://content.freelancehunt.com/profile/photo/225/raznomir.png\",\n                        \"width\": 255,\n                        \"height\": 255\n                    }\n                },\n                \"self\": \"http://api.freelancehunt.com/v2/freelancers/3166\"\n            },\n            \"project\": {\n                \"id\": 299172,\n                \"type\": \"project\",\n                \"name\": \"Project with bids\",\n                \"status\": {\n                    \"id\": 11,\n                    \"name\": \"Open for proposals\"\n                },\n                \"safe_type\": \"employer\",\n                \"budget\": {\n                    \"amount\": 2300,\n                    \"currency\": \"UAH\"\n                },\n                \"self\": \"http://api.freelancehunt.com/v2/projects/299172\"\n            },\n            \"attachment\": null,\n            \"published_at\": \"2018-04-15T23:44:05+03:00\"\n        }\n    },\n    \"links\": {\n        \"self\": \"http://api.freelancehunt.com/v2/projects/299172/bids\"\n    }\n}"}],"_postman_id":"40f25f10-12e4-479f-862d-059b0c6719ef"}],"id":"d327b03a-1ab8-4c5f-b060-63a8216c1d4e","_postman_id":"d327b03a-1ab8-4c5f-b060-63a8216c1d4e","description":""},{"name":"Workspaces","item":[{"name":"Workspaces list","id":"89cc45f4-c92b-4696-904a-f5c17d92d664","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{token}}"}],"url":"{{api_url}}/v2/my/workspaces/projects","description":"<h3 id=\"filters\">Filters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>project_id</td>\n<td>integer</td>\n<td>Show workspaces only from provided project ID.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"relational-data-in-attributes\">Relational data in attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>project</td>\n<td></td>\n</tr>\n<tr>\n<td>employer</td>\n<td></td>\n</tr>\n<tr>\n<td>freelancer</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","my","workspaces","projects"],"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"eb63b4e3-bd04-403b-80f7-d5afed33f20d","name":"Successful request","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{token}}"}],"url":"{{api_url}}/v2/my/workspaces/projects"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.16.0"},{"key":"Date","value":"Tue, 14 May 2019 13:57:01 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept"},{"key":"X-Auth-Status","value":"true"},{"key":"X-RateLimit-Limit","value":"1200 per hour"},{"key":"X-RateLimit-Remaining","value":"1194"},{"key":"X-Request-Id","value":"04fcb239-842e-45fd-8b59-2d50f5bcacb7"},{"key":"Cache-Control","value":"no-cache, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Content-Language","value":"en"},{"key":"X-Powered-By","value":"api.freelancehunt.com"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 2237325,\n            \"type\": \"project_workspace\",\n            \"attributes\": {\n                \"development_ends_at\": null,\n                \"conditions\": {\n                    \"days\": 2,\n                    \"safe_type\": \"employer\",\n                    \"budget\": {\n                        \"amount\": 2400,\n                        \"currency\": \"UAH\"\n                    },\n                    \"confirmed_by\": {\n                        \"employer\": false,\n                        \"freelancer\": false\n                    },\n                    \"confirmed_at\": null\n                },\n                \"project\": {\n                    \"id\": 299164,\n                    \"type\": \"project\",\n                    \"name\": \"Need small fixes\",\n                    \"status\": {\n                        \"id\": 13,\n                        \"name\": \"Contractor chosen\"\n                    },\n                    \"safe_type\": \"employer\",\n                    \"budget\": {\n                        \"amount\": 2300,\n                        \"currency\": \"UAH\"\n                    },\n                    \"self\": \"http://api.freelancehunt.com/v2/projects/299164\"\n                },\n                \"employer\": {\n                    \"id\": 4,\n                    \"type\": \"employer\",\n                    \"login\": \"freelancehunt\",\n                    \"first_name\": \"Freelancehunt\",\n                    \"last_name\": \".\",\n                    \"avatar\": {\n                        \"small\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/50/freelancehunt.png\",\n                            \"width\": 50,\n                            \"height\": 50\n                        },\n                        \"large\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/225/freelancehunt.png\",\n                            \"width\": 255,\n                            \"height\": 255\n                        }\n                    },\n                    \"self\": \"http://api.freelancehunt.com/v2/employers/4\"\n                },\n                \"freelancer\": {\n                    \"id\": 3166,\n                    \"type\": \"freelancer\",\n                    \"login\": \"raznomir\",\n                    \"first_name\": \"Mikhail\",\n                    \"last_name\": \"Tereshchenko\",\n                    \"avatar\": {\n                        \"small\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/50/raznomir.png\",\n                            \"width\": 50,\n                            \"height\": 50\n                        },\n                        \"large\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/225/raznomir.png\",\n                            \"width\": 255,\n                            \"height\": 255\n                        }\n                    },\n                    \"self\": \"http://api.freelancehunt.com/v2/freelancers/3166\"\n                },\n                \"arbitrage_started_at\": null\n            },\n            \"links\": {\n                \"self\": {\n                    \"api\": \"http://api.freelancehunt.com/v2/my/workspaces/projects/2237325\",\n                    \"web\": \"http://freelancehunt.com/mailbox/read/thread/2237325\"\n                },\n                \"thread\": \"http://api.freelancehunt.com/v2/threads/2237325\"\n            }\n        }\n    ],\n    \"links\": {\n        \"self\": \"http://api.freelancehunt.com/v2/my/workspaces/projects\"\n    }\n}"}],"_postman_id":"89cc45f4-c92b-4696-904a-f5c17d92d664"},{"name":"Workspace details","id":"3d4bda86-b0e0-4e88-8e43-b0a0414d2503","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{api_url}}/v2/my/workspaces/projects/{{workspace_id}}","description":"<h3 id=\"relational-data-in-attributes\">Relational data in attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>project</td>\n<td></td>\n</tr>\n<tr>\n<td>employer</td>\n<td></td>\n</tr>\n<tr>\n<td>freelancer</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","my","workspaces","projects","{{workspace_id}}"],"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"e5a84875-a7a6-4b18-a68c-da06c90537ab","name":"Successful request","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{api_url}}/v2/my/workspaces/projects/{{workspace_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.16.0"},{"key":"Date","value":"Tue, 14 May 2019 13:58:05 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept"},{"key":"X-Auth-Status","value":"true"},{"key":"X-RateLimit-Limit","value":"1200 per hour"},{"key":"X-RateLimit-Remaining","value":"1191"},{"key":"X-Request-Id","value":"0d386429-d62d-4507-bee1-6c946153085e"},{"key":"Cache-Control","value":"no-cache, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Content-Language","value":"en"},{"key":"X-Powered-By","value":"api.freelancehunt.com"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 2237338,\n        \"type\": \"project_workspace\",\n        \"attributes\": {\n            \"development_ends_at\": \"2019-04-26T16:06:50+03:00\",\n            \"conditions\": {\n                \"days\": 1,\n                \"safe_type\": null,\n                \"budget\": {\n                    \"amount\": 1000,\n                    \"currency\": \"UAH\"\n                },\n                \"confirmed_by\": {\n                    \"employer\": true,\n                    \"freelancer\": true\n                },\n                \"confirmed_at\": \"2019-04-25T16:06:50+03:00\"\n            },\n            \"project\": {\n                \"id\": 299178,\n                \"type\": \"project\",\n                \"name\": \"Need small fixes\",\n                \"status\": {\n                    \"id\": 14,\n                    \"name\": \"Project ongoing\"\n                },\n                \"safe_type\": null,\n                \"budget\": {\n                    \"amount\": 1000,\n                    \"currency\": \"UAH\"\n                },\n                \"self\": \"https://api.freelancehunt.com/v2/projects/299178\"\n            },\n            \"employer\": {\n                \"id\": 38444,\n                \"type\": \"employer\",\n                \"login\": \"jeweller\",\n                \"first_name\": \"Oleg\",\n                \"last_name\": \"V.\",\n                \"avatar\": {\n                    \"small\": {\n                        \"url\": \"https://content.freelancehunt.com/profile/photo/50/jeweller.png\",\n                        \"width\": 50,\n                        \"height\": 50\n                    },\n                    \"large\": {\n                        \"url\": \"https://content.freelancehunt.com/profile/photo/225/jeweller.png\",\n                        \"width\": 255,\n                        \"height\": 255\n                    }\n                },\n                \"self\": \"https://api.freelancehunt.com/v2/employers/38444\"\n            },\n            \"freelancer\": {\n                \"id\": 5725,\n                \"type\": \"freelancer\",\n                \"login\": \"alex_yar\",\n                \"first_name\": \"Andrey\",\n                \"last_name\": \"Y.\",\n                \"avatar\": {\n                    \"small\": {\n                        \"url\": \"https://content.freelancehunt.com/profile/photo/50/alex_yar.png\",\n                        \"width\": 50,\n                        \"height\": 50\n                    },\n                    \"large\": {\n                        \"url\": \"https://content.freelancehunt.com/profile/photo/225/alex_yar.png\",\n                        \"width\": 255,\n                        \"height\": 255\n                    }\n                },\n                \"self\": \"https://api.freelancehunt.com/v2/freelancers/5725\"\n            }\n        },\n        \"links\": {\n            \"self\": {\n                \"api\": \"https://api.freelancehunt.com/v2/my/workspaces/projects/2237338\",\n                \"web\": \"https://freelancehunt.com/mailbox/read/thread/2237338\"\n            },\n            \"thread\": \"https://api.freelancehunt.com/v2/threads/2237338\"\n        }\n    },\n    \"links\": {\n        \"self\": \"https://api.freelancehunt.com/v2/my/workspaces/projects/2237338\"\n    }\n}"}],"_postman_id":"3d4bda86-b0e0-4e88-8e43-b0a0414d2503"},{"name":"Propose new conditions","id":"51f956bf-367a-41f9-9b7a-1c465e6bcfed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{token}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"days\": 2,\n    \"safe_type\": \"split\",\n    \"budget\": {\n        \"amount\": 2000,\n        \"currency\": \"UAH\"\n    },\n    \"comment\": \"Budget too low!\"\n}"},"url":"{{api_url}}/v2/my/workspaces/projects/{{workspace_id}}/propose-conditions","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Example</th>\n<th>Comment</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>days</td>\n<td><code>2</code></td>\n<td>Project duration in days</td>\n</tr>\n<tr>\n<td>budget</td>\n<td><code>{\"amount\": 2300, \"currency\": \"UAH\"}</code></td>\n<td>Should be object with <code>amount</code> and <code>currency</code></td>\n</tr>\n<tr>\n<td>safe_type</td>\n<td><code>split</code></td>\n<td><code>null</code> - Direct payment <br /><code>employer</code> - Safe (fee is paid by employer)<br /><code>developer</code> - Safe (fee is paid by freelancer) <br /><code>split</code> - Safe (fee is paid in halves)<br /><code>employer_cashless</code> - Business Safe</td>\n</tr>\n<tr>\n<td>comment</td>\n<td><code>Budget too low!</code></td>\n<td>Bid comment without HTML support</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","my","workspaces","projects","{{workspace_id}}","propose-conditions"],"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"11abab14-4301-4983-bb46-e1c6e6e09548","name":"Successful request","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{token}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"days\": 2,\n    \"safe_type\": \"split\",\n    \"budget\": {\n        \"amount\": 2000,\n        \"currency\": \"UAH\"\n    },\n    \"comment\": \"Budget too low!\"\n}"},"url":"{{api_url}}/v2/my/workspaces/projects/{{workspace_id}}/propose-conditions"},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.16.0"},{"key":"Date","value":"Tue, 14 May 2019 14:01:01 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept"},{"key":"X-Auth-Status","value":"true"},{"key":"X-RateLimit-Limit","value":"1200 per hour"},{"key":"X-RateLimit-Remaining","value":"1199"},{"key":"X-Request-Id","value":"779e62ca-6404-42ee-bc49-02a19c255dbc"},{"key":"Pragma","value":"no-cache"},{"key":"Cache-Control","value":"no-cache, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Content-Language","value":"en"},{"key":"X-Powered-By","value":"api.freelancehunt.com"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"51f956bf-367a-41f9-9b7a-1c465e6bcfed"},{"name":"Accept conditions","id":"a3d5c6e5-6052-48d6-b6b0-1879886c7b4e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{api_url}}/v2/my/workspaces/projects/{{workspace_id}}/accept-conditions","urlObject":{"path":["v2","my","workspaces","projects","{{workspace_id}}","accept-conditions"],"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"338916e5-85fa-45a4-a85e-f413920fe91f","name":"Successful request","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{api_url}}/v2/my/workspaces/projects/{{workspace_id}}/accept-conditions"},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.16.0"},{"key":"Date","value":"Wed, 15 May 2019 10:10:22 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept"},{"key":"X-Auth-Status","value":"true"},{"key":"X-RateLimit-Limit","value":"1200 per hour"},{"key":"X-RateLimit-Remaining","value":"1199"},{"key":"X-Request-Id","value":"a5394b42-df3b-4db9-a754-b22147b185f5"},{"key":"Cache-Control","value":"no-cache, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Content-Language","value":"en"},{"key":"X-Powered-By","value":"api.freelancehunt.com"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"a3d5c6e5-6052-48d6-b6b0-1879886c7b4e"},{"name":"Reject conditions","id":"979af9bb-0d92-4d29-b5ee-5f0d56ce7ca6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{api_url}}/v2/my/workspaces/projects/{{workspace_id}}/reject-conditions","urlObject":{"path":["v2","my","workspaces","projects","{{workspace_id}}","reject-conditions"],"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"c1fbcbd5-3088-4af6-bba7-9cc78615476c","name":"Successful request","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{token}}"}],"url":"{{api_url}}/v2/my/workspaces/projects/{{workspace_id}}/reject-conditions"},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.16.0"},{"key":"Date","value":"Tue, 14 May 2019 14:03:42 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept"},{"key":"X-Auth-Status","value":"true"},{"key":"X-RateLimit-Limit","value":"1200 per hour"},{"key":"X-RateLimit-Remaining","value":"1199"},{"key":"X-Request-Id","value":"e344a799-58bb-4597-bdcf-a0a2c3343c1c"},{"key":"Cache-Control","value":"no-cache, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Content-Language","value":"en"},{"key":"X-Powered-By","value":"api.freelancehunt.com"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"979af9bb-0d92-4d29-b5ee-5f0d56ce7ca6"},{"name":"Extend project execution","id":"ae633410-f574-4bff-a510-6e0a7d41e999","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{token}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"days\": 3\n}"},"url":"{{api_url}}/v2/my/workspaces/projects/{{workspace_id}}/extend","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Example</th>\n<th>Comment</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>days</td>\n<td><code>2</code></td>\n<td>Days to extend the ongoing project execution.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","my","workspaces","projects","{{workspace_id}}","extend"],"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"8d29a8a9-a9b5-48d5-8eb2-48a02d5a46e5","name":"Successful request","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{token}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"days\": 3\n}"},"url":"{{api_url}}/v2/my/workspaces/projects/{{workspace_id}}/extend"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.16.0"},{"key":"Date","value":"Tue, 14 May 2019 14:12:15 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept"},{"key":"X-Auth-Status","value":"true"},{"key":"X-RateLimit-Limit","value":"1200 per hour"},{"key":"X-RateLimit-Remaining","value":"1199"},{"key":"X-Request-Id","value":"67ef1bfb-f102-4a2c-b944-873c14401d84"},{"key":"Cache-Control","value":"no-cache, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Content-Language","value":"en"},{"key":"X-Powered-By","value":"api.freelancehunt.com"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 2237341,\n        \"type\": \"project_workspace\",\n        \"attributes\": {\n            \"development_ends_at\": \"2020-01-24T18:58:09+02:00\",\n            \"conditions\": {\n                \"days\": 1,\n                \"safe_type\": \"employer\",\n                \"budget\": {\n                    \"amount\": 1001,\n                    \"currency\": \"UAH\"\n                },\n                \"confirmed_by\": {\n                    \"employer\": true,\n                    \"freelancer\": true\n                },\n                \"confirmed_at\": \"2019-04-08T15:18:50+03:00\"\n            },\n            \"project\": {\n                \"id\": 299181,\n                \"type\": \"project\",\n                \"name\": \"Web developer for re-designing\",\n                \"status\": {\n                    \"id\": 14,\n                    \"name\": \"Project ongoing\"\n                },\n                \"safe_type\": \"employer\",\n                \"budget\": {\n                    \"amount\": 1001,\n                    \"currency\": \"UAH\"\n                },\n                \"self\": \"http://api.freelancehunt.com/v2/projects/299181\"\n            },\n            \"employer\": {\n                \"id\": 38444,\n                \"type\": \"employer\",\n                \"login\": \"jeweller\",\n                \"first_name\": \"Oleg\",\n                \"last_name\": \"V.\",\n                \"avatar\": {\n                    \"small\": {\n                        \"url\": \"https://content.freelancehunt.com/profile/photo/50/jeweller.png\",\n                        \"width\": 50,\n                        \"height\": 50\n                    },\n                    \"large\": {\n                        \"url\": \"https://content.freelancehunt.com/profile/photo/225/jeweller.png\",\n                        \"width\": 255,\n                        \"height\": 255\n                    }\n                },\n                \"self\": \"http://api.freelancehunt.com/v2/employers/38444\"\n            },\n            \"freelancer\": {\n                \"id\": 5725,\n                \"type\": \"freelancer\",\n                \"login\": \"alex_yar\",\n                \"first_name\": \"Andrey\",\n                \"last_name\": \"Y.\",\n                \"avatar\": {\n                    \"small\": {\n                        \"url\": \"https://content.freelancehunt.com/profile/photo/50/alex_yar.png\",\n                        \"width\": 50,\n                        \"height\": 50\n                    },\n                    \"large\": {\n                        \"url\": \"https://content.freelancehunt.com/profile/photo/225/alex_yar.png\",\n                        \"width\": 255,\n                        \"height\": 255\n                    }\n                },\n                \"self\": \"http://api.freelancehunt.com/v2/freelancers/5725\"\n            },\n            \"arbitrage_started_at\": null\n        },\n        \"links\": {\n            \"self\": {\n                \"api\": \"http://api.freelancehunt.com/v2/my/workspaces/projects/2237341\",\n                \"web\": \"http://freelancehunt.com/mailbox/read/thread/2237341\"\n            },\n            \"thread\": \"http://api.freelancehunt.com/v2/threads/2237341\"\n        }\n    },\n    \"links\": {\n        \"self\": \"http://api.freelancehunt.com/v2/my/workspaces/projects/2237341/extend\"\n    }\n}"}],"_postman_id":"ae633410-f574-4bff-a510-6e0a7d41e999"},{"name":"Request arbitrage","id":"b46e12e2-4c81-48d9-9449-bd03f35ae838","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"comment_html\": \"Требую справедливости!\"\n}"},"url":"{{api_url}}/v2/my/workspaces/projects/{{workspace_id}}/request-arbitrage","description":"<h3 id=\"required-body-parameters\">Required Body Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>comment_html</td>\n<td>string</td>\n<td>Arbitrage request comment with HTML tags.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","my","workspaces","projects","{{workspace_id}}","request-arbitrage"],"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"5526de0d-94d3-4701-8b7b-beda0d869aa5","name":"Successful request","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"comment_html\": \"Требую справедливости!\"\n}"},"url":"{{api_url}}/v2/my/workspaces/projects/2237340/request-arbitrage"},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.16.0"},{"key":"Date","value":"Wed, 15 May 2019 10:11:14 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept"},{"key":"X-Auth-Status","value":"true"},{"key":"X-RateLimit-Limit","value":"1200 per hour"},{"key":"X-RateLimit-Remaining","value":"1199"},{"key":"X-Request-Id","value":"5f560a6a-10dd-418a-a556-f9c84ec75521"},{"key":"Cache-Control","value":"no-cache, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Content-Language","value":"en"},{"key":"X-Powered-By","value":"api.freelancehunt.com"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"b46e12e2-4c81-48d9-9449-bd03f35ae838"},{"name":"Close project as completed","id":"5586aceb-106a-40a6-802d-f8919418006f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"grades\": {\n\t\t\"quality\": 10,\n\t\t\"professionalism\": 10,\n\t\t\"cost\": 10,\n\t\t\"connectivity\": 9,\n\t\t\"schedule\": 10\n\t},\n    \"review\": \"Freelancer complete project fast and without questions!\"\n}"},"url":"{{api_url}}/v2/my/workspaces/projects/{{workspace_id}}/complete","description":"<h3 id=\"required-body-parameters\">Required Body Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>grades</td>\n<td>object</td>\n<td>Should be object with <code>quality</code>, <code>professionalism</code>, <code>cost</code>, <code>connectivity</code> and <code>schedule</code> grades from 1 to 10(integers).<br />Example: <code>{\"quality\": 10, \"professionalism\": 10, \"cost\": 10, \"connectivity\": 9, \"schedule\": 10}</code></td>\n</tr>\n<tr>\n<td>review</td>\n<td>string</td>\n<td>Freelancer review without HTML support.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","my","workspaces","projects","{{workspace_id}}","complete"],"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"a0bb60d6-c36d-4862-9bee-059083ba2146","name":"Successful request","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"grades\": {\n\t\t\"quality\": 10,\n\t\t\"professionalism\": 10,\n\t\t\"cost\": 10,\n\t\t\"connectivity\": 9,\n\t\t\"schedule\": 10\n\t},\n    \"review\": \"Freelancer complete project fast and without questions!\"\n}"},"url":"{{api_url}}/v2/my/workspaces/projects/{{workspace_id}}/complete"},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.16.0"},{"key":"Date","value":"Tue, 14 May 2019 14:21:50 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept"},{"key":"X-Auth-Status","value":"true"},{"key":"X-RateLimit-Limit","value":"1200 per hour"},{"key":"X-RateLimit-Remaining","value":"1198"},{"key":"X-Request-Id","value":"73525d30-b7ce-4ddd-a741-d4baf13413cf"},{"key":"Pragma","value":"no-cache"},{"key":"Cache-Control","value":"no-cache, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Content-Language","value":"en"},{"key":"X-Powered-By","value":"api.freelancehunt.com"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"5586aceb-106a-40a6-802d-f8919418006f"},{"name":"Close project as incompleted","id":"065c89dc-8f90-46f1-80e1-93138325b1a6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{token}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"grades\": {\n\t\t\"quality\": 1,\n\t\t\"professionalism\": 1,\n\t\t\"cost\": 10,\n\t\t\"connectivity\": 3,\n\t\t\"schedule\": 1\n\t},\n    \"review\": \"Freelancer did not know what to do, do not recommend him.\"\n}"},"url":"{{api_url}}/v2/my/workspaces/projects/{{workspace_id}}/incomplete","description":"<h3 id=\"required-body-parameters\">Required Body Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>grades</td>\n<td>object</td>\n<td>Should be object with <code>quality</code>, <code>professionalism</code>, <code>cost</code>, <code>connectivity</code> and <code>schedule</code> grades from 1 to 10(integers).<br />Example: <code>{\"quality\": 10, \"professionalism\": 10, \"cost\": 10, \"connectivity\": 9, \"schedule\": 10}</code></td>\n</tr>\n<tr>\n<td>review</td>\n<td>string</td>\n<td>Freelancer review without HTML support.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","my","workspaces","projects","{{workspace_id}}","incomplete"],"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"99c03b5d-c1a3-4f99-b459-e4ef4e113a37","name":"Successful request","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{token}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"grades\": {\n\t\t\"quality\": 1,\n\t\t\"professionalism\": 1,\n\t\t\"cost\": 10,\n\t\t\"connectivity\": 3,\n\t\t\"schedule\": 1\n\t},\n    \"review\": \"Freelancer did not know what to do, do not recommend him.\"\n}"},"url":"{{api_url}}/v2/my/workspaces/projects/{{workspace_id}}/incomplete"},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.16.0"},{"key":"Date","value":"Tue, 14 May 2019 14:25:01 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept"},{"key":"X-Auth-Status","value":"true"},{"key":"X-RateLimit-Limit","value":"1200 per hour"},{"key":"X-RateLimit-Remaining","value":"1197"},{"key":"X-Request-Id","value":"94ec277e-a77e-4e7f-b403-753106a6dc55"},{"key":"Pragma","value":"no-cache"},{"key":"Cache-Control","value":"no-cache, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Content-Language","value":"en"},{"key":"X-Powered-By","value":"api.freelancehunt.com"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"065c89dc-8f90-46f1-80e1-93138325b1a6"},{"name":"Close project without review","id":"7b64e7a7-4496-42ae-993d-5826842bb761","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{token}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"review\": \"I do not trust this freelancer.\"\n}"},"url":"{{api_url}}/v2/my/workspaces/projects/{{workspace_id}}/close","description":"<h3 id=\"required-body-parameters\">Required Body Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>review</td>\n<td>string</td>\n<td>Freelancer review without HTML support.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","my","workspaces","projects","{{workspace_id}}","close"],"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"b9eb1f7e-a23e-47e4-a0af-4d7144dcd812","name":"Successful request","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{token}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"review\": \"I do not trust this freelancer.\"\n}"},"url":"{{api_url}}/v2/my/workspaces/projects/{{workspace_id}}/close"},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.16.0"},{"key":"Date","value":"Tue, 14 May 2019 14:25:38 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept"},{"key":"X-Auth-Status","value":"true"},{"key":"X-RateLimit-Limit","value":"1200 per hour"},{"key":"X-RateLimit-Remaining","value":"1196"},{"key":"X-Request-Id","value":"d83ba51f-2937-4571-b837-210b71f96cf1"},{"key":"Pragma","value":"no-cache"},{"key":"Cache-Control","value":"no-cache, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Content-Language","value":"en"},{"key":"X-Powered-By","value":"api.freelancehunt.com"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"7b64e7a7-4496-42ae-993d-5826842bb761"},{"name":"Write a response review","id":"1a8c24f6-4f0f-4171-9ffb-79dd1309cf20","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{token}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"grades\": {\n\t\t\"pay\": 10,\n\t\t\"definition\": 8,\n\t\t\"requirements\": 10,\n\t\t\"connectivity\": 10\n\t},\n    \"review\": \"Good employer, I hope for further cooperation.\"\n}"},"url":"{{api_url}}/v2/my/workspaces/projects/{{workspace_id}}/review","description":"<h3 id=\"required-body-parameters\">Required Body Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>grades</td>\n<td>object</td>\n<td>Should be object with <code>pay</code>, <code>definition</code>, <code>requirements</code> and <code>connectivity</code> grades from 1 to 10(integers).<br />Example: <code>{\"pay\": 10, \"definition\": 10, \"requirements\": 10, \"connectivity\": 9}</code><br /><br />Ignored if it was a project with direct payment and closed as incompleted.</td>\n</tr>\n<tr>\n<td>review</td>\n<td>string</td>\n<td>Employer review without HTML support.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","my","workspaces","projects","{{workspace_id}}","review"],"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"c9235a03-2505-4973-bac7-2845334d124d","name":"Successful request","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{token}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"grades\": {\n\t\t\"pay\": 10,\n\t\t\"definition\": 8,\n\t\t\"requirements\": 10,\n\t\t\"connectivity\": 10\n\t},\n    \"review\": \"Good employer, I hope for further cooperation.\"\n}"},"url":"{{api_url}}/v2/my/workspaces/projects/{{workspace_id}}/review"},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.16.0"},{"key":"Date","value":"Tue, 14 May 2019 14:26:40 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept"},{"key":"X-Auth-Status","value":"true"},{"key":"X-RateLimit-Limit","value":"1200 per hour"},{"key":"X-RateLimit-Remaining","value":"1199"},{"key":"X-Request-Id","value":"b24232d1-ddaa-43bc-8cea-5b74ef831beb"},{"key":"Pragma","value":"no-cache"},{"key":"Cache-Control","value":"no-cache, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Content-Language","value":"en"},{"key":"X-Powered-By","value":"api.freelancehunt.com"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"1a8c24f6-4f0f-4171-9ffb-79dd1309cf20"}],"id":"7abb5d81-ff14-4d04-8d0f-e6fcf6609fb7","event":[{"listen":"prerequest","script":{"id":"ffde0908-cf12-484a-a99f-87f3cb5380f5","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"b28acf3a-1362-48ff-85ef-0e8108dfa3e7","type":"text/javascript","exec":[""]}}],"_postman_id":"7abb5d81-ff14-4d04-8d0f-e6fcf6609fb7","description":""},{"name":"Open projects list","event":[{"listen":"prerequest","script":{"id":"e09fbe47-123e-4ec1-9737-f481d3ebafc1","exec":[""],"type":"text/javascript"}},{"listen":"test","script":{"id":"b15c5d6c-09d4-4e3d-91d2-41ee4a8d054e","exec":[""],"type":"text/javascript"}}],"id":"0eed992e-18f1-4dc4-892d-22b9d896935b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"}],"url":"{{api_url}}/v2/projects","description":"<h3 id=\"default-behavior\">Default behavior</h3>\n<p>By default open projects will be shown. Premium projects sorting will be ignored.</p>\n<h3 id=\"filters\">Filters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>only_my_skills</td>\n<td>integer</td>\n<td>Only for freelancers. Show projects only with current freelancers skills.<br />Example: <code>/v2/projects?filter[only_my_skills]=1</code></td>\n</tr>\n<tr>\n<td>skill_id</td>\n<td>comma-separated list<br />of skill IDs</td>\n<td>Show projects only with provided skill ID.<br />Overrides <code>only_my_skills</code> filter.<br />Example: <code>/v2/projects?filter[skill_id]=69,99</code></td>\n</tr>\n<tr>\n<td>employer_id</td>\n<td>integer</td>\n<td>Show projects only from provided employer ID.</td>\n</tr>\n<tr>\n<td>only_for_plus</td>\n<td>integer</td>\n<td>Show projects only for freelancers with Plus-profile.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"relational-data-in-attributes\">Relational data in attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>employer</td>\n<td>Project's owner. May be <code>null</code> if project is for Plus-only freelancers and the client is not Plus-freelancer.</td>\n</tr>\n<tr>\n<td>freelancer</td>\n<td>Project's freelancer. May be <code>null</code> if the bid is not chosen by employer.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","projects"],"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"d9a07e9c-e2eb-4d4b-972c-ecd2535e8587","name":"Successful request","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"}],"url":"{{api_url}}/v2/projects"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.16.0"},{"key":"Date","value":"Tue, 14 May 2019 13:11:40 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept"},{"key":"X-Auth-Status","value":"true"},{"key":"X-RateLimit-Limit","value":"1200 per hour"},{"key":"X-RateLimit-Remaining","value":"1196"},{"key":"X-Request-Id","value":"04b203c9-8a08-4890-a9ac-952bc7da609e"},{"key":"Cache-Control","value":"no-cache, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Content-Language","value":"en"},{"key":"X-Powered-By","value":"api.freelancehunt.com"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 299165,\n            \"type\": \"project\",\n            \"attributes\": {\n                \"name\": \"Looking for Full stack developer\",\n                \"description\": \"Backend must be PHP like Yii or Laravel.\",\n                \"description_html\": \"<p>Backend must be PHP like Yii or Laravel.</p>\",\n                \"skills\": [\n                    {\n                        \"id\": 56,\n                        \"name\": \"1C\"\n                    }\n                ],\n                \"status\": {\n                    \"id\": 11,\n                    \"name\": \"Open for proposals\"\n                },\n                \"budget\": {\n                    \"amount\": 2300,\n                    \"currency\": \"UAH\"\n                },\n                \"bid_count\": 1,\n                \"is_remote_job\": false,\n                \"is_premium\": false,\n                \"is_only_for_plus\": false,\n                \"location\": null,\n                \"safe_type\": \"employer\",\n                \"is_personal\": null,\n                \"employer\": {\n                    \"id\": 23476,\n                    \"type\": \"employer\",\n                    \"login\": \"hello-world\",\n                    \"first_name\": \"Михаил\",\n                    \"last_name\": \"К.\",\n                    \"avatar\": {\n                        \"small\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/50/hello-world.png\",\n                            \"width\": 50,\n                            \"height\": 50\n                        },\n                        \"large\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/225/hello-world.png\",\n                            \"width\": 255,\n                            \"height\": 255\n                        }\n                    },\n                    \"self\": \"https://api.freelancehunt.com/v2/employers/23476\"\n                },\n                \"freelancer\": null,\n                \"updates\": [],\n                \"published_at\": \"2019-03-25T19:51:53+02:00\",\n                \"expired_at\": \"2019-04-01T16:51:53+03:00\"\n            },\n            \"links\": {\n                \"self\": {\n                    \"api\": \"https://api.freelancehunt.com/v2/projects/299165\",\n                    \"web\": \"https://freelancehunt.com/project/looking-for-full-stack-developer/299165.html\"\n                },\n                \"comments\": \"https://api.freelancehunt.com/v2/projects/299165/comments\",\n                \"bids\": \"https://api.freelancehunt.com/v2/projects/299165/bids\"\n            }\n        }\n    ],\n    \"links\": {\n        \"self\": \"https://api.freelancehunt.com/v2/projects\",\n        \"next\": \"https://api.freelancehunt.com/v2/projects?page[number]=2\",\n        \"last\": \"https://api.freelancehunt.com/v2/projects?page[number]=10\"\n    }\n}"}],"_postman_id":"0eed992e-18f1-4dc4-892d-22b9d896935b"},{"name":"Employer projects list","event":[{"listen":"prerequest","script":{"id":"620572ef-e697-438a-9a2d-79fe9b57883b","exec":[""],"type":"text/javascript"}},{"listen":"test","script":{"id":"831dce65-6a9d-4523-91fd-a033df40d610","exec":[""],"type":"text/javascript"}}],"id":"986d87f8-aecb-466f-9c51-f58e13d18307","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"}],"url":"{{api_url}}/v2/my/projects","description":"<p>Only for employers.</p>\n<h3 id=\"filters\">Filters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>skill_id</td>\n<td>comma-separated list<br />of skill IDs</td>\n<td>Show projects only with provided skill ID.</td>\n</tr>\n<tr>\n<td>status_id</td>\n<td>comma-separated list<br />of status IDs</td>\n<td>Show projects only with provided status ID.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"relational-data-in-attributes\">Relational data in attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>employer</td>\n<td>Project's owner.</td>\n</tr>\n<tr>\n<td>freelancer</td>\n<td>Chosen freelancer.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","my","projects"],"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"25b66e68-1b24-4e6f-a984-4edb439dbcf5","name":"Successful request","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"}],"url":"{{api_url}}/v2/my/projects"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.16.0"},{"key":"Date","value":"Tue, 14 May 2019 13:13:37 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept"},{"key":"X-Auth-Status","value":"true"},{"key":"X-RateLimit-Limit","value":"1200 per hour"},{"key":"X-RateLimit-Remaining","value":"1199"},{"key":"X-Request-Id","value":"13317fdc-0054-4bd2-9606-5c84a863e2d3"},{"key":"Cache-Control","value":"no-cache, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Content-Language","value":"en"},{"key":"X-Powered-By","value":"api.freelancehunt.com"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 299171,\n            \"type\": \"project\",\n            \"attributes\": {\n                \"name\": \"Need small fixes\",\n                \"description\": \"Small fixes for php yii2 open source web site.\",\n                \"description_html\": \"<p>Small fixes for php yii2 open source web site.</p>\",\n                \"skills\": [\n                    {\n                        \"id\": 56,\n                        \"name\": \"1C\"\n                    }\n                ],\n                \"status\": {\n                    \"id\": 11,\n                    \"name\": \"Open for proposals\"\n                },\n                \"budget\": {\n                    \"amount\": 2300,\n                    \"currency\": \"UAH\"\n                },\n                \"bid_count\": 0,\n                \"is_remote_job\": false,\n                \"is_premium\": false,\n                \"is_only_for_plus\": false,\n                \"location\": null,\n                \"safe_type\": \"employer\",\n                \"is_personal\": false,\n                \"employer\": {\n                    \"id\": 340096,\n                    \"type\": \"employer\",\n                    \"login\": \"ledpodarok\",\n                    \"first_name\": \"Anatoliy\",\n                    \"last_name\": \"S.\",\n                    \"avatar\": {\n                        \"small\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/50/ledpodarok.png\",\n                            \"width\": 50,\n                            \"height\": 50\n                        },\n                        \"large\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/225/ledpodarok.png\",\n                            \"width\": 255,\n                            \"height\": 255\n                        }\n                    },\n                    \"self\": \"http://api.freelancehunt.com/v2/employers/340096\"\n                },\n                \"freelancer\": null,\n                \"updates\": [],\n                \"published_at\": \"2018-04-15T23:44:05+03:00\",\n                \"expired_at\": \"2018-04-20T21:18:13+03:00\"\n            },\n            \"links\": {\n                \"self\": {\n                    \"api\": \"http://api.freelancehunt.com/v2/projects/299171\",\n                    \"web\": \"http://freelancehunt.com/project/need-small-fixes/299171.html\"\n                },\n                \"comments\": \"http://api.freelancehunt.com/v2/projects/299171/comments\",\n                \"bids\": \"http://api.freelancehunt.com/v2/projects/299171/bids\"\n            }\n        },\n        {\n            \"id\": 299173,\n            \"type\": \"project\",\n            \"attributes\": {\n                \"name\": \"Web developer for re-designing\",\n                \"description\": \"Web developer for re-designing and upgrading an Internet media.\",\n                \"description_html\": \"<p>Web developer for re-designing and upgrading an Internet media.</p>\",\n                \"skills\": [\n                    {\n                        \"id\": 56,\n                        \"name\": \"1C\"\n                    }\n                ],\n                \"status\": {\n                    \"id\": 11,\n                    \"name\": \"Open for proposals\"\n                },\n                \"budget\": {\n                    \"amount\": 2300,\n                    \"currency\": \"UAH\"\n                },\n                \"bid_count\": 0,\n                \"is_remote_job\": false,\n                \"is_premium\": false,\n                \"is_only_for_plus\": false,\n                \"location\": null,\n                \"safe_type\": \"employer\",\n                \"is_personal\": false,\n                \"employer\": {\n                    \"id\": 340096,\n                    \"type\": \"employer\",\n                    \"login\": \"ledpodarok\",\n                    \"first_name\": \"Anatoliy\",\n                    \"last_name\": \"S.\",\n                    \"avatar\": {\n                        \"small\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/50/ledpodarok.png\",\n                            \"width\": 50,\n                            \"height\": 50\n                        },\n                        \"large\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/225/ledpodarok.png\",\n                            \"width\": 255,\n                            \"height\": 255\n                        }\n                    },\n                    \"self\": \"http://api.freelancehunt.com/v2/employers/340096\"\n                },\n                \"freelancer\": null,\n                \"updates\": [],\n                \"published_at\": \"2018-04-15T23:44:05+03:00\",\n                \"expired_at\": \"2018-04-20T21:18:13+03:00\"\n            },\n            \"links\": {\n                \"self\": {\n                    \"api\": \"http://api.freelancehunt.com/v2/projects/299173\",\n                    \"web\": \"http://freelancehunt.com/project/web-developer-for-re-designing/299173.html\"\n                },\n                \"comments\": \"http://api.freelancehunt.com/v2/projects/299173/comments\",\n                \"bids\": \"http://api.freelancehunt.com/v2/projects/299173/bids\"\n            }\n        }\n    ],\n    \"links\": {\n        \"self\": \"http://api.freelancehunt.com/v2/my/projects\"\n    }\n}"}],"_postman_id":"986d87f8-aecb-466f-9c51-f58e13d18307"},{"name":"Project details","event":[{"listen":"prerequest","script":{"id":"e09fbe47-123e-4ec1-9737-f481d3ebafc1","exec":[""],"type":"text/javascript"}},{"listen":"test","script":{"id":"b15c5d6c-09d4-4e3d-91d2-41ee4a8d054e","exec":[""],"type":"text/javascript"}}],"id":"8923b6c0-65cb-447f-b0e8-56b856ac48ce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"}],"url":"{{api_url}}/v2/projects/{{project_id}}","description":"<h3 id=\"relational-data-in-attributes\">Relational data in attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>employer</td>\n<td>Project's owner. May be <code>null</code> if project is for Plus-only freelancers and the client is not Plus-freelancer.</td>\n</tr>\n<tr>\n<td>freelancer</td>\n<td>Chosen freelancer. May be <code>null</code> if the bid is not chosen by employer yet.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","projects","{{project_id}}"],"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"8172b32c-cc7e-4841-ae56-384e01646a59","name":"Successful request","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"}],"url":"{{api_url}}/v2/projects/{{project_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.16.0"},{"key":"Date","value":"Tue, 14 May 2019 13:14:40 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept"},{"key":"X-Auth-Status","value":"true"},{"key":"X-RateLimit-Limit","value":"1200 per hour"},{"key":"X-RateLimit-Remaining","value":"1199"},{"key":"X-Request-Id","value":"a056b3a8-3bcf-4b54-81c2-658326ae30c4"},{"key":"Cache-Control","value":"no-cache, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Content-Language","value":"en"},{"key":"X-Powered-By","value":"api.freelancehunt.com"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 299172,\n        \"type\": \"project\",\n        \"attributes\": {\n            \"name\": \"Project with bids\",\n            \"description\": \"Need to update several articles in the knowledge base: screenshots in all languages and a couple of dozen small text edits. I will describe everything in the workspace. Looking for basic HTML knowledge.\",\n            \"description_html\": \"<p>Need to update several articles in the knowledge base: screenshots in all languages and a couple of dozen small text edits. I will describe everything in the workspace. Looking for basic <strong>HTML knowledge</strong>.</p>\",\n            \"skills\": [\n                {\n                    \"id\": 56,\n                    \"name\": \"1C\"\n                }\n            ],\n            \"status\": {\n                \"id\": 11,\n                \"name\": \"Open for proposals\"\n            },\n            \"budget\": {\n                \"amount\": 2300,\n                \"currency\": \"UAH\"\n            },\n            \"bid_count\": 2,\n            \"is_remote_job\": false,\n            \"is_premium\": false,\n            \"is_only_for_plus\": false,\n            \"location\": null,\n            \"safe_type\": \"employer\",\n            \"is_personal\": null,\n            \"employer\": {\n                \"id\": 38444,\n                \"type\": \"employer\",\n                \"login\": \"jeweller\",\n                \"first_name\": \"Oleg\",\n                \"last_name\": \"V.\",\n                \"avatar\": {\n                    \"small\": {\n                        \"url\": \"https://content.freelancehunt.com/profile/photo/50/jeweller.png\",\n                        \"width\": 50,\n                        \"height\": 50\n                    },\n                    \"large\": {\n                        \"url\": \"https://content.freelancehunt.com/profile/photo/225/jeweller.png\",\n                        \"width\": 255,\n                        \"height\": 255\n                    }\n                },\n                \"self\": \"http://api.freelancehunt.com/v2/employers/38444\"\n            },\n            \"freelancer\": null,\n            \"updates\": [],\n            \"published_at\": \"2018-04-15T23:44:05+03:00\",\n            \"expired_at\": \"2018-04-20T21:18:13+03:00\"\n        },\n        \"links\": {\n            \"self\": {\n                \"api\": \"http://api.freelancehunt.com/v2/projects/299172\",\n                \"web\": \"http://freelancehunt.com/project/project-with-bids/299172.html\"\n            },\n            \"comments\": \"http://api.freelancehunt.com/v2/projects/299172/comments\",\n            \"bids\": \"http://api.freelancehunt.com/v2/projects/299172/bids\"\n        }\n    },\n    \"links\": {\n        \"self\": \"http://api.freelancehunt.com/v2/projects/299172\"\n    }\n}"}],"_postman_id":"8923b6c0-65cb-447f-b0e8-56b856ac48ce"},{"name":"Close project","event":[{"listen":"prerequest","script":{"id":"5d8526ec-987e-48db-9bed-dde0ca8a0c51","exec":[""],"type":"text/javascript"}}],"id":"0cf5b099-66b7-46a7-8465-95bc1ca09ab6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}"}],"url":"{{api_url}}/v2/projects/{{project_id}}/close","urlObject":{"path":["v2","projects","{{project_id}}","close"],"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"e53f8956-220a-47ac-84c9-5933b0ada03f","name":"Successful request","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}"}],"url":"{{api_url}}/v2/projects/{{project_id}}/close"},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.16.0"},{"key":"Date","value":"Mon, 13 May 2019 14:41:24 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept"},{"key":"X-Auth-Status","value":"true"},{"key":"X-RateLimit-Limit","value":"1200 per hour"},{"key":"X-RateLimit-Remaining","value":"1199"},{"key":"X-Request-Id","value":"b8761d5b-16a2-4690-9835-43e1ca6d3a08"},{"key":"Cache-Control","value":"no-cache, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Content-Language","value":"en"},{"key":"X-Powered-By","value":"api.freelancehunt.com"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"0cf5b099-66b7-46a7-8465-95bc1ca09ab6"},{"name":"Reopen project","event":[{"listen":"prerequest","script":{"id":"5d8526ec-987e-48db-9bed-dde0ca8a0c51","exec":[""],"type":"text/javascript"}}],"id":"3dbc18a1-619d-4e92-8086-84ba4a3fac36","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"expired_at\": \"2019-05-15T15:44:50+00:00\"\n}"},"url":"{{api_url}}/v2/projects/{{project_id}}/reopen","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Example</th>\n<th>Comment</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>expired_at</td>\n<td><code>2019-05-15T15:18:43+00:00</code></td>\n<td>Date should be in ISO 8601 format</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","projects","{{project_id}}","reopen"],"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"74385de5-722f-432b-8bd9-e1b3d6938828","name":"Successful request","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"expired_at\": \"2019-05-15T15:44:50+00:00\"\n}"},"url":"{{api_url}}/v2/projects/{{project_id}}/reopen"},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.16.0"},{"key":"Date","value":"Mon, 13 May 2019 14:49:10 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept"},{"key":"X-Auth-Status","value":"true"},{"key":"X-RateLimit-Limit","value":"1200 per hour"},{"key":"X-RateLimit-Remaining","value":"1199"},{"key":"X-Request-Id","value":"91345b38-382d-49a4-a3fa-64b8dab6f30b"},{"key":"Cache-Control","value":"no-cache, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Content-Language","value":"en"},{"key":"X-Powered-By","value":"api.freelancehunt.com"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"3dbc18a1-619d-4e92-8086-84ba4a3fac36"}],"id":"54939f33-1e54-4953-b199-a63893886fed","description":"<h2 id=\"available-statuses\">Available statuses:</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Status ID</th>\n<th>Name</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>11</td>\n<td>Open for proposals</td>\n</tr>\n<tr>\n<td>12</td>\n<td>Pending payment reservation</td>\n</tr>\n<tr>\n<td>13</td>\n<td>Contractor chosen</td>\n</tr>\n<tr>\n<td>14</td>\n<td>Project ongoing</td>\n</tr>\n<tr>\n<td>15</td>\n<td>Project under arbitrage</td>\n</tr>\n<tr>\n<td>21</td>\n<td>Project complete</td>\n</tr>\n<tr>\n<td>22</td>\n<td>Closed without completion</td>\n</tr>\n<tr>\n<td>23</td>\n<td>Project expired</td>\n</tr>\n<tr>\n<td>24</td>\n<td>Rules violated</td>\n</tr>\n<tr>\n<td>25</td>\n<td>Project not completed</td>\n</tr>\n<tr>\n<td>26</td>\n<td>Project unpayed</td>\n</tr>\n<tr>\n<td>27</td>\n<td>Closed without review</td>\n</tr>\n<tr>\n<td>32</td>\n<td>Blocked by users</td>\n</tr>\n<tr>\n<td>33</td>\n<td>Closed by moderator</td>\n</tr>\n<tr>\n<td>34</td>\n<td>Closed because of budget</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"available-currencies\">Available currencies:</h2>\n<p>UAH, RUB.</p>\n<h2 id=\"important-notes\">Important notes:</h2>\n<p>API does not working with Personal Contracts and Business Safe projects.</p>\n","_postman_id":"54939f33-1e54-4953-b199-a63893886fed"},{"name":"Profiles","item":[{"name":"Reviews","item":[{"name":"Freelancer reviews list by profile ID","id":"52f0f638-c676-4dac-b8a6-e1ea188050a1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"}],"url":"{{api_url}}/v2/freelancers/{{profile_id}}/reviews","description":"<p>For pending reviews its' attributes has <code>null</code>s in <code>comment</code> and <code>grades</code>s' items. Also the <code>is_pending</code> is set to <code>true</code> and <code>pending_until</code> is for the time when the review will automatically become visible.</p>\n<h3 id=\"relational-data-in-attributes\">Relational data in attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>project</td>\n<td></td>\n</tr>\n<tr>\n<td>from</td>\n<td>Review author.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","freelancers","{{profile_id}}","reviews"],"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"d65deef1-b0d5-48f0-828c-430ed3ab638a","name":"Successful request","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"}],"url":"https://api.freelancehunt.com/v2/freelancers/5725/reviews"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.16.0"},{"key":"Date","value":"Tue, 14 May 2019 13:23:58 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept"},{"key":"X-Auth-Status","value":"true"},{"key":"X-RateLimit-Limit","value":"1200 per hour"},{"key":"X-RateLimit-Remaining","value":"1196"},{"key":"X-Request-Id","value":"2154a013-641e-4c25-a951-50e9e371ccbe"},{"key":"Cache-Control","value":"no-cache, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Content-Language","value":"en"},{"key":"X-Powered-By","value":"api.freelancehunt.com"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 90499,\n            \"type\": \"review\",\n            \"attributes\": {\n                \"published_at\": \"2019-04-25T15:02:19+03:00\",\n                \"is_pending\": false,\n                \"pending_ends_at\": null,\n                \"comment\": \"I do not trust this freelancer.\",\n                \"grades\": {\n                    \"quality\": 1,\n                    \"professionalism\": 1,\n                    \"cost\": 10,\n                    \"connectivity\": 3,\n                    \"schedule\": 1,\n                    \"total\": 3.2\n                },\n                \"from\": {\n                    \"id\": 38444,\n                    \"type\": \"employer\",\n                    \"login\": \"jeweller\",\n                    \"first_name\": \"Oleg\",\n                    \"last_name\": \"V.\",\n                    \"avatar\": {\n                        \"small\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/50/jeweller.png\",\n                            \"width\": 50,\n                            \"height\": 50\n                        },\n                        \"large\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/225/jeweller.png\",\n                            \"width\": 255,\n                            \"height\": 255\n                        }\n                    },\n                    \"self\": \"https://api.freelancehunt.com/v2/employers/38444\"\n                },\n                \"project\": {\n                    \"id\": 299177,\n                    \"type\": \"project\",\n                    \"name\": \"Project with response review\",\n                    \"status\": {\n                        \"id\": 21,\n                        \"name\": \"Project complete\"\n                    },\n                    \"safe_type\": \"employer\",\n                    \"budget\": {\n                        \"amount\": 1001,\n                        \"currency\": \"UAH\"\n                    },\n                    \"self\": \"https://api.freelancehunt.com/v2/projects/299177\"\n                }\n            }\n        },\n        {\n            \"id\": 90500,\n            \"type\": \"review\",\n            \"attributes\": {\n                \"published_at\": \"2019-04-25T15:02:19+03:00\",\n                \"is_pending\": false,\n                \"pending_ends_at\": null,\n                \"comment\": \"Everything is perfect!\",\n                \"grades\": {\n                    \"quality\": 10,\n                    \"professionalism\": 10,\n                    \"cost\": 10,\n                    \"connectivity\": 10,\n                    \"schedule\": 10,\n                    \"total\": 10\n                },\n                \"from\": {\n                    \"id\": 38444,\n                    \"type\": \"employer\",\n                    \"login\": \"jeweller\",\n                    \"first_name\": \"Oleg\",\n                    \"last_name\": \"V.\",\n                    \"avatar\": {\n                        \"small\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/50/jeweller.png\",\n                            \"width\": 50,\n                            \"height\": 50\n                        },\n                        \"large\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/225/jeweller.png\",\n                            \"width\": 255,\n                            \"height\": 255\n                        }\n                    },\n                    \"self\": \"https://api.freelancehunt.com/v2/employers/38444\"\n                },\n                \"project\": {\n                    \"id\": 299178,\n                    \"type\": \"project\",\n                    \"name\": \"Project with response review(good)\",\n                    \"status\": {\n                        \"id\": 21,\n                        \"name\": \"Project complete\"\n                    },\n                    \"safe_type\": \"employer\",\n                    \"budget\": {\n                        \"amount\": 1001,\n                        \"currency\": \"UAH\"\n                    },\n                    \"self\": \"https://api.freelancehunt.com/v2/projects/299178\"\n                }\n            }\n        },\n        {\n            \"id\": 90501,\n            \"type\": \"review\",\n            \"attributes\": {\n                \"published_at\": \"2018-04-23T04:14:25+03:00\",\n                \"is_pending\": true,\n                \"pending_ends_at\": \"2018-05-07T04:14:25+03:00\",\n                \"comment\": null,\n                \"grades\": {\n                    \"quality\": null,\n                    \"professionalism\": null,\n                    \"cost\": null,\n                    \"connectivity\": null,\n                    \"schedule\": null,\n                    \"total\": null\n                },\n                \"from\": {\n                    \"id\": 38444,\n                    \"type\": \"employer\",\n                    \"login\": \"jeweller\",\n                    \"first_name\": \"Oleg\",\n                    \"last_name\": \"V.\",\n                    \"avatar\": {\n                        \"small\": {\n                            \"url\": \"https://content-dev.freelancehunt.com/profile/photo/50/jeweller.png\",\n                            \"width\": 50,\n                            \"height\": 50\n                        },\n                        \"large\": {\n                            \"url\": \"https://content-dev.freelancehunt.com/profile/photo/225/jeweller.png\",\n                            \"width\": 255,\n                            \"height\": 255\n                        }\n                    },\n                    \"self\": \"http://api.freelancehunt.local/v2/employers/38444\"\n                },\n                \"project\": {\n                    \"id\": 299198,\n                    \"type\": \"project\",\n                    \"name\": \"Project with pending review\",\n                    \"status\": {\n                        \"id\": 25,\n                        \"name\": \"Project not completed\"\n                    },\n                    \"safe_type\": \"employer\",\n                    \"budget\": {\n                        \"amount\": 1001,\n                        \"currency\": \"UAH\"\n                    },\n                    \"self\": \"http://api.freelancehunt.local/v2/projects/299198\"\n                }\n            }\n        }\n    ],\n    \"links\": {\n        \"self\": \"https://api.freelancehunt.com/v2/freelancers/5725/reviews\"\n    }\n}"}],"_postman_id":"52f0f638-c676-4dac-b8a6-e1ea188050a1"},{"name":"Employer reviews list by profile ID","id":"9c65cbeb-2e70-4d33-9e3d-80f96e381434","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"}],"url":"{{api_url}}/v2/employers/{{profile_id}}/reviews","description":"<h3 id=\"relational-data-in-attributes\">Relational data in attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>project</td>\n<td></td>\n</tr>\n<tr>\n<td>from</td>\n<td>Review author.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","employers","{{profile_id}}","reviews"],"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"15a2f9ff-60ec-44e7-ae6f-c59090639589","name":"Successful request","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"}],"url":"https://api.freelancehunt.com/v2/employers/4/reviews"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.16.0"},{"key":"Date","value":"Wed, 15 May 2019 11:53:51 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept"},{"key":"X-Auth-Status","value":"true"},{"key":"X-RateLimit-Limit","value":"1200 per hour"},{"key":"X-RateLimit-Remaining","value":"1197"},{"key":"X-Request-Id","value":"8e183a1c-6db1-44d8-a812-e66dbf5dfedd"},{"key":"Cache-Control","value":"no-cache, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Content-Language","value":"ru"},{"key":"X-Powered-By","value":"api.freelancehunt.com"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 72444,\n            \"type\": \"review\",\n            \"attributes\": {\n                \"published_at\": \"2018-04-11T14:20:13+03:00\",\n                \"is_pending\": false,\n                \"pending_ends_at\": null,\n                \"comment\": \"Good employer.\",\n                \"grades\": {\n                    \"connectivity\": 10,\n                    \"definition\": 10,\n                    \"pay\": 10,\n                    \"requirements\": 10,\n                    \"total\": 10\n                },\n                \"from\": {\n                    \"id\": 5725,\n                    \"type\": \"freelancer\",\n                    \"login\": \"alex_yar\",\n                    \"first_name\": \"Andrey\",\n                    \"last_name\": \"Y.\",\n                    \"avatar\": {\n                        \"small\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/50/alex_yar.png\",\n                            \"width\": 50,\n                            \"height\": 50\n                        },\n                        \"large\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/225/alex_yar.png\",\n                            \"width\": 255,\n                            \"height\": 255\n                        }\n                    },\n                    \"self\": \"https://api.freelancehunt.com/v2/freelancers/5725\"\n                },\n                \"project\": {\n                    \"id\": 299170,\n                    \"type\": \"project\",\n                    \"name\": \"High-budget project 1\",\n                    \"status\": {\n                        \"id\": 21,\n                        \"name\": \"Project complete\"\n                    },\n                    \"safe_type\": \"employer_cashless\",\n                    \"budget\": {\n                        \"amount\": 91000,\n                        \"currency\": \"UAH\"\n                    },\n                    \"self\": \"https://api.freelancehunt.com/v2/projects/299170\"\n                }\n            }\n        }\n    ],\n    \"links\": {\n        \"self\": \"https://api.freelancehunt.com/v2/employers/4/reviews\"\n    }\n}"}],"_postman_id":"9c65cbeb-2e70-4d33-9e3d-80f96e381434"},{"name":"Reviews list for current profile","event":[{"listen":"prerequest","script":{"id":"620572ef-e697-438a-9a2d-79fe9b57883b","exec":[""],"type":"text/javascript"}},{"listen":"test","script":{"id":"831dce65-6a9d-4523-91fd-a033df40d610","exec":[""],"type":"text/javascript"}}],"id":"2895ef2f-dac2-4359-a1eb-9e291a523e4a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"}],"url":"{{api_url}}/v2/my/reviews","description":"<h3 id=\"relational-data-in-attributes\">Relational data in attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>project</td>\n<td></td>\n</tr>\n<tr>\n<td>from</td>\n<td>Review author.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","my","reviews"],"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"7c2c60c6-9c24-4b8d-a9a1-f36c053ae4bd","name":"Successful request","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"}],"url":"{{api_url}}/v2/my/reviews"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.16.0"},{"key":"Date","value":"Tue, 14 May 2019 13:26:05 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept"},{"key":"X-Auth-Status","value":"true"},{"key":"X-RateLimit-Limit","value":"1200 per hour"},{"key":"X-RateLimit-Remaining","value":"1193"},{"key":"X-Request-Id","value":"a990ce65-2998-4042-a97e-ce3f1da3b8f6"},{"key":"Cache-Control","value":"no-cache, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Content-Language","value":"en"},{"key":"X-Powered-By","value":"api.freelancehunt.com"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 72444,\n            \"type\": \"review\",\n            \"attributes\": {\n                \"published_at\": \"2018-04-11T14:20:13+03:00\",\n                \"is_pending\": false,\n                \"pending_ends_at\": null,\n                \"comment\": \"Good employer.\",\n                \"grades\": {\n                    \"connectivity\": 10,\n                    \"definition\": 10,\n                    \"pay\": 10,\n                    \"requirements\": 10,\n                    \"total\": 10\n                },\n                \"from\": {\n                    \"id\": 5725,\n                    \"type\": \"freelancer\",\n                    \"login\": \"alex_yar\",\n                    \"first_name\": \"Andrey\",\n                    \"last_name\": \"Y.\",\n                    \"avatar\": {\n                        \"small\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/50/alex_yar.png\",\n                            \"width\": 50,\n                            \"height\": 50\n                        },\n                        \"large\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/225/alex_yar.png\",\n                            \"width\": 255,\n                            \"height\": 255\n                        }\n                    },\n                    \"self\": \"https://api.freelancehunt.com/v2/freelancers/5725\"\n                },\n                \"project\": {\n                    \"id\": 299170,\n                    \"type\": \"project\",\n                    \"name\": \"High-budget project 1\",\n                    \"status\": {\n                        \"id\": 21,\n                        \"name\": \"Project complete\"\n                    },\n                    \"safe_type\": \"employer_cashless\",\n                    \"budget\": {\n                        \"amount\": 91000,\n                        \"currency\": \"UAH\"\n                    },\n                    \"self\": \"https://api.freelancehunt.com/v2/projects/299170\"\n                }\n            }\n        }\n    ],\n    \"links\": {\n        \"self\": \"https://api.freelancehunt.com/v2/my/reviews\"\n    }\n}"}],"_postman_id":"2895ef2f-dac2-4359-a1eb-9e291a523e4a"}],"id":"ffd08d46-6b1e-416f-be75-e6cb583df5c0","_postman_id":"ffd08d46-6b1e-416f-be75-e6cb583df5c0","description":""},{"name":"Freelancers list","id":"6fbad949-2371-42e6-9f6b-957808b21e48","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{token}}"}],"url":"{{api_url}}/v2/freelancers","description":"<h3 id=\"filters\">Filters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>country_id</td>\n<td>integer</td>\n<td>Show freelancers only from provided country ID.</td>\n</tr>\n<tr>\n<td>city_id</td>\n<td>integer</td>\n<td>Show freelancers only from provided city ID. If city ID is set - country ID will be ignored.</td>\n</tr>\n<tr>\n<td>skill_id</td>\n<td>comma-separated list<br />of skill IDs</td>\n<td>Show freelancers only with provided skill ID.</td>\n</tr>\n<tr>\n<td>login</td>\n<td>string</td>\n<td>Find a freelancer with specific login.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","freelancers"],"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"c678c8f3-7835-4938-acc7-8bcc445e759d","name":"Successful request","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{token}}"}],"url":"{{api_url}}/v2/freelancers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.16.0"},{"key":"Date","value":"Tue, 14 May 2019 09:51:09 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept"},{"key":"X-Auth-Status","value":"true"},{"key":"X-RateLimit-Limit","value":"1200 per hour"},{"key":"X-RateLimit-Remaining","value":"1196"},{"key":"X-Request-Id","value":"29701dff-82a8-4b94-9753-45a63dbb90e9"},{"key":"Cache-Control","value":"no-cache, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Content-Language","value":"en"},{"key":"X-Powered-By","value":"api.freelancehunt.com"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 77278,\n            \"type\": \"freelancer\",\n            \"attributes\": {\n                \"login\": \"Artemkins\",\n                \"first_name\": \"Артём\",\n                \"last_name\": \"Yacuk\",\n                \"avatar\": {\n                    \"small\": {\n                        \"url\": \"https://content.freelancehunt.com/profile/photo/50/Artemkins.png\",\n                        \"width\": 50,\n                        \"height\": 50\n                    },\n                    \"large\": {\n                        \"url\": \"https://content.freelancehunt.com/profile/photo/225/Artemkins.png\",\n                        \"width\": 255,\n                        \"height\": 255\n                    }\n                },\n                \"birth_date\": null,\n                \"created_at\": \"2014-09-08T15:21:45+03:00\",\n                \"cv\": null,\n                \"cv_html\": null,\n                \"rating\": 31597,\n                \"rating_position\": 1,\n                \"arbitrages\": 0,\n                \"positive_reviews\": 295,\n                \"negative_reviews\": 0,\n                \"plus_ends_at\":null,\n                \"is_plus_active\": true,\n                \"is_online\": false,\n                \"visited_at\": null,\n                \"location\": {\n                    \"country\": {\n                        \"id\": 1,\n                        \"name\": \"Ukraine\"\n                    },\n                    \"city\": {\n                        \"id\": 3184,\n                        \"name\": \"Kharkiv\"\n                    }\n                },\n                \"verification\": {\n                    \"identity\": true,\n                    \"birth_date\": false,\n                    \"phone\": true,\n                    \"website\": false,\n                    \"wmid\": false,\n                    \"email\": false\n                },\n                \"contacts\": null,\n                \"status\": {\n                    \"id\": 10,\n                    \"name\": \"Available for hire\"\n                },\n                \"skills\": [\n                    {\n                        \"id\": 14,\n                        \"name\": \"Search engine optimization\",\n                        \"rating_position\": 0\n                    },\n                    {\n                        \"id\": 127,\n                        \"name\": \"Contextual advertising\",\n                        \"rating_position\": 0\n                    },\n                    {\n                        \"id\": 131,\n                        \"name\": \"Social media marketing\",\n                        \"rating_position\": 0\n                    }\n                ]\n            },\n            \"links\": {\n                \"self\": {\n                    \"api\": \"https://api.freelancehunt.com/v2/freelancers/77278\",\n                    \"web\": \"https://freelancehunt.com/freelancer/Artemkins.html\"\n                },\n                \"reviews\": \"https://api.freelancehunt.com/v2/freelancers/77278/reviews\"\n            }\n        },\n        {\n            \"id\": 112358,\n            \"type\": \"freelancer\",\n            \"attributes\": {\n                \"login\": \"buchkaryk_vadim\",\n                \"first_name\": \"Вадим\",\n                \"last_name\": \"Бучкарик\",\n                \"avatar\": {\n                    \"small\": {\n                        \"url\": \"https://content.freelancehunt.com/profile/photo/50/buchkaryk_vadim.png\",\n                        \"width\": 50,\n                        \"height\": 50\n                    },\n                    \"large\": {\n                        \"url\": \"https://content.freelancehunt.com/profile/photo/225/buchkaryk_vadim.png\",\n                        \"width\": 255,\n                        \"height\": 255\n                    }\n                },\n                \"birth_date\": null,\n                \"created_at\": \"2015-02-03T15:55:21+02:00\",\n                \"cv\": null,\n                \"cv_html\": null,\n                \"rating\": 14912,\n                \"rating_position\": 2,\n                \"arbitrages\": 0,\n                \"positive_reviews\": 142,\n                \"negative_reviews\": 0,\n                \"plus_ends_at\":null,\n                \"is_plus_active\": true,\n                \"is_online\": false,\n                \"visited_at\": null,\n                \"location\": {\n                    \"country\": {\n                        \"id\": 1,\n                        \"name\": \"Ukraine\"\n                    },\n                    \"city\": {\n                        \"id\": 2813,\n                        \"name\": \"Kyiv\"\n                    }\n                },\n                \"verification\": {\n                    \"identity\": true,\n                    \"birth_date\": false,\n                    \"phone\": true,\n                    \"website\": false,\n                    \"wmid\": false,\n                    \"email\": false\n                },\n                \"contacts\": null,\n                \"status\": {\n                    \"id\": 10,\n                    \"name\": \"Available for hire\"\n                },\n                \"skills\": [\n                    {\n                        \"id\": 14,\n                        \"name\": \"Search engine optimization\",\n                        \"rating_position\": 0\n                    },\n                    {\n                        \"id\": 134,\n                        \"name\": \"Website SEO audit\",\n                        \"rating_position\": 0\n                    }\n                ]\n            },\n            \"links\": {\n                \"self\": {\n                    \"api\": \"https://api.freelancehunt.com/v2/freelancers/112358\",\n                    \"web\": \"https://freelancehunt.com/freelancer/buchkaryk_vadim.html\"\n                },\n                \"reviews\": \"https://api.freelancehunt.com/v2/freelancers/112358/reviews\"\n            }\n        }\n    ],\n    \"links\": {\n        \"self\": \"https://api.freelancehunt.com/v2/freelancers\",\n        \"next\": \"https://api.freelancehunt.com/v2/freelancers?page[number]=2\",\n        \"last\": \"https://api.freelancehunt.com/v2/freelancers?page[number]=184\"\n    }\n}"}],"_postman_id":"6fbad949-2371-42e6-9f6b-957808b21e48"},{"name":"Employers list","id":"861d2281-e823-46bb-8b94-5d587ea2f404","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{token}}"}],"url":"{{api_url}}/v2/employers","description":"<h3 id=\"filters\">Filters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>country_id</td>\n<td>integer</td>\n<td>Show freelancers only from provided country ID.</td>\n</tr>\n<tr>\n<td>city_id</td>\n<td>integer</td>\n<td>Show freelancers only from provided city ID. If city ID is set - country ID will be ignored.</td>\n</tr>\n<tr>\n<td>login</td>\n<td>string</td>\n<td>Find an employer with specific login.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","employers"],"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"3ad0debc-9d3a-4637-9798-6d10775372ce","name":"Employers list","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{token}}"}],"url":"{{api_url}}/v2/employers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.16.0"},{"key":"Date","value":"Tue, 14 May 2019 10:02:40 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept"},{"key":"X-Auth-Status","value":"true"},{"key":"X-RateLimit-Limit","value":"1200 per hour"},{"key":"X-RateLimit-Remaining","value":"1195"},{"key":"X-Request-Id","value":"59dc2a41-4839-483b-a4ae-a9ed09da7527"},{"key":"Cache-Control","value":"no-cache, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Content-Language","value":"en"},{"key":"X-Powered-By","value":"api.freelancehunt.com"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 41939,\n            \"type\": \"employer\",\n            \"attributes\": {\n                \"login\": \"maf-omerta\",\n                \"first_name\": \"Антон\",\n                \"last_name\": \"Шумов\",\n                \"avatar\": {\n                    \"small\": {\n                        \"url\": \"https://content.freelancehunt.com/profile/photo/50/maf-omerta.png\",\n                        \"width\": 50,\n                        \"height\": 50\n                    },\n                    \"large\": {\n                        \"url\": \"https://content.freelancehunt.com/profile/photo/225/maf-omerta.png\",\n                        \"width\": 255,\n                        \"height\": 255\n                    }\n                },\n                \"birth_date\": null,\n                \"created_at\": \"2013-02-26T15:58:01+02:00\",\n                \"cv\": null,\n                \"cv_html\": null,\n                \"rating\": 10030,\n                \"rating_position\": 1,\n                \"arbitrages\": 0,\n                \"positive_reviews\": 158,\n                \"negative_reviews\": 0,\n                \"plus_ends_at\":null,\n                \"is_plus_active\": true,\n                \"is_online\": false,\n                \"visited_at\": null,\n                \"location\": {\n                    \"country\": {\n                        \"id\": 2,\n                        \"name\": \"Russia\"\n                    },\n                    \"city\": {\n                        \"id\": 1,\n                        \"name\": \"Moscow\"\n                    }\n                },\n                \"verification\": {\n                    \"identity\": true,\n                    \"birth_date\": false,\n                    \"phone\": true,\n                    \"website\": false,\n                    \"wmid\": false,\n                    \"email\": false\n                },\n                \"contacts\": null\n            },\n            \"links\": {\n                \"self\": {\n                    \"api\": \"https://api.freelancehunt.com/v2/employers/41939\",\n                    \"web\": \"https://freelancehunt.com/employer/maf-omerta.html\"\n                },\n                \"reviews\": \"https://api.freelancehunt.com/v2/employers/41939/reviews\"\n            }\n        },\n        {\n            \"id\": 96645,\n            \"type\": \"employer\",\n            \"attributes\": {\n                \"login\": \"angas\",\n                \"first_name\": \"Андрей\",\n                \"last_name\": \"С.\",\n                \"avatar\": {\n                    \"small\": {\n                        \"url\": \"https://content.freelancehunt.com/profile/photo/50/angas.png\",\n                        \"width\": 50,\n                        \"height\": 50\n                    },\n                    \"large\": {\n                        \"url\": \"https://content.freelancehunt.com/profile/photo/225/angas.png\",\n                        \"width\": 255,\n                        \"height\": 255\n                    }\n                },\n                \"birth_date\": null,\n                \"created_at\": \"2015-02-18T09:32:54+02:00\",\n                \"cv\": null,\n                \"cv_html\": null,\n                \"rating\": 5810,\n                \"rating_position\": 2,\n                \"arbitrages\": 0,\n                \"positive_reviews\": 231,\n                \"negative_reviews\": 0,\n                \"plus_ends_at\":null,\n                \"is_plus_active\": true,\n                \"is_online\": false,\n                \"visited_at\": null,\n                \"location\": {\n                    \"country\": {\n                        \"id\": 2,\n                        \"name\": \"Russia\"\n                    },\n                    \"city\": {\n                        \"id\": 173,\n                        \"name\": \"Saint-Petersburg\"\n                    }\n                },\n                \"verification\": {\n                    \"identity\": true,\n                    \"birth_date\": false,\n                    \"phone\": true,\n                    \"website\": false,\n                    \"wmid\": false,\n                    \"email\": false\n                },\n                \"contacts\": null\n            },\n            \"links\": {\n                \"self\": {\n                    \"api\": \"https://api.freelancehunt.com/v2/employers/96645\",\n                    \"web\": \"https://freelancehunt.com/employer/angas.html\"\n                },\n                \"reviews\": \"https://api.freelancehunt.com/v2/employers/96645/reviews\"\n            }\n        }\n    ],\n    \"links\": {\n        \"self\": \"https://api.freelancehunt.com/v2/employers\",\n        \"next\": \"https://api.freelancehunt.com/v2/employers?page[number]=2\",\n        \"last\": \"https://api.freelancehunt.com/v2/employers?page[number]=55\"\n    }\n}"}],"_postman_id":"861d2281-e823-46bb-8b94-5d587ea2f404"},{"name":"Show current profile","id":"27a1f071-f4a6-4489-8531-49cc5862fbd8","request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{token}}"}],"url":"{{api_url}}/v2/my/profile","urlObject":{"path":["v2","my","profile"],"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"cc3435a4-9a36-46d2-9dcf-cef7f989cd09","name":"Successful request","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{token}}"}],"url":"{{api_url}}/v2/my/profile"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.16.0"},{"key":"Date","value":"Tue, 14 May 2019 13:32:50 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept"},{"key":"X-Auth-Status","value":"true"},{"key":"X-RateLimit-Limit","value":"1200 per hour"},{"key":"X-RateLimit-Remaining","value":"1196"},{"key":"X-Request-Id","value":"08562d7a-0ff7-468b-aff7-3e1e7aa9bc51"},{"key":"Cache-Control","value":"no-cache, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Content-Language","value":"en"},{"key":"X-Powered-By","value":"api.freelancehunt.com"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 3166,\n        \"type\": \"freelancer\",\n        \"attributes\": {\n            \"login\": \"raznomir\",\n            \"first_name\": \"Mikhail\",\n            \"last_name\": \"Tereshchenko\",\n            \"avatar\": {\n                \"small\": {\n                    \"url\": \"https://content.freelancehunt.com/profile/photo/50/raznomir.png\",\n                    \"width\": 50,\n                    \"height\": 50\n                },\n                \"large\": {\n                    \"url\": \"https://content.freelancehunt.com/profile/photo/225/raznomir.png\",\n                    \"width\": 255,\n                    \"height\": 255\n                }\n            },\n            \"birth_date\": \"1975-01-16\",\n            \"created_at\": \"2008-04-15T19:14:25+03:00\",\n            \"cv\": \"A friendly international team\",\n            \"cv_html\": \"<p>A friendly international team</p>\",\n            \"rating\": 1327,\n            \"rating_position\": 499,\n            \"arbitrages\": 0,\n            \"positive_reviews\": 20,\n            \"negative_reviews\": 1,\n            \"plus_ends_at\":null,\n            \"is_plus_active\": false,\n            \"is_online\": false,\n            \"visited_at\": null,\n            \"location\": {\n                \"country\": {\n                    \"id\": 1,\n                    \"name\": \"Ukraine\"\n                },\n                \"city\": {\n                    \"id\": 2936,\n                    \"name\": \"Pervomaisk\"\n                }\n            },\n            \"verification\": {\n                \"identity\": true,\n                \"birth_date\": false,\n                \"phone\": true,\n                \"website\": true,\n                \"wmid\": false,\n                \"email\": true\n            },\n            \"contacts\": {\n                \"skype\": \"Dummy19\",\n                \"telegram\": null,\n                \"phone\": \"+380931234567\",\n                \"wmid\": null,\n                \"email\": \"dummy19@gmail.com\",\n                \"website\": \"dummy19.com\"\n            },\n            \"status\": {\n                \"id\": 10,\n                \"name\": \"Available for hire\"\n            },\n            \"skills\": [\n                {\n                    \"id\": 96,\n                    \"name\": \"Website development\",\n                    \"rating_position\": 132\n                },\n                {\n                    \"id\": 99,\n                    \"name\": \"Web programming\",\n                    \"rating_position\": 140\n                }\n            ]\n        },\n        \"links\": {\n            \"self\": {\n                \"api\": \"https://api.freelancehunt.com/v2/freelancers/3166\",\n                \"web\": \"https://freelancehunt.com/freelancer/raznomir.html\"\n            },\n            \"reviews\": \"https://api.freelancehunt.com/v2/freelancers/3166/reviews\"\n        }\n    },\n    \"links\": {\n        \"self\": \"https://api.freelancehunt.com/v2/my/profile\"\n    }\n}"}],"_postman_id":"27a1f071-f4a6-4489-8531-49cc5862fbd8"},{"name":"Freelancer details","id":"d7c32cba-a9d0-4c15-a97e-ee99a5a0cc90","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{token}}"}],"url":"{{api_url}}/v2/freelancers/{{profile_id}}","urlObject":{"path":["v2","freelancers","{{profile_id}}"],"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"c5897286-c03e-4c6d-b5da-e4941f42eb92","name":"Successful request","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{token}}"}],"url":"{{api_url}}/v2/freelancers/3166"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.16.0"},{"key":"Date","value":"Tue, 14 May 2019 13:34:14 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept"},{"key":"X-Auth-Status","value":"true"},{"key":"X-RateLimit-Limit","value":"1200 per hour"},{"key":"X-RateLimit-Remaining","value":"1191"},{"key":"X-Request-Id","value":"71e66a8a-449c-44e0-80e2-91e71cdd23d5"},{"key":"Cache-Control","value":"public, max-age=300"},{"key":"Expires","value":"0"},{"key":"Content-Language","value":"en"},{"key":"X-Powered-By","value":"api.freelancehunt.com"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 3166,\n        \"type\": \"freelancer\",\n        \"attributes\": {\n            \"login\": \"raznomir\",\n            \"first_name\": \"Mikhail\",\n            \"last_name\": \"Tereshchenko\",\n            \"avatar\": {\n                \"small\": {\n                    \"url\": \"https://content.freelancehunt.com/profile/photo/50/raznomir.png\",\n                    \"width\": 50,\n                    \"height\": 50\n                },\n                \"large\": {\n                    \"url\": \"https://content.freelancehunt.com/profile/photo/225/raznomir.png\",\n                    \"width\": 255,\n                    \"height\": 255\n                }\n            },\n            \"birth_date\": \"1975-01-16\",\n            \"created_at\": \"2008-04-15T19:14:25+03:00\",\n            \"cv\": \"A friendly international team\",\n            \"cv_html\": \"<p>A friendly international team</p>\",\n            \"rating\": 1327,\n            \"rating_position\": 499,\n            \"arbitrages\": 0,\n            \"positive_reviews\": 20,\n            \"negative_reviews\": 1,\n            \"plus_ends_at\":null,\n            \"is_plus_active\": false,\n            \"is_online\": false,\n            \"visited_at\": null,\n            \"verification\": {\n                \"identity\": true,\n                \"birth_date\": false,\n                \"phone\": true,\n                \"website\": true,\n                \"wmid\": false,\n                \"email\": true\n            },\n            \"contacts\": null,\n            \"status\": {\n                \"id\": 10,\n                \"name\": \"Available for hire\"\n            },\n            \"skills\": [\n                {\n                    \"id\": 96,\n                    \"name\": \"Website development\",\n                    \"rating_position\": 132\n                },\n                {\n                    \"id\": 99,\n                    \"name\": \"Web programming\",\n                    \"rating_position\": 140\n                }\n            ]\n        },\n        \"links\": {\n            \"self\": {\n                \"api\": \"https://api.freelancehunt.com/v2/freelancers/3166\",\n                \"web\": \"https://freelancehunt.com/freelancer/raznomir.html\"\n            },\n            \"reviews\": \"https://api.freelancehunt.com/v2/freelancers/3166/reviews\"\n        }\n    },\n    \"links\": {\n        \"self\": \"https://api.freelancehunt.com/v2/freelancers/3166\"\n    }\n}"}],"_postman_id":"d7c32cba-a9d0-4c15-a97e-ee99a5a0cc90"},{"name":"Employer details","id":"c130ebef-c313-464e-8374-2f2785d77395","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{token}}"}],"url":"{{api_url}}/v2/employers/{{profile_id}}","urlObject":{"path":["v2","employers","{{profile_id}}"],"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"268a3306-f201-4963-8679-000a2296c63f","name":"Successful request","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{token}}"}],"url":"{{api_url}}/v2/employers/340096"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.16.0"},{"key":"Date","value":"Tue, 14 May 2019 13:36:12 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept"},{"key":"X-Auth-Status","value":"true"},{"key":"X-RateLimit-Limit","value":"1200 per hour"},{"key":"X-RateLimit-Remaining","value":"1185"},{"key":"X-Request-Id","value":"3ab670bd-2acb-420a-8dad-f33a22e6c604"},{"key":"Cache-Control","value":"no-cache, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Content-Language","value":"en"},{"key":"X-Powered-By","value":"api.freelancehunt.com"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 340096,\n        \"type\": \"employer\",\n        \"attributes\": {\n            \"login\": \"ledpodarok\",\n            \"first_name\": \"Anatoliy\",\n            \"last_name\": \"Shevchenko\",\n            \"avatar\": {\n                \"small\": {\n                    \"url\": \"https://content.freelancehunt.com/profile/photo/50/ledpodarok.png\",\n                    \"width\": 50,\n                    \"height\": 50\n                },\n                \"large\": {\n                    \"url\": \"https://content.freelancehunt.com/profile/photo/225/ledpodarok.png\",\n                    \"width\": 255,\n                    \"height\": 255\n                }\n            },\n            \"birth_date\": null,\n            \"created_at\": \"2018-01-29T18:44:00+02:00\",\n            \"cv\": null,\n            \"cv_html\": null,\n            \"rating\": 0,\n            \"rating_position\": 0,\n            \"arbitrages\": 0,\n            \"positive_reviews\": 0,\n            \"negative_reviews\": 0,\n            \"plus_ends_at\":null,\n            \"is_plus_active\": false,\n            \"is_online\": false,\n            \"visited_at\": null,\n            \"location\": {\n                \"country\": {\n                    \"id\": 2,\n                    \"name\": \"Russia\"\n                }\n            },\n            \"verification\": {\n                \"identity\": false,\n                \"birth_date\": false,\n                \"phone\": true,\n                \"website\": false,\n                \"wmid\": false,\n                \"email\": false\n            },\n            \"contacts\": null\n        },\n        \"links\": {\n            \"self\": {\n                \"api\": \"https://api.freelancehunt.com/v2/employers/340096\",\n                \"web\": \"https://freelancehunt.com/employer/ledpodarok.html\"\n            },\n            \"reviews\": \"https://api.freelancehunt.com/v2/employers/340096/reviews\"\n        }\n    },\n    \"links\": {\n        \"self\": \"https://api.freelancehunt.com/v2/employers/340096\"\n    }\n}"}],"_postman_id":"c130ebef-c313-464e-8374-2f2785d77395"}],"id":"7dfb1bc1-4d54-46d8-9c01-75b7a32f3db6","_postman_id":"7dfb1bc1-4d54-46d8-9c01-75b7a32f3db6","description":""},{"name":"Feed","item":[{"name":"Feed list","id":"2f269e7e-b996-4bdd-9346-d1256ad7aff7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{api_url}}/v2/my/feed","description":"<h3 id=\"relational-data-in-attributes\">Relational data in attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>from</td>\n<td>Message sender. May be <code>null</code> if it's a notification for project restricted to Plus-only freelancers only.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","my","feed"],"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"39fde88b-ec3a-4781-94e6-2747eb67bbdb","name":"Successful request","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{api_url}}/v2/my/feed"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.14.2"},{"key":"Date","value":"Fri, 19 Apr 2019 13:04:57 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept"},{"key":"X-Auth-Status","value":"true"},{"key":"X-RateLimit-Limit","value":"1000 per hour"},{"key":"X-RateLimit-Remaining","value":"990"},{"key":"X-Request-Id","value":"9ec5ad6a-2614-4e70-9bf8-24f638f84a8f"},{"key":"Cache-Control","value":"no-cache, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Content-Language","value":"ru"},{"key":"X-Powered-By","value":"api.freelancehunt.com"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 1555675871044,\n            \"type\": \"feed\",\n            \"attributes\": {\n                \"from\": {\n                    \"id\": 4,\n                    \"type\": \"employer\",\n                    \"login\": \"freelancehunt\",\n                    \"first_name\": \"Freelancehunt\",\n                    \"last_name\": \"\",\n                    \"avatar\": {\n                        \"small\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/50/freelancehunt.png\",\n                            \"width\": 50,\n                            \"height\": 50\n                        },\n                        \"large\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/225/freelancehunt.png\",\n                            \"width\": 255,\n                            \"height\": 255\n                        }\n                    },\n                    \"self\": \"https://api.freelancehunt.com/v2/employers/4\"\n                },\n                \"message\": \"<img src=\\\"https://freelancehunt.com/static/images/fugu/new-text.png\\\" width=\\\"16\\\" height=\\\"16\\\"/> New message for you.\",\n                \"created_at\": \"2019-04-19T12:11:11+00:00\",\n                \"is_new\": false\n            }\n        }\n    ],\n    \"links\": {\n        \"self\": \"https://api.freelancehunt.com/v2/my/feed\"\n    }\n}"}],"_postman_id":"2f269e7e-b996-4bdd-9346-d1256ad7aff7"},{"name":"Mark feed as read","event":[{"listen":"prerequest","script":{"id":"5d8526ec-987e-48db-9bed-dde0ca8a0c51","exec":[""],"type":"text/javascript"}}],"id":"491fd53f-26ba-41cd-93ad-61f6f9b3fa81","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}"}],"url":"{{api_url}}/v2/my/feed/read","urlObject":{"path":["v2","my","feed","read"],"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"b4d4d6f6-ea2a-4fda-9cf8-d42def062d02","name":"Successful request","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}"}],"url":"{{api_url}}/v2/my/feed/read"},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.16.1"},{"key":"Date","value":"Fri, 21 Feb 2020 07:46:48 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept"},{"key":"X-Auth-Status","value":"true"},{"key":"X-RateLimit-Limit","value":"1200 per hour"},{"key":"X-RateLimit-Remaining","value":"1197"},{"key":"X-Request-Id","value":"44ca977f-327c-4dcd-a1ef-ca1808b8b97b"},{"key":"Cache-Control","value":"no-cache, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Content-Language","value":"ru"},{"key":"X-Powered-By","value":"api.freelancehunt.com"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"491fd53f-26ba-41cd-93ad-61f6f9b3fa81"}],"id":"d229fc5c-e10a-41ff-97fc-2c5129f4b3da","_postman_id":"d229fc5c-e10a-41ff-97fc-2c5129f4b3da","description":""},{"name":"Threads","item":[{"name":"Threads list","event":[{"listen":"test","script":{"id":"b2273993-c031-4aac-9d21-2e5b044cc632","exec":["pm.test(\"response must be valid and have a body\", function () {","     pm.response.to.be.ok;","     pm.response.to.be.withBody;","     pm.response.to.be.json;","","     var jsonData = JSON.parse(responseBody);","     postman.setEnvironmentVariable(\"_thread_id\", jsonData.data[0].id);","});"],"type":"text/javascript"}}],"id":"61451f73-1039-488c-b7d9-55a604ba7675","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{api_url}}/v2/threads","description":"<h3 id=\"relational-data-in-attributes\">Relational data in attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>participants</td>\n<td>Initial threads participants in <code>from</code> and <code>to</code> objects.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","threads"],"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"e3989de5-0f16-4bf2-b832-de4fba1915e6","name":"Successful request","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{api_url}}/v2/threads"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.16.0"},{"key":"Date","value":"Tue, 14 May 2019 13:39:14 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept"},{"key":"X-Auth-Status","value":"true"},{"key":"X-RateLimit-Limit","value":"1200 per hour"},{"key":"X-RateLimit-Remaining","value":"1182"},{"key":"X-Request-Id","value":"5f7e0ee1-5216-4f0a-ba01-485eadb5c79e"},{"key":"Cache-Control","value":"no-cache, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Content-Language","value":"en"},{"key":"X-Powered-By","value":"api.freelancehunt.com"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 2237325,\n            \"type\": \"thread\",\n            \"attributes\": {\n                \"subject\": \"Workspace for project High-budget project\",\n                \"first_post_at\": \"2019-02-21T14:12:35+02:00\",\n                \"last_post_at\": \"2019-02-21T14:12:35+02:00\",\n                \"messages_count\": 1,\n                \"is_unread\": false,\n                \"has_attachments\": false,\n                \"participants\": {\n                    \"from\": {\n                        \"id\": 340096,\n                        \"type\": \"employer\",\n                        \"login\": \"ledpodarok\",\n                        \"first_name\": \"Anatoliy\",\n                        \"last_name\": \"S.\",\n                        \"avatar\": {\n                            \"small\": {\n                                \"url\": \"https://content.freelancehunt.com/profile/photo/50/ledpodarok.png\",\n                                \"width\": 50,\n                                \"height\": 50\n                            },\n                            \"large\": {\n                                \"url\": \"https://content.freelancehunt.com/profile/photo/225/ledpodarok.png\",\n                                \"width\": 255,\n                                \"height\": 255\n                            }\n                        },\n                        \"self\": \"http://api.freelancehunt.com/v2/employers/340096\"\n                    },\n                    \"to\": {\n                        \"id\": 3166,\n                        \"type\": \"freelancer\",\n                        \"login\": \"raznomir\",\n                        \"first_name\": \"Mikhail\",\n                        \"last_name\": \"Tereshchenko\",\n                        \"avatar\": {\n                            \"small\": {\n                                \"url\": \"https://content.freelancehunt.com/profile/photo/50/raznomir.png\",\n                                \"width\": 50,\n                                \"height\": 50\n                            },\n                            \"large\": {\n                                \"url\": \"https://content.freelancehunt.com/profile/photo/225/raznomir.png\",\n                                \"width\": 255,\n                                \"height\": 255\n                            }\n                        },\n                        \"self\": \"http://api.freelancehunt.com/v2/freelancers/3166\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": {\n                    \"api\": \"http://api.freelancehunt.com/v2/threads/2237325\",\n                    \"web\": \"http://freelancehunt.com/mailbox/read/thread/2237325\"\n                }\n            }\n        }\n    ],\n    \"links\": {\n        \"self\": \"http://api.freelancehunt.com/v2/threads\"\n    }\n}"}],"_postman_id":"61451f73-1039-488c-b7d9-55a604ba7675"},{"name":"Add message to the thread","id":"02cb8612-7787-4e51-b84e-a3eae6d94023","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"message_html\": \"I can complete this task in 5 hours.\"\n}"},"url":"{{api_url}}/v2/threads/{{_thread_id}}","description":"<h3 id=\"relational-data-in-attributes\">Relational data in attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>participants</td>\n<td><code>from</code> and <code>to</code> objects.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","threads","{{_thread_id}}"],"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"dddcc810-cc26-44be-b93b-dcf6bb66d3f7","name":"Successful request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{token}}"}],"body":{"mode":"raw","raw":"{\n  \"message_html\": \"I can complete this task in 5 hours.\"\n}"},"url":"{{api_url}}/v2/threads/2237342"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.16.0"},{"key":"Date","value":"Tue, 14 May 2019 13:41:33 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept"},{"key":"X-Auth-Status","value":"true"},{"key":"X-RateLimit-Limit","value":"1200 per hour"},{"key":"X-RateLimit-Remaining","value":"1194"},{"key":"X-Request-Id","value":"e5315049-ad7b-41b1-b9cf-5925955fe190"},{"key":"Pragma","value":"no-cache"},{"key":"Cache-Control","value":"no-cache, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Content-Language","value":"en"},{"key":"X-Powered-By","value":"api.freelancehunt.com"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 132,\n        \"type\": \"message\",\n        \"attributes\": {\n            \"message\": \"I can complete this task in 5 hours.\",\n            \"message_html\": \"I can complete this task in 5 hours.\",\n            \"posted_at\": \"2019-10-23T17:43:06+03:00\",\n            \"participants\": {\n                \"from\": {\n                    \"id\": 5725,\n                    \"type\": \"freelancer\",\n                    \"login\": \"alex_yar\",\n                    \"first_name\": \"Andrey\",\n                    \"last_name\": \"Y.\",\n                    \"avatar\": {\n                        \"small\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/50/alex_yar.png\",\n                            \"width\": 50,\n                            \"height\": 50\n                        },\n                        \"large\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/225/alex_yar.png\",\n                            \"width\": 255,\n                            \"height\": 255\n                        }\n                    },\n                    \"self\": \"https://api.freelancehunt.com/v2/freelancers/5725\"\n                },\n                \"to\": {\n                    \"id\": 38444,\n                    \"type\": \"employer\",\n                    \"login\": \"jeweller\",\n                    \"first_name\": \"Oleg\",\n                    \"last_name\": \"V.\",\n                    \"avatar\": {\n                        \"small\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/50/jeweller.png\",\n                            \"width\": 50,\n                            \"height\": 50\n                        },\n                        \"large\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/225/jeweller.png\",\n                            \"width\": 255,\n                            \"height\": 255\n                        }\n                    },\n                    \"self\": \"https://api.freelancehunt.com/v2/employers/38444\"\n                }\n            }\n        }\n    },\n    \"links\": {\n        \"self\": \"https://api.freelancehunt.com/v2/threads/2237341\"\n    }\n}"}],"_postman_id":"02cb8612-7787-4e51-b84e-a3eae6d94023"},{"name":"Post file to a thread","id":"367f9e42-c2eb-4a2a-8c27-51d8f3a0c9eb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"},{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"attachment1","type":"file","src":"/Users/oleg/Downloads/2601274.png"},{"key":"attachment2","type":"file","src":"/Users/oleg/Downloads/old_man_yells_at_azure_devops.png"}]},"url":"{{api_url}}/v2/threads/{{_thread_id}}/attachment","description":"<p>Key can by with any name, but must be unique for each attachment.</p>\n<h3 id=\"relational-data-in-attributes\">Relational data in attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>participants</td>\n<td><code>from</code> and <code>to</code> objects.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","threads","{{_thread_id}}","attachment"],"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"dc3c0108-0805-4c64-acc1-f5a3a541a44f","name":"Successful request","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{token}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"formdata","formdata":[{"key":"attachment1","type":"file","src":"/home/my/Downloads/example.jpg"},{"key":"attachment2","type":"file","src":"/home/my/Downloads/files.rar"}]},"url":"{{api_url}}/v2/threads/{{thread_id}}/attachment"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.16.1"},{"key":"Date","value":"Fri, 10 Jan 2020 10:20:09 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept"},{"key":"X-Auth-Status","value":"true"},{"key":"X-RateLimit-Limit","value":"1200 per hour"},{"key":"X-RateLimit-Remaining","value":"1199"},{"key":"X-Request-Id","value":"8bf9a0b9-772d-47ec-ba71-976eb75242ab"},{"key":"Cache-Control","value":"no-cache, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Content-Language","value":"ru"},{"key":"X-Powered-By","value":"api.freelancehunt.com"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 144,\n        \"type\": \"message\",\n        \"attributes\": {\n            \"message\": \"\",\n            \"message_html\": \"\",\n            \"posted_at\": \"2020-01-10T14:20:01+02:00\",\n            \"attachments\": [\n                {\n                    \"id\": 758263,\n                    \"type\": \"attachment\",\n                    \"file_type\": \"archive\",\n                    \"size\": 1095940,\n                    \"name\": \"files.rar\",\n                    \"url\": \"https://content.freelancehunt.com/message/dc178/55d53/758263/files.rar\",\n                    \"thumbnail_url\": null\n                },\n                {\n                    \"id\": 758264,\n                    \"type\": \"attachment\",\n                    \"file_type\": \"image\",\n                    \"size\": 126755,\n                    \"name\": \"example.jpg\",\n                    \"url\": \"https://content.freelancehunt.com/message/c0ef8/af58f/758264/example.jpg\",\n                    \"thumbnail_url\": \"https://content.freelancehunt.com/message/thumbnail/225/c0ef8/af58f/758264/example.jpg\"\n                }\n            ],\n            \"participants\": {\n                \"from\": {\n                    \"id\": 5725,\n                    \"type\": \"freelancer\",\n                    \"login\": \"alex_yar\",\n                    \"first_name\": \"Andrey\",\n                    \"last_name\": \"Y.\",\n                    \"avatar\": {\n                        \"small\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/50/alex_yar.png\",\n                            \"width\": 50,\n                            \"height\": 50\n                        },\n                        \"large\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/225/alex_yar.png\",\n                            \"width\": 255,\n                            \"height\": 255\n                        }\n                    },\n                    \"self\": \"http://api.freelancehunt.local/v2/freelancers/5725\"\n                },\n                \"to\": {\n                    \"id\": 38444,\n                    \"type\": \"employer\",\n                    \"login\": \"jeweller\",\n                    \"first_name\": \"Oleg\",\n                    \"last_name\": \"V.\",\n                    \"avatar\": {\n                        \"small\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/50/jeweller.png\",\n                            \"width\": 50,\n                            \"height\": 50\n                        },\n                        \"large\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/225/jeweller.png\",\n                            \"width\": 255,\n                            \"height\": 255\n                        }\n                    },\n                    \"self\": \"http://api.freelancehunt.local/v2/employers/38444\"\n                }\n            }\n        }\n    },\n    \"links\": {\n        \"self\": \"http://api.freelancehunt.local/v2/threads/2237367/attachment\"\n    }\n}"}],"_postman_id":"367f9e42-c2eb-4a2a-8c27-51d8f3a0c9eb"},{"name":"Thread messages list","id":"20a6ee8e-d476-4b1d-89ad-35b8da0808ab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"}],"url":"{{api_url}}/v2/threads/{{_thread_id}}","description":"<h3 id=\"relational-data-in-messages-attributes\">Relational data in messages' attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>participants</td>\n<td><code>from</code> and <code>to</code> objects.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"relational-data-in-meta\">Relational data in <code>meta</code></h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>thread</td>\n<td>All thread data.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","threads","{{_thread_id}}"],"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"85f2b192-2624-41d6-aa8c-d2886537a806","name":"Successful request","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"}],"url":"{{api_url}}/v2/threads/2237342"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.16.0"},{"key":"Date","value":"Tue, 14 May 2019 13:41:54 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept"},{"key":"X-Auth-Status","value":"true"},{"key":"X-RateLimit-Limit","value":"1200 per hour"},{"key":"X-RateLimit-Remaining","value":"1193"},{"key":"X-Request-Id","value":"97f9e3d2-0283-4321-aac9-75342685033a"},{"key":"Cache-Control","value":"no-cache, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Content-Language","value":"en"},{"key":"X-Powered-By","value":"api.freelancehunt.com"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 67,\n            \"type\": \"message\",\n            \"attributes\": {\n                \"message\": \"I choose you!\",\n                \"message_html\": \"I choose you!\",\n                \"posted_at\": \"2019-04-03T09:33:05+03:00\",\n                \"participants\": {\n                    \"from\": {\n                        \"id\": 38444,\n                        \"type\": \"employer\",\n                        \"login\": \"jeweller\",\n                        \"first_name\": \"Oleg\",\n                        \"last_name\": \"V.\",\n                        \"avatar\": {\n                            \"small\": {\n                                \"url\": \"https://content.freelancehunt.com/profile/photo/50/jeweller.png\",\n                                \"width\": 50,\n                                \"height\": 50\n                            },\n                            \"large\": {\n                                \"url\": \"https://content.freelancehunt.com/profile/photo/225/jeweller.png\",\n                                \"width\": 255,\n                                \"height\": 255\n                            }\n                        },\n                        \"self\": \"https://api.freelancehunt.com/v2/employers/38444\"\n                    },\n                    \"to\": {\n                        \"id\": 5725,\n                        \"type\": \"freelancer\",\n                        \"login\": \"alex_yar\",\n                        \"first_name\": \"Andrey\",\n                        \"last_name\": \"Y.\",\n                        \"avatar\": {\n                            \"small\": {\n                                \"url\": \"https://content.freelancehunt.com/profile/photo/50/alex_yar.png\",\n                                \"width\": 50,\n                                \"height\": 50\n                            },\n                            \"large\": {\n                                \"url\": \"https://content.freelancehunt.com/profile/photo/225/alex_yar.png\",\n                                \"width\": 255,\n                                \"height\": 255\n                            }\n                        },\n                        \"self\": \"https://api.freelancehunt.com/v2/freelancers/5725\"\n                    }\n                }\n            }\n        },\n        {\n            \"id\": 132,\n            \"type\": \"message\",\n            \"attributes\": {\n                \"message\": \"I can complete this task in 5 hours.\",\n                \"message_html\": \"I can complete this task in 5 hours.\",\n                \"posted_at\": \"2019-10-23T17:43:06+03:00\",\n                \"participants\": {\n                    \"from\": {\n                        \"id\": 5725,\n                        \"type\": \"freelancer\",\n                        \"login\": \"alex_yar\",\n                        \"first_name\": \"Andrey\",\n                        \"last_name\": \"Y.\",\n                        \"avatar\": {\n                            \"small\": {\n                                \"url\": \"https://content.freelancehunt.com/profile/photo/50/alex_yar.png\",\n                                \"width\": 50,\n                                \"height\": 50\n                            },\n                            \"large\": {\n                                \"url\": \"https://content.freelancehunt.com/profile/photo/225/alex_yar.png\",\n                                \"width\": 255,\n                                \"height\": 255\n                            }\n                        },\n                        \"self\": \"https://api.freelancehunt.com/v2/freelancers/5725\"\n                    },\n                    \"to\": {\n                        \"id\": 38444,\n                        \"type\": \"employer\",\n                        \"login\": \"jeweller\",\n                        \"first_name\": \"Oleg\",\n                        \"last_name\": \"V.\",\n                        \"avatar\": {\n                            \"small\": {\n                                \"url\": \"https://content.freelancehunt.com/profile/photo/50/jeweller.png\",\n                                \"width\": 50,\n                                \"height\": 50\n                            },\n                            \"large\": {\n                                \"url\": \"https://content.freelancehunt.com/profile/photo/225/jeweller.png\",\n                                \"width\": 255,\n                                \"height\": 255\n                            }\n                        },\n                        \"self\": \"https://api.freelancehunt.com/v2/employers/38444\"\n                    }\n                }\n            }\n        }\n    ],\n    \"links\": {\n        \"self\": \"https://api.freelancehunt.com/v2/threads/2237341\"\n    },\n    \"meta\": {\n        \"thread\": {\n            \"id\": 2237341,\n            \"type\": \"thread\",\n            \"attributes\": {\n                \"subject\": \"Workspace for project Web developer for re-designing\",\n                \"first_post_at\": \"2019-04-03T09:33:05+03:00\",\n                \"last_post_at\": \"2019-10-23T17:43:06+03:00\",\n                \"messages_count\": 2,\n                \"is_unread\": false,\n                \"has_attachments\": false,\n                \"participants\": {\n                    \"from\": {\n                        \"id\": 38444,\n                        \"type\": \"employer\",\n                        \"login\": \"jeweller\",\n                        \"first_name\": \"Oleg\",\n                        \"last_name\": \"V.\",\n                        \"avatar\": {\n                            \"small\": {\n                                \"url\": \"https://content.freelancehunt.com/profile/photo/50/jeweller.png\",\n                                \"width\": 50,\n                                \"height\": 50\n                            },\n                            \"large\": {\n                                \"url\": \"https://content.freelancehunt.com/profile/photo/225/jeweller.png\",\n                                \"width\": 255,\n                                \"height\": 255\n                            }\n                        },\n                        \"self\": \"https://api.freelancehunt.com/v2/employers/38444\"\n                    },\n                    \"to\": {\n                        \"id\": 5725,\n                        \"type\": \"freelancer\",\n                        \"login\": \"alex_yar\",\n                        \"first_name\": \"Andrey\",\n                        \"last_name\": \"Y.\",\n                        \"avatar\": {\n                            \"small\": {\n                                \"url\": \"https://content.freelancehunt.com/profile/photo/50/alex_yar.png\",\n                                \"width\": 50,\n                                \"height\": 50\n                            },\n                            \"large\": {\n                                \"url\": \"https://content.freelancehunt.com/profile/photo/225/alex_yar.png\",\n                                \"width\": 255,\n                                \"height\": 255\n                            }\n                        },\n                        \"self\": \"https://api.freelancehunt.com/v2/freelancers/5725\"\n                    }\n                }\n            },\n            \"links\": {\n                \"self\": {\n                    \"api\": \"https://api.freelancehunt.com/v2/threads/2237341\",\n                    \"web\": \"https://freelancehunt.com/mailbox/read/thread/2237341\"\n                }\n            }\n        }\n    }\n}"}],"_postman_id":"20a6ee8e-d476-4b1d-89ad-35b8da0808ab"},{"name":"Delete thread","id":"cdd728b3-9157-49b0-bfc4-a02f4e064fc5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{token}}"}],"url":"{{api_url}}/v2/threads/{{thread_id}}","urlObject":{"path":["v2","threads","{{thread_id}}"],"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"a800a558-f288-4c71-b73c-c897967c2540","name":"Successful request","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{token}}"}],"url":"{{api_url}}/v2/threads/2237348"},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.16.0"},{"key":"Date","value":"Tue, 14 May 2019 10:10:56 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept"},{"key":"X-Auth-Status","value":"true"},{"key":"X-RateLimit-Limit","value":"1200 per hour"},{"key":"X-RateLimit-Remaining","value":"1186"},{"key":"X-Request-Id","value":"8cece162-b4be-431d-9618-7dd846708555"},{"key":"Cache-Control","value":"no-cache, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Content-Language","value":"en"},{"key":"X-Powered-By","value":"api.freelancehunt.com"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"cdd728b3-9157-49b0-bfc4-a02f4e064fc5"},{"name":"Create support  request","id":"82a57fba-997f-42a2-80f5-0bb8040db199","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"subject\": \"Help me\",\n\t\"message_html\": \"I can not change my name, can you help me?\"\n}"},"url":"{{api_url}}/v2/threads/action/support","description":"<h3 id=\"relational-data-in-attributes\">Relational data in attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>participants</td>\n<td>Initial threads participants in <code>from</code> and <code>to</code> objects.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","threads","action","support"],"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"3d1d24f8-4a70-4234-b215-87a7ce59859d","name":"Successful request","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"subject\": \"Help me\",\n\t\"message_html\": \"I can not change my name, can you help me?\"\n}"},"url":"{{api_url}}/v2/threads/action/support"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.16.0"},{"key":"Date","value":"Tue, 14 May 2019 13:42:40 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept"},{"key":"X-Auth-Status","value":"true"},{"key":"X-RateLimit-Limit","value":"1200 per hour"},{"key":"X-RateLimit-Remaining","value":"1192"},{"key":"X-Request-Id","value":"68941a2f-914f-4a06-87f3-0927824cb315"},{"key":"Pragma","value":"no-cache"},{"key":"Cache-Control","value":"no-cache, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Content-Language","value":"en"},{"key":"X-Powered-By","value":"api.freelancehunt.com"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 2237367,\n        \"type\": \"thread\",\n        \"attributes\": {\n            \"subject\": \"Help me\",\n            \"first_post_at\": \"2020-01-22T12:37:30+02:00\",\n            \"last_post_at\": \"2020-01-22T12:37:30+02:00\",\n            \"messages_count\": 1,\n            \"is_unread\": false,\n            \"has_attachments\": false,\n            \"participants\": {\n                \"from\": {\n                    \"id\": 340096,\n                    \"type\": \"employer\",\n                    \"login\": \"ledpodarok\",\n                    \"first_name\": \"Anatoliy\",\n                    \"last_name\": \"S.\",\n                    \"avatar\": {\n                        \"small\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/50/ledpodarok.png\",\n                            \"width\": 50,\n                            \"height\": 50\n                        },\n                        \"large\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/225/ledpodarok.png\",\n                            \"width\": 255,\n                            \"height\": 255\n                        }\n                    },\n                    \"self\": \"http://api.freelancehunt.com/v2/employers/340096\"\n                },\n                \"to\": {\n                    \"id\": 4,\n                    \"type\": \"employer\",\n                    \"login\": \"freelancehunt\",\n                    \"first_name\": \"Freelancehunt\",\n                    \"last_name\": \".\",\n                    \"avatar\": {\n                        \"small\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/50/freelancehunt.png\",\n                            \"width\": 50,\n                            \"height\": 50\n                        },\n                        \"large\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/225/freelancehunt.png\",\n                            \"width\": 255,\n                            \"height\": 255\n                        }\n                    },\n                    \"self\": \"http://api.freelancehunt.com/v2/employers/4\"\n                }\n            }\n        },\n        \"links\": {\n            \"self\": {\n                \"api\": \"http://api.freelancehunt.com/v2/threads/2237367\",\n                \"web\": \"http://freelancehunt.com/mailbox/read/thread/2237367\"\n            }\n        }\n    },\n    \"links\": {\n        \"self\": \"http://api.freelancehunt.com/v2/threads/action/support\"\n    }\n}"}],"_postman_id":"82a57fba-997f-42a2-80f5-0bb8040db199"},{"name":"Create thread","id":"b957aaf8-6e03-4307-94b1-1d6ef3d18f0c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"subject\": \"Help me\",\n\t\"message_html\": \"Need to update several articles in the knowledge base\",\n\t\"to_profile_id\": 3\n}"},"url":"{{api_url}}/v2/threads","description":"<h4 id=\"can-be-used-only-by-verified-profiles\">Can be used only by verified profiles</h4>\n<p>Endpoint accept 1 request per-minute.</p>\n<h3 id=\"relational-data-in-attributes\">Relational data in attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>participants</td>\n<td>Initial threads participants in <code>from</code> and <code>to</code> objects.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","threads"],"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"c2e458f7-c2b8-4fe5-8644-035e4fd4e6ea","name":"Successful request","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"subject\": \"Help me\",\n\t\"message_html\": \"Need to update several articles in the knowledge base\",\n\t\"to_profile_id\": 3\n}"},"url":"{{api_url}}/v2/threads"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.16.0"},{"key":"Date","value":"Tue, 14 May 2019 13:41:07 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept"},{"key":"X-Auth-Status","value":"true"},{"key":"X-RateLimit-Limit","value":"1200 per hour"},{"key":"X-RateLimit-Remaining","value":"1195"},{"key":"X-Request-Id","value":"21c01ec4-ee30-4f56-b177-1a839dfaca8e"},{"key":"Pragma","value":"no-cache"},{"key":"Cache-Control","value":"no-cache, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Content-Language","value":"en"},{"key":"X-Powered-By","value":"api.freelancehunt.com"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 2237342,\n        \"type\": \"thread\",\n        \"attributes\": {\n            \"subject\": \"Help me\",\n            \"first_post_at\": \"2019-05-14T16:41:07+03:00\",\n            \"last_post_at\": \"2019-05-14T16:41:07+03:00\",\n            \"messages_count\": 1,\n            \"is_unread\": false,\n            \"has_attachments\": false,\n            \"participants\": {\n                \"from\": {\n                    \"id\": 3166,\n                    \"type\": \"freelancer\",\n                    \"login\": \"raznomir\",\n                    \"first_name\": \"Mikhail\",\n                    \"last_name\": \"Tereshchenko\",\n                    \"avatar\": {\n                        \"small\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/50/raznomir.png\",\n                            \"width\": 50,\n                            \"height\": 50\n                        },\n                        \"large\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/225/raznomir.png\",\n                            \"width\": 255,\n                            \"height\": 255\n                        }\n                    },\n                    \"self\": \"https://api.freelancehunt.com/v2/freelancers/3166\"\n                },\n                \"to\": {\n                    \"id\": 3,\n                    \"type\": \"freelancer\",\n                    \"login\": \"beowulf\",\n                    \"first_name\": \"Константин\",\n                    \"last_name\": \"О.\",\n                    \"avatar\": {\n                        \"small\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/50/beowulf.png\",\n                            \"width\": 50,\n                            \"height\": 50\n                        },\n                        \"large\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/225/beowulf.png\",\n                            \"width\": 255,\n                            \"height\": 255\n                        }\n                    },\n                    \"self\": \"https://api.freelancehunt.com/v2/freelancers/3\"\n                }\n            }\n        },\n        \"links\": {\n            \"self\": {\n                \"api\": \"https://api.freelancehunt.com/v2/threads/2237342\",\n                \"web\": \"https://freelancehunt.com/mailbox/read/thread/2237342\"\n            }\n        }\n    },\n    \"links\": {\n        \"self\": \"https://api.freelancehunt.com/v2/threads\"\n    }\n}"}],"_postman_id":"b957aaf8-6e03-4307-94b1-1d6ef3d18f0c"},{"name":"Mark thread read","id":"7f6e8565-eb1d-4dc4-b584-5b7620a2ad8b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"subject\": \"Help me\",\n\t\"message_html\": \"Need to update several articles in the knowledge base\",\n\t\"to_profile_id\": 3\n}"},"url":"{{api_url}}/v2/threads/{{_thread_id}}/mark-read","description":"<h4 id=\"can-be-used-only-by-verified-profiles\">Can be used only by verified profiles</h4>\n<p>Endpoint accept 1 request per-minute.</p>\n<h3 id=\"relational-data-in-attributes\">Relational data in attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>participants</td>\n<td>Initial threads participants in <code>from</code> and <code>to</code> objects.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","threads","{{_thread_id}}","mark-read"],"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"cd3a3b61-ac85-40d5-82cd-c5dccfe07a18","name":"Successful request","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"subject\": \"Help me\",\n\t\"message_html\": \"Need to update several articles in the knowledge base\",\n\t\"to_profile_id\": 3\n}"},"url":"{{api_url}}/v2/threads"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.16.0"},{"key":"Date","value":"Tue, 14 May 2019 13:41:07 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept"},{"key":"X-Auth-Status","value":"true"},{"key":"X-RateLimit-Limit","value":"1200 per hour"},{"key":"X-RateLimit-Remaining","value":"1195"},{"key":"X-Request-Id","value":"21c01ec4-ee30-4f56-b177-1a839dfaca8e"},{"key":"Pragma","value":"no-cache"},{"key":"Cache-Control","value":"no-cache, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Content-Language","value":"en"},{"key":"X-Powered-By","value":"api.freelancehunt.com"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 2237342,\n        \"type\": \"thread\",\n        \"attributes\": {\n            \"subject\": \"Help me\",\n            \"first_post_at\": \"2019-05-14T16:41:07+03:00\",\n            \"last_post_at\": \"2019-05-14T16:41:07+03:00\",\n            \"messages_count\": 1,\n            \"is_unread\": false,\n            \"has_attachments\": false,\n            \"participants\": {\n                \"from\": {\n                    \"id\": 3166,\n                    \"type\": \"freelancer\",\n                    \"login\": \"raznomir\",\n                    \"first_name\": \"Mikhail\",\n                    \"last_name\": \"Tereshchenko\",\n                    \"avatar\": {\n                        \"small\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/50/raznomir.png\",\n                            \"width\": 50,\n                            \"height\": 50\n                        },\n                        \"large\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/225/raznomir.png\",\n                            \"width\": 255,\n                            \"height\": 255\n                        }\n                    },\n                    \"self\": \"https://api.freelancehunt.com/v2/freelancers/3166\"\n                },\n                \"to\": {\n                    \"id\": 3,\n                    \"type\": \"freelancer\",\n                    \"login\": \"beowulf\",\n                    \"first_name\": \"Константин\",\n                    \"last_name\": \"О.\",\n                    \"avatar\": {\n                        \"small\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/50/beowulf.png\",\n                            \"width\": 50,\n                            \"height\": 50\n                        },\n                        \"large\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/225/beowulf.png\",\n                            \"width\": 255,\n                            \"height\": 255\n                        }\n                    },\n                    \"self\": \"https://api.freelancehunt.com/v2/freelancers/3\"\n                }\n            }\n        },\n        \"links\": {\n            \"self\": {\n                \"api\": \"https://api.freelancehunt.com/v2/threads/2237342\",\n                \"web\": \"https://freelancehunt.com/mailbox/read/thread/2237342\"\n            }\n        }\n    },\n    \"links\": {\n        \"self\": \"https://api.freelancehunt.com/v2/threads\"\n    }\n}"}],"_postman_id":"7f6e8565-eb1d-4dc4-b584-5b7620a2ad8b"}],"id":"a313684a-aa56-4f67-bb4c-5ba014c43006","_postman_id":"a313684a-aa56-4f67-bb4c-5ba014c43006","description":""},{"name":"Contests","item":[{"name":"Workspaces","item":[{"name":"Workspaces list","id":"4158f02f-b61c-46dd-a1eb-2be47c8f0b91","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{api_url}}/v2/my/workspaces/contests","description":"<h3 id=\"filters\">Filters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>contest_id</td>\n<td>integer</td>\n<td>Show workspaces only from provided contest ID.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"relational-data-in-attributes\">Relational data in attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>contest</td>\n<td></td>\n</tr>\n<tr>\n<td>employer</td>\n<td></td>\n</tr>\n<tr>\n<td>freelancer</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","my","workspaces","contests"],"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"fac09343-9cee-44bc-80b2-8f805cd55f10","name":"Successful request","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{api_url}}/v2/my/workspaces/contests"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.16.0"},{"key":"Date","value":"Tue, 14 May 2019 13:53:36 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept"},{"key":"X-Auth-Status","value":"true"},{"key":"X-RateLimit-Limit","value":"1200 per hour"},{"key":"X-RateLimit-Remaining","value":"1198"},{"key":"X-Request-Id","value":"d496aefd-7940-4572-b5ec-1a9fd2c3f5e9"},{"key":"Cache-Control","value":"no-cache, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Content-Language","value":"en"},{"key":"X-Powered-By","value":"api.freelancehunt.com"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 2237333,\n            \"type\": \"contest_workspace\",\n            \"attributes\": {\n                \"contest\": {\n                    \"id\": 1391,\n                    \"type\": \"contest\",\n                    \"name\": \"New contest\",\n                    \"status\": {\n                        \"id\": 150,\n                        \"name\": \"Winner chosen\"\n                    },\n                    \"budget\": {\n                        \"amount\": 1003,\n                        \"currency\": \"UAH\"\n                    },\n                    \"self\": \"https://api.freelancehunt.com/v2/contests/1391\"\n                },\n                \"employer\": {\n                    \"id\": 38444,\n                    \"type\": \"employer\",\n                    \"login\": \"jeweller\",\n                    \"first_name\": \"Oleg\",\n                    \"last_name\": \"Vinnik\",\n                    \"avatar\": {\n                        \"small\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/50/jeweller.png\",\n                            \"width\": 50,\n                            \"height\": 50\n                        },\n                        \"large\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/225/jeweller.png\",\n                            \"width\": 255,\n                            \"height\": 255\n                        }\n                    },\n                    \"self\": \"https://api.freelancehunt.com/v2/employers/38444\"\n                },\n                \"freelancer\": {\n                    \"id\": 5725,\n                    \"type\": \"freelancer\",\n                    \"login\": \"alex_yar\",\n                    \"first_name\": \"Andrey\",\n                    \"last_name\": \"Y.\",\n                    \"avatar\": {\n                        \"small\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/50/alex_yar.png\",\n                            \"width\": 50,\n                            \"height\": 50\n                        },\n                        \"large\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/225/alex_yar.png\",\n                            \"width\": 255,\n                            \"height\": 255\n                        }\n                    },\n                    \"self\": \"https://api.freelancehunt.com/v2/freelancers/5725\"\n                },\n                \"winner_chosen_at\": \"2019-04-08T18:09:14+03:00\",\n                \"ended_at\": \"2019-04-17T17:05:25+03:00\"\n            },\n            \"links\": {\n                \"self\": {\n                    \"api\": \"https://api.freelancehunt.com/v2/my/workspaces/contests/2237333\",\n                    \"web\": \"https://freelancehunt.com/mailbox/read/thread/2237333\"\n                },\n                \"thread\": \"https://api.freelancehunt.com/v2/threads/2237333\"\n            }\n        }\n    ],\n    \"links\": {\n        \"self\": \"https://api.freelancehunt.com/v2/my/workspaces/contests\"\n    }\n}"}],"_postman_id":"4158f02f-b61c-46dd-a1eb-2be47c8f0b91"},{"name":"Workspace details","id":"f03ed89e-0884-4509-a7de-d74bd54ff8cf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{token}}"}],"url":"{{api_url}}/v2/my/workspaces/contests/{{workspace_id}}","description":"<h3 id=\"relational-data-in-attributes\">Relational data in attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>contest</td>\n<td></td>\n</tr>\n<tr>\n<td>employer</td>\n<td></td>\n</tr>\n<tr>\n<td>freelancer</td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","my","workspaces","contests","{{workspace_id}}"],"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"64ac29d0-c376-4f05-84d1-a96ecff420ea","name":"Successful request","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{token}}"}],"url":"{{api_url}}/v2/my/workspaces/contests/2237333"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.16.0"},{"key":"Date","value":"Tue, 14 May 2019 13:54:02 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept"},{"key":"X-Auth-Status","value":"true"},{"key":"X-RateLimit-Limit","value":"1200 per hour"},{"key":"X-RateLimit-Remaining","value":"1197"},{"key":"X-Request-Id","value":"d8cd893e-97bc-4ead-acba-731c1f0b093c"},{"key":"Cache-Control","value":"no-cache, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Content-Language","value":"en"},{"key":"X-Powered-By","value":"api.freelancehunt.com"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 2237333,\n        \"type\": \"contest_workspace\",\n        \"attributes\": {\n            \"contest\": {\n                \"id\": 1391,\n                \"type\": \"contest\",\n                \"name\": \"New contest\",\n                \"status\": {\n                    \"id\": 150,\n                    \"name\": \"Winner chosen\"\n                },\n                \"budget\": {\n                    \"amount\": 1003,\n                    \"currency\": \"UAH\"\n                },\n                \"self\": \"https://api.freelancehunt.com/v2/contests/1391\"\n            },\n            \"employer\": {\n                \"id\": 38444,\n                \"type\": \"employer\",\n                \"login\": \"jeweller\",\n                \"first_name\": \"Oleg\",\n                \"last_name\": \"Vinnik\",\n                \"avatar\": {\n                    \"small\": {\n                        \"url\": \"https://content.freelancehunt.com/profile/photo/50/jeweller.png\",\n                        \"width\": 50,\n                        \"height\": 50\n                    },\n                    \"large\": {\n                        \"url\": \"https://content.freelancehunt.com/profile/photo/225/jeweller.png\",\n                        \"width\": 255,\n                        \"height\": 255\n                    }\n                },\n                \"self\": \"https://api.freelancehunt.com/v2/employers/38444\"\n            },\n            \"freelancer\": {\n                \"id\": 5725,\n                \"type\": \"freelancer\",\n                \"login\": \"alex_yar\",\n                \"first_name\": \"Andrey\",\n                \"last_name\": \"Y.\",\n                \"avatar\": {\n                    \"small\": {\n                        \"url\": \"https://content.freelancehunt.com/profile/photo/50/alex_yar.png\",\n                        \"width\": 50,\n                        \"height\": 50\n                    },\n                    \"large\": {\n                        \"url\": \"https://content.freelancehunt.com/profile/photo/225/alex_yar.png\",\n                        \"width\": 255,\n                        \"height\": 255\n                    }\n                },\n                \"self\": \"https://api.freelancehunt.com/v2/freelancers/5725\"\n            },\n            \"winner_chosen_at\": \"2019-04-08T18:09:14+03:00\",\n            \"ended_at\": \"2019-04-17T17:05:25+03:00\"\n        },\n        \"links\": {\n            \"self\": {\n                \"api\": \"https://api.freelancehunt.com/v2/my/workspaces/contests/2237333\",\n                \"web\": \"https://freelancehunt.com/mailbox/read/thread/2237333\"\n            },\n            \"thread\": \"https://api.freelancehunt.com/v2/threads/2237333\"\n        }\n    },\n    \"links\": {\n        \"self\": \"https://api.freelancehunt.com/v2/my/workspaces/contests/2237333\"\n    }\n}"}],"_postman_id":"f03ed89e-0884-4509-a7de-d74bd54ff8cf"},{"name":"Complete contest","id":"9aa5103d-73bb-4633-9fbb-e5bc12dc3ea2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{token}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"comment\": \"Contest closed\"\n}"},"url":"{{api_url}}/v2/my/workspaces/contests/{{workspace_id}}/complete","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Example</th>\n<th>Comment</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>comment</td>\n<td><code>I'm closing this contest</code></td>\n<td>Contest closing comment without HTML support</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","my","workspaces","contests","{{workspace_id}}","complete"],"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"85cb7df6-88ab-4ffc-ab33-a5ebc1194186","name":"Successful request","originalRequest":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{token}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"comment\": \"Contest closed\"\n}"},"url":"{{api_url}}/v2/my/workspaces/contests/2237333/complete"},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.16.0"},{"key":"Date","value":"Tue, 14 May 2019 13:54:28 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept"},{"key":"X-Auth-Status","value":"true"},{"key":"X-RateLimit-Limit","value":"1200 per hour"},{"key":"X-RateLimit-Remaining","value":"1196"},{"key":"X-Request-Id","value":"fd7476d0-68b0-4e08-90ca-757b303e57a6"},{"key":"Pragma","value":"no-cache"},{"key":"Cache-Control","value":"no-cache, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Content-Language","value":"en"},{"key":"X-Powered-By","value":"api.freelancehunt.com"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"9aa5103d-73bb-4633-9fbb-e5bc12dc3ea2"}],"id":"c7f3386c-af16-4cf1-a313-3fa51a04fd97","_postman_id":"c7f3386c-af16-4cf1-a313-3fa51a04fd97","description":""},{"name":"Contests list","event":[{"listen":"prerequest","script":{"id":"e09fbe47-123e-4ec1-9737-f481d3ebafc1","exec":[""],"type":"text/javascript"}},{"listen":"test","script":{"id":"b15c5d6c-09d4-4e3d-91d2-41ee4a8d054e","exec":[""],"type":"text/javascript"}}],"id":"8ebb9cfb-e28a-4184-8138-1ac62d47d54f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"}],"url":"{{api_url}}/v2/contests","description":"<h3 id=\"default-behavior\">Default behavior</h3>\n<p>By default open contests and will be shown.</p>\n<h3 id=\"filters\">Filters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>skill_id</td>\n<td>comma-separated list<br />of skill IDs</td>\n<td>Show contests only with provided skill ID.</td>\n</tr>\n<tr>\n<td>employer_id</td>\n<td>integer</td>\n<td>Show contests only from provided employer ID.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"relational-data-in-attributes\">Relational data in attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>employer</td>\n<td>Contest's owner.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","contests"],"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"cec4b208-db1a-41f3-ba77-c40e496628c7","name":"Successful request","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"}],"url":"{{api_url}}/v2/contests"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.16.0"},{"key":"Date","value":"Tue, 14 May 2019 13:46:26 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept"},{"key":"X-Auth-Status","value":"true"},{"key":"X-RateLimit-Limit","value":"1200 per hour"},{"key":"X-RateLimit-Remaining","value":"1180"},{"key":"X-Request-Id","value":"c034e1e6-a8a7-4ae9-9ebc-033d9ac20d9e"},{"key":"Cache-Control","value":"no-cache, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Content-Language","value":"en"},{"key":"X-Powered-By","value":"api.freelancehunt.com"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 1390,\n            \"type\": \"contest\",\n            \"attributes\": {\n                \"name\": \"New contest\",\n                \"description\": \"Transferring party — The Customers and the Contractors owning confidential information and personal data transferred by them to the Website Administration during registration and use of the Service.\",\n                \"description_html\": \"<p>Transferring party — The Customers and the Contractors owning confidential information and personal data transferred by them to the Website Administration during registration and use of the Service.</p>\",\n                \"skill\": {\n                    \"id\": 9,\n                    \"name\": \"Icon\"\n                },\n                \"status\": {\n                    \"id\": 140,\n                    \"name\": \"Final\"\n                },\n                \"budget\": {\n                    \"amount\": 1002,\n                    \"currency\": \"UAH\"\n                },\n                \"application_count\": 1,\n                \"published_at\": \"2019-04-08T17:05:25+03:00\",\n                \"duration_days\": 5,\n                \"final_started_at\": \"2019-04-13T17:05:25+03:00\",\n                \"freelancer\": null,\n                \"employer\": {\n                    \"id\": 38444,\n                    \"type\": \"employer\",\n                    \"login\": \"jeweller\",\n                    \"first_name\": \"Oleg\",\n                    \"last_name\": \"Vinnik\",\n                    \"avatar\": {\n                        \"small\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/50/jeweller.png\",\n                            \"width\": 50,\n                            \"height\": 50\n                        },\n                        \"large\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/225/jeweller.png\",\n                            \"width\": 255,\n                            \"height\": 255\n                        }\n                    },\n                    \"self\": \"https://api.freelancehunt.com/v2/employers/38444\"\n                },\n                \"updates\": []\n            },\n            \"links\": {\n                \"self\": {\n                    \"api\": \"https://api.freelancehunt.com/v2/contests/1390\",\n                    \"web\": \"https://freelancehunt.com/contest/new-contest/1390.html\"\n                },\n                \"comments\": \"https://api.freelancehunt.com/v2/contests/1390/comments\",\n                \"applications\": \"https://api.freelancehunt.com/v2/contests/1390/applications\"\n            }\n        }\n    ],\n    \"links\": {\n        \"self\": \"https://api.freelancehunt.com/v2/contests\"\n    }\n}"}],"_postman_id":"8ebb9cfb-e28a-4184-8138-1ac62d47d54f"},{"name":"Current profile contests list","event":[{"listen":"prerequest","script":{"id":"e09fbe47-123e-4ec1-9737-f481d3ebafc1","exec":[""],"type":"text/javascript"}},{"listen":"test","script":{"id":"b15c5d6c-09d4-4e3d-91d2-41ee4a8d054e","exec":[""],"type":"text/javascript"}}],"id":"a8218b14-0188-4068-9284-dd2f483e124e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"}],"url":"{{api_url}}/v2/my/contests","description":"<p>Only for employers.</p>\n<h3 id=\"filters\">Filters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>skill_id</td>\n<td>comma-separated list<br />of skill IDs</td>\n<td>Show contests only with provided skill ID.</td>\n</tr>\n<tr>\n<td>status_id</td>\n<td>comma-separated list<br />of status IDs</td>\n<td>Show contests only with provided status ID.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"relational-data-in-attributes\">Relational data in attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>employer</td>\n<td>Contest's owner.</td>\n</tr>\n<tr>\n<td>freelancer</td>\n<td>Freelancer(if is already chosen).</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","my","contests"],"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"53ac711b-d031-4820-b3a2-181f71cca989","name":"Successful request","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"}],"url":"{{api_url}}/v2/my/contests"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.16.0"},{"key":"Date","value":"Tue, 14 May 2019 13:50:55 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept"},{"key":"X-Auth-Status","value":"true"},{"key":"X-RateLimit-Limit","value":"1200 per hour"},{"key":"X-RateLimit-Remaining","value":"1199"},{"key":"X-Request-Id","value":"1c59c908-56ab-4e63-a4d2-141360a8b94e"},{"key":"Cache-Control","value":"no-cache, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Content-Language","value":"en"},{"key":"X-Powered-By","value":"api.freelancehunt.com"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 1390,\n            \"type\": \"contest\",\n            \"attributes\": {\n                \"name\": \"New contest\",\n                \"description\": \"Transferring party — The Customers and the Contractors owning confidential information and personal data transferred by them to the Website Administration during registration and use of the Service.\",\n                \"description_html\": \"<p>Transferring party — The Customers and the Contractors owning confidential information and personal data transferred by them to the Website Administration during registration and use of the Service.</p>\",\n                \"skill\": {\n                    \"id\": 9,\n                    \"name\": \"Icon\"\n                },\n                \"status\": {\n                    \"id\": 140,\n                    \"name\": \"Final\"\n                },\n                \"budget\": {\n                    \"amount\": 1002,\n                    \"currency\": \"UAH\"\n                },\n                \"application_count\": 1,\n                \"published_at\": \"2019-04-08T17:05:25+03:00\",\n                \"duration_days\": 5,\n                \"final_started_at\": \"2019-04-13T17:05:25+03:00\",\n                \"freelancer\": null,\n                \"employer\": {\n                    \"id\": 38444,\n                    \"type\": \"employer\",\n                    \"login\": \"jeweller\",\n                    \"first_name\": \"Oleg\",\n                    \"last_name\": \"Vinnik\",\n                    \"avatar\": {\n                        \"small\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/50/jeweller.png\",\n                            \"width\": 50,\n                            \"height\": 50\n                        },\n                        \"large\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/225/jeweller.png\",\n                            \"width\": 255,\n                            \"height\": 255\n                        }\n                    },\n                    \"self\": \"https://api.freelancehunt.com/v2/employers/38444\"\n                },\n                \"updates\": []\n            },\n            \"links\": {\n                \"self\": {\n                    \"api\": \"https://api.freelancehunt.com/v2/contests/1390\",\n                    \"web\": \"https://freelancehunt.com/contest/new-contest/1390.html\"\n                },\n                \"comments\": \"https://api.freelancehunt.com/v2/contests/1390/comments\",\n                \"applications\": \"https://api.freelancehunt.com/v2/contests/1390/applications\"\n            }\n        },\n        {\n            \"id\": 1389,\n            \"type\": \"contest\",\n            \"attributes\": {\n                \"name\": \"Need to change some data\",\n                \"description\": \"Confidential information — non-public information that is disclosed by the Transmitting Party to the Recipient Party. Such information may be marked “confidential”\",\n                \"description_html\": \"<p>Confidential information — non-public information that is disclosed by the Transmitting Party to the Recipient Party. Such information may be marked “confidential”</p>\",\n                \"skill\": {\n                    \"id\": 9,\n                    \"name\": \"Icon\"\n                },\n                \"status\": {\n                    \"id\": 130,\n                    \"name\": \"Open for applications\"\n                },\n                \"budget\": {\n                    \"amount\": 1001,\n                    \"currency\": \"UAH\"\n                },\n                \"application_count\": 1,\n                \"published_at\": \"2019-04-08T17:05:25+03:00\",\n                \"duration_days\": 5,\n                \"final_started_at\": \"2019-04-13T17:05:25+03:00\",\n                \"freelancer\": null,\n                \"employer\": {\n                    \"id\": 38444,\n                    \"type\": \"employer\",\n                    \"login\": \"jeweller\",\n                    \"first_name\": \"Oleg\",\n                    \"last_name\": \"Vinnik\",\n                    \"avatar\": {\n                        \"small\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/50/jeweller.png\",\n                            \"width\": 50,\n                            \"height\": 50\n                        },\n                        \"large\": {\n                            \"url\": \"https://content.freelancehunt.com/profile/photo/225/jeweller.png\",\n                            \"width\": 255,\n                            \"height\": 255\n                        }\n                    },\n                    \"self\": \"https://api.freelancehunt.com/v2/employers/38444\"\n                },\n                \"updates\": []\n            },\n            \"links\": {\n                \"self\": {\n                    \"api\": \"https://api.freelancehunt.com/v2/contests/1389\",\n                    \"web\": \"https://freelancehunt.com/contest/need-change-some-data/1389.html\"\n                },\n                \"comments\": \"https://api.freelancehunt.com/v2/contests/1389/comments\",\n                \"applications\": \"https://api.freelancehunt.com/v2/contests/1389/applications\"\n            }\n        }\n    ],\n    \"links\": {\n        \"self\": \"https://api.freelancehunt.com/v2/my/contests\"\n    }\n}"}],"_postman_id":"a8218b14-0188-4068-9284-dd2f483e124e"},{"name":"Contest details","event":[{"listen":"prerequest","script":{"id":"e09fbe47-123e-4ec1-9737-f481d3ebafc1","exec":[""],"type":"text/javascript"}},{"listen":"test","script":{"id":"b15c5d6c-09d4-4e3d-91d2-41ee4a8d054e","exec":[""],"type":"text/javascript"}}],"id":"f898a4ea-9028-4cfb-bedb-7698d31d88a9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"}],"url":"{{api_url}}/v2/contests/{{contest_id}}","description":"<h3 id=\"relational-data-in-attributes\">Relational data in attributes</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>employer</td>\n<td>Contest's owner.</td>\n</tr>\n<tr>\n<td>freelancer</td>\n<td>Freelancer(if is already chosen).</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","contests","{{contest_id}}"],"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"99ae3bc7-ebfc-4644-84a5-dd750fc39321","name":"Successful request","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}"}],"url":"{{api_url}}/v2/contests/1390"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.16.0"},{"key":"Date","value":"Tue, 14 May 2019 13:51:49 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept"},{"key":"X-Auth-Status","value":"true"},{"key":"X-RateLimit-Limit","value":"1200 per hour"},{"key":"X-RateLimit-Remaining","value":"1198"},{"key":"X-Request-Id","value":"1e2a8ab5-64ac-472c-a625-8b98c6162abb"},{"key":"Cache-Control","value":"no-cache, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Content-Language","value":"en"},{"key":"X-Powered-By","value":"api.freelancehunt.com"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 1390,\n        \"type\": \"contest\",\n        \"attributes\": {\n            \"name\": \"New contest\",\n            \"description\": \"Transferring party — The Customers and the Contractors owning confidential information and personal data transferred by them to the Website Administration during registration and use of the Service.\",\n            \"description_html\": \"<p>Transferring party — The Customers and the Contractors owning confidential information and personal data transferred by them to the Website Administration during registration and use of the Service.</p>\",\n            \"skill\": {\n                \"id\": 9,\n                \"name\": \"Icon\"\n            },\n            \"status\": {\n                \"id\": 140,\n                \"name\": \"Final\"\n            },\n            \"budget\": {\n                \"amount\": 1002,\n                \"currency\": \"UAH\"\n            },\n            \"application_count\": 1,\n            \"published_at\": \"2019-04-08T17:05:25+03:00\",\n            \"duration_days\": 5,\n            \"final_started_at\": \"2019-04-13T17:05:25+03:00\",\n            \"freelancer\": null,\n            \"employer\": {\n                \"id\": 38444,\n                \"type\": \"employer\",\n                \"login\": \"jeweller\",\n                \"first_name\": \"Oleg\",\n                \"last_name\": \"Vinnik\",\n                \"avatar\": {\n                    \"small\": {\n                        \"url\": \"https://content.freelancehunt.com/profile/photo/50/jeweller.png\",\n                        \"width\": 50,\n                        \"height\": 50\n                    },\n                    \"large\": {\n                        \"url\": \"https://content.freelancehunt.com/profile/photo/225/jeweller.png\",\n                        \"width\": 255,\n                        \"height\": 255\n                    }\n                },\n                \"self\": \"https://api.freelancehunt.com/v2/employers/38444\"\n            },\n            \"updates\": []\n        },\n        \"links\": {\n            \"self\": {\n                \"api\": \"https://api.freelancehunt.com/v2/contests/1390\",\n                \"web\": \"https://freelancehunt.com/contest/new-contest/1390.html\"\n            },\n            \"comments\": \"https://api.freelancehunt.com/v2/contests/1390/comments\",\n            \"applications\": \"https://api.freelancehunt.com/v2/contests/1390/applications\"\n        }\n    },\n    \"links\": {\n        \"self\": \"https://api.freelancehunt.com/v2/contests/1390\"\n    }\n}"}],"_postman_id":"f898a4ea-9028-4cfb-bedb-7698d31d88a9"},{"name":"Update contest before publication","event":[{"listen":"prerequest","script":{"id":"e09fbe47-123e-4ec1-9737-f481d3ebafc1","exec":[""],"type":"text/javascript"}},{"listen":"test","script":{"id":"b15c5d6c-09d4-4e3d-91d2-41ee4a8d054e","exec":[""],"type":"text/javascript"}}],"id":"f6c19ac1-bfc0-4e50-bfca-e5d1e7c57a4a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PATCH","header":[{"key":"Authorization","value":"Bearer {{token}}"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Updated contest name\",\n    \"duration_days\": 1,\n    \"description_html\": \"<p>Transferring party — The Customers and the Contractors owning confidential information and personal data transferred by them to the Website Administration.</p>\",\n    \"budget\": {\n        \"amount\": 5000,\n        \"currency\": \"UAH\"\n    },\n    \"tags\": [\n\t\t\"1C-Bitrix\",\n\t\t\"PHP\"\n\t],\n\t\"is_stock_allowed\": true\n}"},"url":"{{api_url}}/v2/contests/{{contest_id}}","description":"<h3 id=\"required-body-parameters\">Required Body Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>Contest name.</td>\n</tr>\n<tr>\n<td>budget</td>\n<td>object</td>\n<td>Should be object with <code>amount</code> and <code>currency</code> keys.<br />Example: <code>{\"amount\": 5000, \"currency\": \"UAH\"}</code></td>\n</tr>\n<tr>\n<td>duration_days</td>\n<td>integer</td>\n<td>Applications submission period in days.</td>\n</tr>\n<tr>\n<td>description_html</td>\n<td>string</td>\n<td>Contest description with HTML tags.</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"optional-body-parameters\">Optional Body Parameters</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Name</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>is_stock_allowed</td>\n<td>boolean</td>\n<td>Stock content usage permission for certain contest categories.</td>\n</tr>\n<tr>\n<td>tags</td>\n<td>string[]</td>\n<td>Should be array of tag names.<br />Example: <code>[\"1C-Bitrix\", \"PHP\"]</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","contests","{{contest_id}}"],"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"27d406ce-40c6-49d3-ba35-1707b35848c8","name":"Successful request","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer {{token}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Updated contest name\",\n    \"duration_days\": 1,\n    \"description_html\": \"<p>Transferring party — The Customers and the Contractors owning confidential information and personal data transferred by them to the Website Administration.</p>\",\n    \"budget\": {\n        \"amount\": 5000,\n        \"currency\": \"UAH\"\n    },\n    \"tags\": [\n\t\t\"1C-Bitrix\",\n\t\t\"PHP\"\n\t],\n\t\"is_stock_allowed\": true\n}","options":{"raw":{"language":"json"}}},"url":"{{api_url}}/v2/contests/1390"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.16.0"},{"key":"Date","value":"Tue, 14 May 2019 13:52:12 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept"},{"key":"X-Auth-Status","value":"true"},{"key":"X-RateLimit-Limit","value":"1200 per hour"},{"key":"X-RateLimit-Remaining","value":"1198"},{"key":"X-Request-Id","value":"7eb393d0-fa1d-4104-8155-27a3a0b58e28"},{"key":"Cache-Control","value":"no-cache, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Content-Language","value":"en"},{"key":"X-Powered-By","value":"api.freelancehunt.com"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 1390,\n        \"type\": \"contest\",\n        \"attributes\": {\n            \"name\": \"Updated contest name\",\n            \"description\": \"Transferring party — The Customers and the Contractors owning confidential information and personal data transferred by them to the Website Administration.\",\n            \"description_html\": \"<p>Transferring party — The Customers and the Contractors owning confidential information and personal data transferred by them to the Website Administration.</p>\",\n            \"skill\": {\n                \"id\": 9,\n                \"name\": \"Icon\"\n            },\n            \"status\": {\n                \"id\": 100,\n                \"name\": \"Moderation\"\n            },\n            \"budget\": {\n                \"amount\": 5000,\n                \"currency\": \"UAH\"\n            },\n            \"application_count\": 0,\n            \"published_at\": \"2019-04-08T17:05:25+03:00\",\n            \"duration_days\": 1,\n            \"final_started_at\": \"2019-04-09T17:05:25+03:00\",\n            \"freelancer\": null,\n            \"employer\": {\n                \"id\": 38444,\n                \"type\": \"employer\",\n                \"login\": \"jeweller\",\n                \"first_name\": \"Oleg\",\n                \"last_name\": \"Vinnik\",\n                \"avatar\": {\n                    \"small\": {\n                        \"url\": \"https://content.freelancehunt.com/profile/photo/50/jeweller.png\",\n                        \"width\": 50,\n                        \"height\": 50\n                    },\n                    \"large\": {\n                        \"url\": \"https://content.freelancehunt.com/profile/photo/225/jeweller.png\",\n                        \"width\": 255,\n                        \"height\": 255\n                    }\n                },\n                \"self\": \"https://api.freelancehunt.com/v2/employers/38444\"\n            },\n            \"updates\": []\n        },\n        \"links\": {\n            \"self\": {\n                \"api\": \"https://api.freelancehunt.com/v2/contests/1390\",\n                \"web\": \"https://freelancehunt.com/contest/updated-contest-name/1390.html\"\n            }\n        }\n    },\n    \"links\": {\n        \"self\": \"https://api.freelancehunt.com/v2/contests/1390\"\n    }\n}"}],"_postman_id":"f6c19ac1-bfc0-4e50-bfca-e5d1e7c57a4a"},{"name":"Add update to contest","event":[{"listen":"prerequest","script":{"id":"e09fbe47-123e-4ec1-9737-f481d3ebafc1","exec":[""],"type":"text/javascript"}},{"listen":"test","script":{"id":"b15c5d6c-09d4-4e3d-91d2-41ee4a8d054e","exec":[""],"type":"text/javascript"}}],"id":"a2865d87-8bb9-4924-915c-c4b586eed8e2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"update_html\": \"<b>Update publication</b>\"\n}"},"url":"{{api_url}}/v2/contests/{{contest_id}}/amend","description":"<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Example</th>\n<th>Comment</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>update_html</td>\n<td><code>&lt;b&gt;First update&lt;/b&gt;</code></td>\n<td>Update for contest description with HTML tags, will be added after initial description.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["v2","contests","{{contest_id}}","amend"],"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"0837ccb2-2ac9-4200-a1bd-3751b2fa61b7","name":"Successful request","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{token}}"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"update_html\": \"<b>Update publication</b>\"\n}"},"url":"{{api_url}}/v2/contests/1390/amend"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.16.0"},{"key":"Date","value":"Tue, 14 May 2019 13:52:28 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept"},{"key":"X-Auth-Status","value":"true"},{"key":"X-RateLimit-Limit","value":"1200 per hour"},{"key":"X-RateLimit-Remaining","value":"1197"},{"key":"X-Request-Id","value":"65d39b4c-6496-4d6c-bb9e-1c799844742c"},{"key":"Pragma","value":"no-cache"},{"key":"Cache-Control","value":"no-cache, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Content-Language","value":"en"},{"key":"X-Powered-By","value":"api.freelancehunt.com"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": 1390,\n        \"type\": \"contest\",\n        \"attributes\": {\n            \"name\": \"Updated contest name\",\n            \"description\": \"Transferring party — The Customers and the Contractors owning confidential information and personal data transferred by them to the Website Administration.\",\n            \"description_html\": \"<p>Transferring party — The Customers and the Contractors owning confidential information and personal data transferred by them to the Website Administration.</p>\",\n            \"skill\": {\n                \"id\": 9,\n                \"name\": \"Icon\"\n            },\n            \"status\": {\n                \"id\": 140,\n                \"name\": \"Final\"\n            },\n            \"budget\": {\n                \"amount\": 5000,\n                \"currency\": \"UAH\"\n            },\n            \"application_count\": 1,\n            \"published_at\": \"2019-04-08T17:05:25+03:00\",\n            \"duration_days\": 1,\n            \"final_started_at\": \"2019-04-09T17:05:25+03:00\",\n            \"freelancer\": null,\n            \"employer\": {\n                \"id\": 38444,\n                \"type\": \"employer\",\n                \"login\": \"jeweller\",\n                \"first_name\": \"Oleg\",\n                \"last_name\": \"Vinnik\",\n                \"avatar\": {\n                    \"small\": {\n                        \"url\": \"https://content.freelancehunt.com/profile/photo/50/jeweller.png\",\n                        \"width\": 50,\n                        \"height\": 50\n                    },\n                    \"large\": {\n                        \"url\": \"https://content.freelancehunt.com/profile/photo/225/jeweller.png\",\n                        \"width\": 255,\n                        \"height\": 255\n                    }\n                },\n                \"self\": \"https://api.freelancehunt.com/v2/employers/38444\"\n            },\n            \"updates\": [\n                {\n                    \"description\": \"Update publication\",\n                    \"description_html\": \"<b>Update publication</b>\",\n                    \"published_at\": \"2019-10-20T18:48:21+03:00\"\n                }\n            ]\n        },\n        \"links\": {\n            \"self\": {\n                \"api\": \"https://api.freelancehunt.com/v2/contests/1390\",\n                \"web\": \"https://freelancehunt.com/contest/updated-contest-name/1390.html\"\n            },\n            \"comments\": \"https://api.freelancehunt.com/v2/contests/1390/comments\",\n            \"applications\": \"https://api.freelancehunt.com/v2/contests/1390/applications\"\n        }\n    },\n    \"links\": {\n        \"self\": \"https://api.freelancehunt.com/v2/contests/1390/amend\"\n    }\n}"}],"_postman_id":"a2865d87-8bb9-4924-915c-c4b586eed8e2"}],"id":"28c10a97-5d31-4857-b526-39466229c885","description":"<h2 id=\"available-statuses\">Available statuses:</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Status ID</th>\n<th>Name</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>100</td>\n<td>Moderation</td>\n</tr>\n<tr>\n<td>105</td>\n<td>Clarification required</td>\n</tr>\n<tr>\n<td>110</td>\n<td>Pending payment reservation</td>\n</tr>\n<tr>\n<td>130</td>\n<td>Open for applications</td>\n</tr>\n<tr>\n<td>140</td>\n<td>Final</td>\n</tr>\n<tr>\n<td>150</td>\n<td>Winner chosen</td>\n</tr>\n<tr>\n<td>155</td>\n<td>Contest under arbitrage</td>\n</tr>\n<tr>\n<td>210</td>\n<td>Contest complete</td>\n</tr>\n<tr>\n<td>220</td>\n<td>Winner choosing expired</td>\n</tr>\n<tr>\n<td>230</td>\n<td>Winner not chosen</td>\n</tr>\n<tr>\n<td>310</td>\n<td>Closed by moderator</td>\n</tr>\n<tr>\n<td>320</td>\n<td>Contest expired</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"28c10a97-5d31-4857-b526-39466229c885"},{"name":"Skills","item":[{"name":"Skills list","id":"625f33b5-f103-49ee-bb8a-f5bd64c37de0","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{token}}","type":"text"}],"url":"{{api_url}}/v2/skills","urlObject":{"path":["v2","skills"],"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"447a4c4d-ab87-4016-9c91-2840f0e1095f","name":"Successful request","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{token}}"}],"url":"{{api_url}}/v2/skills"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.16.0"},{"key":"Date","value":"Mon, 13 May 2019 14:44:04 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept"},{"key":"X-Auth-Status","value":"true"},{"key":"X-RateLimit-Limit","value":"1200 per hour"},{"key":"X-RateLimit-Remaining","value":"1188"},{"key":"X-Request-Id","value":"6f65fd1d-4466-4156-81fd-f361fccadcdf"},{"key":"Cache-Control","value":"no-cache, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Content-Language","value":"en"},{"key":"X-Powered-By","value":"api.freelancehunt.com"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 56,\n            \"name\": \"1C\"\n        },\n        {\n            \"id\": 59,\n            \"name\": \"3D graphics\"\n        },\n        {\n            \"id\": 111,\n            \"name\": \"3D modeling and visualization\"\n        },\n        {\n            \"id\": 116,\n            \"name\": \"Abstracts, diploma papers, course papers\"\n        },\n        {\n            \"id\": 149,\n            \"name\": \"Accounting services\"\n        },\n        {\n            \"id\": 138,\n            \"name\": \"Advertising\"\n        },\n        {\n            \"id\": 91,\n            \"name\": \"Animation\"\n        },\n        {\n            \"id\": 103,\n            \"name\": \"Application programming\"\n        },\n        {\n            \"id\": 121,\n            \"name\": \"Apps for Android\"\n        },\n        {\n            \"id\": 120,\n            \"name\": \"Apps for iOS (iPhone/iPad)\"\n        },\n        {\n            \"id\": 108,\n            \"name\": \"Architectural design\"\n        },\n        {\n            \"id\": 38,\n            \"name\": \"Article writing\"\n        },\n        {\n            \"id\": 141,\n            \"name\": \"Artwork\"\n        },\n        {\n            \"id\": 102,\n            \"name\": \"Audio processing\"\n        },\n        {\n            \"id\": 113,\n            \"name\": \"Audio/video editing\"\n        },\n        {\n            \"id\": 41,\n            \"name\": \"Banners\"\n        },\n        {\n            \"id\": 182,\n            \"name\": \"Blockchain\"\n        },\n        {\n            \"id\": 156,\n            \"name\": \"Business card design\"\n        },\n        {\n            \"id\": 112,\n            \"name\": \"Business consulting\"\n        },\n        {\n            \"id\": 24,\n            \"name\": \"C#\"\n        },\n        {\n            \"id\": 2,\n            \"name\": \"C/C++\"\n        },\n        {\n            \"id\": 180,\n            \"name\": \"Chat bot development\"\n        },\n        {\n            \"id\": 150,\n            \"name\": \"Client management/CRM\"\n        },\n        {\n            \"id\": 78,\n            \"name\": \"CMS installation and configuration\"\n        },\n        {\n            \"id\": 72,\n            \"name\": \"Computer networking\"\n        },\n        {\n            \"id\": 154,\n            \"name\": \"Consulting\"\n        },\n        {\n            \"id\": 104,\n            \"name\": \"Content management\"\n        },\n        {\n            \"id\": 127,\n            \"name\": \"Contextual advertising\"\n        },\n        {\n            \"id\": 76,\n            \"name\": \"Copywriting\"\n        },\n        {\n            \"id\": 77,\n            \"name\": \"Corporate style\"\n        },\n        {\n            \"id\": 171,\n            \"name\": \"Customer support\"\n        },\n        {\n            \"id\": 169,\n            \"name\": \"Data parsing\"\n        },\n        {\n            \"id\": 178,\n            \"name\": \"Data processing\"\n        },\n        {\n            \"id\": 86,\n            \"name\": \"Databases\"\n        },\n        {\n            \"id\": 177,\n            \"name\": \"Delphi/Object Pascal\"\n        },\n        {\n            \"id\": 64,\n            \"name\": \"Designing\"\n        },\n        {\n            \"id\": 181,\n            \"name\": \"DevOps\"\n        },\n        {\n            \"id\": 147,\n            \"name\": \"Drawings and diagrams\"\n        },\n        {\n            \"id\": 136,\n            \"name\": \"Email marketing\"\n        },\n        {\n            \"id\": 176,\n            \"name\": \"Embedded systems and microcontrollers\"\n        },\n        {\n            \"id\": 148,\n            \"name\": \"Engineering\"\n        },\n        {\n            \"id\": 79,\n            \"name\": \"English\"\n        },\n        {\n            \"id\": 132,\n            \"name\": \"Exhibition booth design\"\n        },\n        {\n            \"id\": 5,\n            \"name\": \"Flash/Flex\"\n        },\n        {\n            \"id\": 48,\n            \"name\": \"FreeBSD\"\n        },\n        {\n            \"id\": 158,\n            \"name\": \"French\"\n        },\n        {\n            \"id\": 88,\n            \"name\": \"Gaming applications\"\n        },\n        {\n            \"id\": 115,\n            \"name\": \"Geographic information systems\"\n        },\n        {\n            \"id\": 80,\n            \"name\": \"German\"\n        },\n        {\n            \"id\": 54,\n            \"name\": \"Git/Mercurial\"\n        },\n        {\n            \"id\": 173,\n            \"name\": \"Go\"\n        },\n        {\n            \"id\": 142,\n            \"name\": \"Handmade\"\n        },\n        {\n            \"id\": 166,\n            \"name\": \"Hebrew\"\n        },\n        {\n            \"id\": 124,\n            \"name\": \"HTML/CSS\"\n        },\n        {\n            \"id\": 93,\n            \"name\": \"Icons and pixel graphics\"\n        },\n        {\n            \"id\": 90,\n            \"name\": \"Illustrations and drawings\"\n        },\n        {\n            \"id\": 164,\n            \"name\": \"Industrial design\"\n        },\n        {\n            \"id\": 172,\n            \"name\": \"Infographics\"\n        },\n        {\n            \"id\": 170,\n            \"name\": \"Information gathering\"\n        },\n        {\n            \"id\": 42,\n            \"name\": \"Interface design\"\n        },\n        {\n            \"id\": 106,\n            \"name\": \"Interior design\"\n        },\n        {\n            \"id\": 62,\n            \"name\": \"IP-telephony/VoIP\"\n        },\n        {\n            \"id\": 82,\n            \"name\": \"Italian\"\n        },\n        {\n            \"id\": 13,\n            \"name\": \"Java\"\n        },\n        {\n            \"id\": 28,\n            \"name\": \"JavaScript\"\n        },\n        {\n            \"id\": 107,\n            \"name\": \"Landscape design\"\n        },\n        {\n            \"id\": 162,\n            \"name\": \"Lead generation and sales\"\n        },\n        {\n            \"id\": 153,\n            \"name\": \"Legal services\"\n        },\n        {\n            \"id\": 6,\n            \"name\": \"Linux/Unix\"\n        },\n        {\n            \"id\": 17,\n            \"name\": \"Logo design\"\n        },\n        {\n            \"id\": 146,\n            \"name\": \"Mac OS/Objective-C\"\n        },\n        {\n            \"id\": 175,\n            \"name\": \"Machine learning\"\n        },\n        {\n            \"id\": 94,\n            \"name\": \"Marketing research\"\n        },\n        {\n            \"id\": 61,\n            \"name\": \"Microsoft .NET\"\n        },\n        {\n            \"id\": 179,\n            \"name\": \"Mobile apps design\"\n        },\n        {\n            \"id\": 100,\n            \"name\": \"Music\"\n        },\n        {\n            \"id\": 123,\n            \"name\": \"Naming and slogans\"\n        },\n        {\n            \"id\": 174,\n            \"name\": \"Node.js\"\n        },\n        {\n            \"id\": 68,\n            \"name\": \"Online stores and e-commerce\"\n        },\n        {\n            \"id\": 109,\n            \"name\": \"Outdoor advertising\"\n        },\n        {\n            \"id\": 117,\n            \"name\": \"Package design\"\n        },\n        {\n            \"id\": 129,\n            \"name\": \"Payment systems integration\"\n        },\n        {\n            \"id\": 18,\n            \"name\": \"Photo processing\"\n        },\n        {\n            \"id\": 139,\n            \"name\": \"Photography\"\n        },\n        {\n            \"id\": 1,\n            \"name\": \"PHP\"\n        },\n        {\n            \"id\": 140,\n            \"name\": \"Poems, songs, prose\"\n        },\n        {\n            \"id\": 114,\n            \"name\": \"Presentation development\"\n        },\n        {\n            \"id\": 75,\n            \"name\": \"Print design\"\n        },\n        {\n            \"id\": 89,\n            \"name\": \"Project management\"\n        },\n        {\n            \"id\": 165,\n            \"name\": \"Prototyping\"\n        },\n        {\n            \"id\": 22,\n            \"name\": \"Python\"\n        },\n        {\n            \"id\": 159,\n            \"name\": \"Recruitment\"\n        },\n        {\n            \"id\": 125,\n            \"name\": \"Rewriting\"\n        },\n        {\n            \"id\": 23,\n            \"name\": \"Ruby\"\n        },\n        {\n            \"id\": 163,\n            \"name\": \"Script writing\"\n        },\n        {\n            \"id\": 14,\n            \"name\": \"Search engine optimization\"\n        },\n        {\n            \"id\": 135,\n            \"name\": \"Search engine reputation management\"\n        },\n        {\n            \"id\": 133,\n            \"name\": \"Social media advertising\"\n        },\n        {\n            \"id\": 131,\n            \"name\": \"Social media marketing\"\n        },\n        {\n            \"id\": 151,\n            \"name\": \"Social media page design\"\n        },\n        {\n            \"id\": 65,\n            \"name\": \"Software protection and security\"\n        },\n        {\n            \"id\": 157,\n            \"name\": \"Software, website and game localization\"\n        },\n        {\n            \"id\": 83,\n            \"name\": \"Software/server configuration\"\n        },\n        {\n            \"id\": 84,\n            \"name\": \"Spanish\"\n        },\n        {\n            \"id\": 143,\n            \"name\": \"Speaker/Voice services\"\n        },\n        {\n            \"id\": 160,\n            \"name\": \"Swift\"\n        },\n        {\n            \"id\": 39,\n            \"name\": \"System administration\"\n        },\n        {\n            \"id\": 85,\n            \"name\": \"System programming\"\n        },\n        {\n            \"id\": 145,\n            \"name\": \"Teaser advertisements\"\n        },\n        {\n            \"id\": 97,\n            \"name\": \"Technical documentation\"\n        },\n        {\n            \"id\": 57,\n            \"name\": \"Testing and QA\"\n        },\n        {\n            \"id\": 168,\n            \"name\": \"Text editing and proofreading\"\n        },\n        {\n            \"id\": 37,\n            \"name\": \"Text translation\"\n        },\n        {\n            \"id\": 122,\n            \"name\": \"Transcribing\"\n        },\n        {\n            \"id\": 95,\n            \"name\": \"Tuition\"\n        },\n        {\n            \"id\": 152,\n            \"name\": \"Type/Font design\"\n        },\n        {\n            \"id\": 58,\n            \"name\": \"Vector graphics\"\n        },\n        {\n            \"id\": 144,\n            \"name\": \"Video advertising\"\n        },\n        {\n            \"id\": 101,\n            \"name\": \"Video processing\"\n        },\n        {\n            \"id\": 161,\n            \"name\": \"Video recording\"\n        },\n        {\n            \"id\": 43,\n            \"name\": \"Web design\"\n        },\n        {\n            \"id\": 99,\n            \"name\": \"Web programming\"\n        },\n        {\n            \"id\": 96,\n            \"name\": \"Website development\"\n        },\n        {\n            \"id\": 45,\n            \"name\": \"Website maintenance\"\n        },\n        {\n            \"id\": 134,\n            \"name\": \"Website SEO audit\"\n        },\n        {\n            \"id\": 7,\n            \"name\": \"Windows\"\n        }\n    ],\n    \"links\": {\n        \"self\": \"https://api.freelancehunt.com/v2/skills\"\n    }\n}"}],"_postman_id":"625f33b5-f103-49ee-bb8a-f5bd64c37de0"}],"id":"bd98872f-122d-4904-8195-3e3fb2c36340","_postman_id":"bd98872f-122d-4904-8195-3e3fb2c36340","description":""},{"name":"Countries","item":[{"name":"Countries list","id":"845d0084-87ba-434d-8b13-8a635cdfa564","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{token}}"}],"url":"{{api_url}}/v2/countries","urlObject":{"path":["v2","countries"],"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"d4abd6c5-9027-4439-8ac9-d596db4b0e91","name":"Successful request","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{token}}"}],"url":"{{api_url}}/v2/countries"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.16.0"},{"key":"Date","value":"Mon, 13 May 2019 14:44:04 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept"},{"key":"X-Auth-Status","value":"true"},{"key":"X-RateLimit-Limit","value":"1200 per hour"},{"key":"X-RateLimit-Remaining","value":"1188"},{"key":"X-Request-Id","value":"6f65fd1d-4466-4156-81fd-f361fccadcdf"},{"key":"Cache-Control","value":"no-cache, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Content-Language","value":"en"},{"key":"X-Powered-By","value":"api.freelancehunt.com"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 4,\n            \"iso2\": \"AU\",\n            \"name\": \"Австралия\"\n        },\n        {\n            \"id\": 5,\n            \"iso2\": \"AT\",\n            \"name\": \"Австрия\"\n        },\n        {\n            \"id\": 6,\n            \"iso2\": \"AZ\",\n            \"name\": \"Азербайджан\"\n        },\n\t\t...\n        {\n            \"id\": 218,\n            \"iso2\": \"JP\",\n            \"name\": \"Япония\"\n        }\n    ],\n    \"links\": {\n        \"self\": \"https://api.freelancehunt.com/v2/countries\"\n    }\n}"}],"_postman_id":"845d0084-87ba-434d-8b13-8a635cdfa564"}],"id":"d781d975-810f-47d6-b267-5179ed8a5562","_postman_id":"d781d975-810f-47d6-b267-5179ed8a5562","description":""},{"name":"Cities","item":[{"name":"Cities list","id":"8d0403c1-5011-4f94-812f-27d821aaf41e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{token}}"}],"url":"{{api_url}}/v2/cities/{{country_id}}","urlObject":{"path":["v2","cities","{{country_id}}"],"host":["{{api_url}}"],"query":[],"variable":[]}},"response":[{"id":"3f624c6e-cebd-45e3-ab3e-aefdec66d308","name":"Successful request","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{token}}"}],"url":"{{api_url}}/v2/cities/{{country_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx/1.16.0"},{"key":"Date","value":"Mon, 13 May 2019 14:44:04 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Vary","value":"Accept"},{"key":"X-Auth-Status","value":"true"},{"key":"X-RateLimit-Limit","value":"1200 per hour"},{"key":"X-RateLimit-Remaining","value":"1188"},{"key":"X-Request-Id","value":"6f65fd1d-4466-4156-81fd-f361fccadcdf"},{"key":"Cache-Control","value":"no-cache, must-revalidate"},{"key":"Expires","value":"0"},{"key":"Content-Language","value":"en"},{"key":"X-Powered-By","value":"api.freelancehunt.com"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": 2627,\n            \"name\": \"Авдеевка\"\n        },\n        {\n            \"id\": 2737,\n            \"name\": \"Акимовка\"\n        },\n\t\t...\n        {\n            \"id\": 2688,\n            \"name\": \"Ясиноватая\"\n        }\n    ],\n    \"links\": {\n        \"self\": \"https://api.freelancehunt.com/v2/cities/1\"\n    }\n}"}],"_postman_id":"8d0403c1-5011-4f94-812f-27d821aaf41e"}],"id":"65a2a9b4-b52d-4706-8c54-990600b58c2b","_postman_id":"65a2a9b4-b52d-4706-8c54-990600b58c2b","description":""}],"event":[{"listen":"prerequest","script":{"id":"dbc66e4c-0b19-4471-8d00-121f03ed9382","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"f3f48766-3bab-4de5-94d8-d2450083e57e","type":"text/javascript","exec":[""]}}]}