{"info":{"_postman_id":"60276f2c-4549-4f51-95ee-27b6bb69c86a","name":"CoFoundersLab API v2.0 Doc","description":"<html><head></head><body><p>CoFoundersLab private API.</p>\n<h1 id=\"push-notifications\">Push Notifications</h1>\n<p>To send push notifications, you will have to send the Environment by http header with the next values: debug, test, staging, production.</p>\n<h1 id=\"security\">Security</h1>\n<p>To access any endpoint you must get a acces_token, which will be sent as a get parameter.</p>\n<p>To obtain access_token you must use OAuth2 Access Token.</p>\n<p>To refresh access with another token, you must use OAuth2 Refresh Token.</p>\n<h1 id=\"responses\">Responses</h1>\n<h2 id=\"error-object\">Error Object</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>code</td>\n<td>Integer</td>\n<td>Code number</td>\n</tr>\n<tr>\n<td>constraint</td>\n<td>String</td>\n<td>Constraint Violated</td>\n</tr>\n</tbody>\n</table>\n</div><pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">{\n  \"errors\": [\n    {\n      \"intention\": {\n        \"code\": 1003,\n        \"constraint\": \"NotNull\"\n      }\n    },\n    {\n      \"intention\": {\n        \"code\": 1001,\n        \"constraint\": \"NotBlank\"\n      }\n    }\n  ]\n}\n</code></pre>\n<h1 id=\"error-codes\">Error Codes</h1>\n<h2 id=\"basic-errors\">Basic Errors</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Constraint</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1000</td>\n<td>Unknown</td>\n<td>Validation not recognized</td>\n</tr>\n<tr>\n<td>1001</td>\n<td>NotBlank</td>\n<td>Validates that a value is not blank</td>\n</tr>\n<tr>\n<td>1002</td>\n<td>Blank</td>\n<td>Validates that a value is blank</td>\n</tr>\n<tr>\n<td>1003</td>\n<td>NotNull</td>\n<td>Validates that a value is not strictly equal to null</td>\n</tr>\n<tr>\n<td>1004</td>\n<td>IsFalse</td>\n<td>Validates that a value is false</td>\n</tr>\n<tr>\n<td>1005</td>\n<td>IsNull</td>\n<td>Validates that a value is exactly equal to null</td>\n</tr>\n<tr>\n<td>1006</td>\n<td>IsTrue</td>\n<td>Validates that a value is true</td>\n</tr>\n<tr>\n<td>1007</td>\n<td>Type</td>\n<td>Validates that a value is of a specific data type</td>\n</tr>\n<tr>\n<td>2001</td>\n<td>NotBlankButNull</td>\n<td>Validates that a value is not blank but equal to null</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"string-errors\">String Errors</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Constraint</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1101</td>\n<td>Email</td>\n<td>Validates that a value is a valid email address</td>\n</tr>\n<tr>\n<td>1102</td>\n<td>Length</td>\n<td>Validates that a given string length is between some minimum and maximum value</td>\n</tr>\n<tr>\n<td>1103</td>\n<td>Url</td>\n<td>Validates that a value is a valid URL string</td>\n</tr>\n<tr>\n<td>1104</td>\n<td>Regex</td>\n<td>Validates that a value matches a regular expression</td>\n</tr>\n<tr>\n<td>1105</td>\n<td>Ip</td>\n<td>Validates that a value is a valid IP address</td>\n</tr>\n<tr>\n<td>1106</td>\n<td>Uuid</td>\n<td>Validates that a value is a valid Universally unique identifier (UUID) per RFC 4122</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"number-errors\">Number Errors</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Constraint</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1201</td>\n<td>Range</td>\n<td>Validates that a given number is between some minimum and maximum number</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"comparison-errors\">Comparison Errors</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Constraint</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1301</td>\n<td>EqualTo</td>\n<td>Validates that a value is equal to another value, defined in the options</td>\n</tr>\n<tr>\n<td>1302</td>\n<td>NotEqualTo</td>\n<td>Validates that a value is not equal to another value, defined in the options</td>\n</tr>\n<tr>\n<td>1303</td>\n<td>IdenticalTo</td>\n<td>Validates that a value is identical to another value, defined in the options</td>\n</tr>\n<tr>\n<td>1304</td>\n<td>NotIdenticalTo</td>\n<td>Validates that a value is not identical to another value, defined in the options</td>\n</tr>\n<tr>\n<td>1305</td>\n<td>LessThan</td>\n<td>Validates that a value is less than another value, defined in the options</td>\n</tr>\n<tr>\n<td>1306</td>\n<td>LessThanOrEqual</td>\n<td>Validates that a value is less than or equal to another value, defined in the options</td>\n</tr>\n<tr>\n<td>1307</td>\n<td>GreaterThan</td>\n<td>Validates that a value is greater than another value, defined in the options</td>\n</tr>\n<tr>\n<td>1308</td>\n<td>GreaterThanOrEqual</td>\n<td>Validates that a value is greater than or equal to another value, defined in the options</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"date-errors\">Date Errors</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Constraint</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1401</td>\n<td>Date</td>\n<td>Validates that a value is a valid date, meaning either a DateTime object or a string (or an object that can be cast into a string) that follows a valid YYYY-MM-DD format</td>\n</tr>\n<tr>\n<td>1402</td>\n<td>DateTime</td>\n<td>Validates that a value is a valid \"datetime\", meaning either a DateTime object or a string (or an object that can be cast into a string) that follows a specific format.</td>\n</tr>\n<tr>\n<td>1403</td>\n<td>Time</td>\n<td>Validates that a value is a valid time, meaning either a DateTime object or a string (or an object that can be cast into a string) that follows a valid \"HH:MM:SS\" format</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"collection-errors\">Collection Errors</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Constraint</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1501</td>\n<td>Choice</td>\n<td>This constraint is used to ensure that the given value is one of a given set of valid choices</td>\n</tr>\n<tr>\n<td>1502</td>\n<td>Collection</td>\n<td>This constraint is used when the underlying data is a collection</td>\n</tr>\n<tr>\n<td>1503</td>\n<td>Count</td>\n<td>Validates that a given collection's element count is between some minimum and maximum value</td>\n</tr>\n<tr>\n<td>1504</td>\n<td>Language</td>\n<td>Validates that a value is a valid language Unicode language identifier</td>\n</tr>\n<tr>\n<td>1505</td>\n<td>Locale</td>\n<td>Validates that a value is a valid locale</td>\n</tr>\n<tr>\n<td>1506</td>\n<td>Country</td>\n<td>Validates that a value is a valid ISO 3166-1 alpha-2 country code</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"file-errors\">File Errors</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Constraint</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1601</td>\n<td>File</td>\n<td>Validates that a value is a valid \"file\"</td>\n</tr>\n<tr>\n<td>1602</td>\n<td>Image</td>\n<td>The Image constraint works exactly like the File constraint, except that its mimeTypes and mimeTypesMessage options are automatically setup to work for image files specifically</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"financial-and-other-number-errors\">Financial and other Number Errors</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Constraint</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1701</td>\n<td>Bic</td>\n<td>This constraint is used to ensure that a value has the proper format of a Business Identifier Code (BIC)</td>\n</tr>\n<tr>\n<td>1702</td>\n<td>CardScheme</td>\n<td>This constraint ensures that a credit card number is valid for a given credit card company</td>\n</tr>\n<tr>\n<td>1703</td>\n<td>Currency</td>\n<td>Validates that a value is a valid 3-letter ISO 4217 currency name</td>\n</tr>\n<tr>\n<td>1704</td>\n<td>Issn</td>\n<td>Validates that a value is a valid International Standard Serial Number (ISSN)</td>\n</tr>\n<tr>\n<td>1705</td>\n<td>Luhn</td>\n<td>This constraint is used to ensure that a credit card number passes the Luhn algorithm</td>\n</tr>\n<tr>\n<td>1706</td>\n<td>Iban</td>\n<td>This constraint is used to ensure that a bank account number has the proper format of an International Bank Account Number (IBAN)</td>\n</tr>\n<tr>\n<td>1707</td>\n<td>Isbn</td>\n<td>This constraint validates that an International Standard Book Number (ISBN) is either a valid ISBN-10 or a valid ISBN-13</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"other-errors\">Other Errors</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Constraint</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1801</td>\n<td>All</td>\n<td>When applied to an array (or Traversable object), this constraint allows you to apply a collection of constraints to each element of the array</td>\n</tr>\n<tr>\n<td>1802</td>\n<td>Callback</td>\n<td>The purpose of the Callback constraint is to create completely custom validation rules and to assign any validation errors to specific fields on your object</td>\n</tr>\n<tr>\n<td>1803</td>\n<td>Expression</td>\n<td>This constraint allows you to use an expression for more complex, dynamic validation</td>\n</tr>\n<tr>\n<td>1804</td>\n<td>Valid</td>\n<td>This constraint is used to enable validation on objects that are embedded as properties on an object being validated</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"city-errors\">City Errors</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Constraint</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>2002</td>\n<td>ExistingCityIdConstraint</td>\n<td>Validates if City Id exist</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"account-errors\">Account Errors</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Constraint</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>2101</td>\n<td>EmailUniquenessConstraint</td>\n<td>Validates if email is unique</td>\n</tr>\n<tr>\n<td>2102</td>\n<td>ExistingEmailConstraint</td>\n<td>Validates if email exist</td>\n</tr>\n<tr>\n<td>2103</td>\n<td>ExistingIdConstraint</td>\n<td>Validates if User Id exist</td>\n</tr>\n<tr>\n<td>2104</td>\n<td>PasswordConstraint</td>\n<td>Validates password format /^(?=.<em>[A-Z])(?=.</em>[0-9]).{8,}$/</td>\n</tr>\n<tr>\n<td>2105</td>\n<td>UserPasswordConstraint</td>\n<td>Validates password format /^(?=.<em>[A-Z])(?=.</em>[0-9]).{8,}$/</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"connection-errors\">Connection Errors</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Constraint</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>2201</td>\n<td>ConnectedUsersConstraint</td>\n<td>Validates if users are connected</td>\n</tr>\n<tr>\n<td>2202</td>\n<td>ExistingConnectionRequestConstraint</td>\n<td>Validates if users are pending connection</td>\n</tr>\n<tr>\n<td>2203</td>\n<td>UniqueConnectionRequestConstraint</td>\n<td>Validates if users aren't connection with status pending or accepted</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"discuss-errors\">Discuss Errors</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Constraint</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>2301</td>\n<td>AllowedVoteActionConstraint</td>\n<td>Validates that user is not trying to multiple up/down vote</td>\n</tr>\n<tr>\n<td>2302</td>\n<td>ExistingItemIdConstraint</td>\n<td>Validates that Item id exist</td>\n</tr>\n<tr>\n<td>2303</td>\n<td>ExistingTopicIdConstraint</td>\n<td>Validates that Topic id exist</td>\n</tr>\n<tr>\n<td>2304</td>\n<td>ExistingTopicNameConstraint</td>\n<td>Validates that Topic name exist</td>\n</tr>\n<tr>\n<td>2305</td>\n<td>ItemIsQuestionConstraint</td>\n<td>Validates if Item is question type</td>\n</tr>\n<tr>\n<td>2306</td>\n<td>UniqueTopicUrlConstraint</td>\n<td>Validates if Topic url exist</td>\n</tr>\n<tr>\n<td>2307</td>\n<td>UniqueUrlConstraint</td>\n<td>Validates if Item url exist</td>\n</tr>\n<tr>\n<td>2308</td>\n<td>UserIdOrIpAddressConstraint</td>\n<td>Validates if User id or Ip address is setted</td>\n</tr>\n<tr>\n<td>2309</td>\n<td>ValidContentConstraint</td>\n<td>Validates if Content is correct</td>\n</tr>\n<tr>\n<td>2310</td>\n<td>ValidVoteValueConstraint</td>\n<td>Validates that vote value is present in Action</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"event-errors\">Event Errors</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Constraint</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>2401</td>\n<td>ExistingEventEditionIdConstraint</td>\n<td>Validates that Event edition id exist</td>\n</tr>\n<tr>\n<td>2402</td>\n<td>ExistingEventIdConstraint</td>\n<td>Validates that Event id exist</td>\n</tr>\n<tr>\n<td>2403</td>\n<td>ExistingEventOrganizerIdConstraint</td>\n<td>Validates that Event Organizer id exist</td>\n</tr>\n<tr>\n<td>2404</td>\n<td>ExistingEventPartnerIdConstraint</td>\n<td>Validates that Event Partner id exist</td>\n</tr>\n<tr>\n<td>2405</td>\n<td>ExistingEventTestimonialIdConstraint</td>\n<td>Validates that Event Testimonial id exist</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"conversation-errors\">Conversation Errors</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Constraint</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>2501</td>\n<td>ExistingConversationIdConstraint</td>\n<td>Validates that Conversation id exist</td>\n</tr>\n<tr>\n<td>2502</td>\n<td>ExistingMessageIdConstraint</td>\n<td>Validates that Message id exist</td>\n</tr>\n<tr>\n<td>2503</td>\n<td>ExistingParticipantIdConstraint</td>\n<td>Validates that Participant id exist</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"profile-errors\">Profile Errors</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Constraint</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>2601</td>\n<td>ExistingProfileIdConstraint</td>\n<td>Validates that Profile id exist</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"subscription-errors\">Subscription Errors</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Constraint</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>2701</td>\n<td>ActivePlanConstraint</td>\n<td>Validates that passed value exists as an Id on the plans</td>\n</tr>\n<tr>\n<td>2702</td>\n<td>CouponUniquenessConstraint</td>\n<td>Validates if Coupon not exist</td>\n</tr>\n<tr>\n<td>2703</td>\n<td>NullOrExistingCouponStripeIdConstraint</td>\n<td></td>\n</tr>\n<tr>\n<td>2704</td>\n<td>ExistingPlanStripeIdConstraint</td>\n<td>Validates that passed value exists as an Id on the plans. If passed a null value, validation gets bypassed.</td>\n</tr>\n<tr>\n<td>2705</td>\n<td>NullOrExistingPlanStripeIdConstraint</td>\n<td>Validates that passed value exists as an Id on the plans. If passed a null value, validation gets bypassed.</td>\n</tr>\n<tr>\n<td>2706</td>\n<td>PlanUniquenessConstraint</td>\n<td>Validates if this Plan not exist</td>\n</tr>\n<tr>\n<td>2707</td>\n<td>SubscriptionActiveConstraint</td>\n<td>Validates that passed value exists as an Id on the Subscription</td>\n</tr>\n<tr>\n<td>2708</td>\n<td>SubscriptionUniquenessConstraint</td>\n<td>Validates if this Subscription not exist</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"error-exceptions\">Error Exceptions</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Constraint</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>3001</td>\n<td>OAuth2ServerException</td>\n<td>OAuth2 errors that require termination of OAuth2 due to an error.</td>\n</tr>\n<tr>\n<td>3002</td>\n<td>AccessDeniedHttpException</td>\n<td>Access denied to this endpoint</td>\n</tr>\n<tr>\n<td>3003</td>\n<td>UsernameNotFoundException</td>\n<td>User not exist</td>\n</tr>\n<tr>\n<td>3004</td>\n<td>InvalidArgumentException</td>\n<td>If an argument does not match with the expected value</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"common-responses\">Common Responses</h1>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Response</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>401</td>\n<td>Access Denied</td>\n</tr>\n<tr>\n<td>500</td>\n<td>Internal Server Error</td>\n</tr>\n</tbody>\n</table>\n</div></body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Push Notifications","slug":"push-notifications"},{"content":"Security","slug":"security"},{"content":"Responses","slug":"responses"},{"content":"Error Codes","slug":"error-codes"},{"content":"Common Responses","slug":"common-responses"}],"owner":"1975309","collectionId":"60276f2c-4549-4f51-95ee-27b6bb69c86a","publishedId":"6tf1hmS","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2017-10-11T14:40:34.000Z"},"item":[{"name":"Account","item":[{"name":"Me","event":[{"listen":"test","script":{"type":"text/javascript","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","tests[\"Body matches string\"] = responseBody.has(\"id\");","","var jsonData = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"user_id_1\", jsonData.data.id);"]}}],"id":"08adba90-37bc-4ecd-acbc-87978237d5f1","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"receiver_id","value":"57994468b43401c0360041a8","type":"text","disabled":true},{"key":"intention","value":"other","type":"text","disabled":true},{"key":"personal_message","value":"test","type":"text","disabled":true},{"key":"","value":"","type":"text","disabled":true}]},"url":"{{host}}/api/v2/account/me","description":"<p>Get my account data</p>\n","urlObject":{"path":["api","v2","account","me"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"40daea33-d56c-41eb-b4fe-33c6fcdbdcf9","name":"200: Ok","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token_1}}","warning":""}],"body":{"mode":"formdata","formdata":[{"key":"receiver_id","value":"57994468b43401c0360041a8","type":"text","disabled":true},{"key":"intention","value":"other","type":"text","disabled":true},{"key":"personal_message","value":"test","type":"text","disabled":true},{"key":"","value":"","type":"text","disabled":true}]},"url":"{{host}}/api/v2/account/me"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Allow","key":"Allow","value":"GET","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"no-cache","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json","description":""},{"name":"Date","key":"Date","value":"Tue, 25 Jul 2017 11:27:20 GMT","description":""},{"name":"Server","key":"Server","value":"nginx/1.4.6 (Ubuntu)","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Debug-Token","key":"X-Debug-Token","value":"6d55f3","description":""},{"name":"X-Debug-Token-Link","key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/6d55f3","description":""}],"cookie":[{"expires":"Wed Jun 13 2018 10:29:38 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"PHPSTORM","key":"XDEBUG_SESSION"},{"expires":"Thu Jun 13 2019 16:06:42 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"ebd47827-25ce-4d3e-93d5-f442a724196b","key":"ahoy_visitor"},{"expires":"Thu Jun 13 2019 16:06:44 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"GA1.1.439762883.1497370005","key":"_ga"},{"expires":"Wed Jun 13 2018 16:06:46 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"88b1060_819d3869-8c8e-480f-b382-8a4b6e3b7f8f-6139e386a-66afc2cca253-6cad","key":"__distillery"},{"expires":"Thu Jun 13 2019 16:06:47 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"251003481.9a892c380504e42262198dae416e15f2.1497370007155.1497370007155.1497370007155.1","key":"__hstc"},{"expires":"Fri Jun 11 2027 16:06:47 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"9a892c380504e42262198dae416e15f2","key":"hubspotutk"},{"expires":"Sat Aug 19 2017 14:51:20 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"jsqbhrmurhappk0fhqct8olo82","key":"PHPSESSID"},{"expires":"Sat Aug 19 2017 14:51:20 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"home-tagline-simplified","key":"cfl_ab_home"},{"expires":"Sat Aug 19 2017 14:51:59 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"v4","key":"cfl_ab_onboarding"},{"expires":"Sat Aug 19 2017 14:51:59 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"premium-v4","key":"cfl_ab_premium_onboarding"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":true,"value":"sX7jI4ZD1YgQM71HSPE6sMiJcPzA31fBD7XYCsP1Zk8","key":"XSRF-TOKEN"}],"responseTime":"632","body":"{\"data\":{\"first_name\":\"Test\",\"last_name\":\"1\",\"is_premium\":false,\"id\":\"596f2ee9279871870c8b4567\",\"email\":\"test98ff85253ab4b8b97a3005ac0335b85e@cofounderslab.com\",\"roles\":[\"ROLE_USER\"],\"registered_at\":\"07\\/19\\/2017 10:05:29\",\"last_login\":\"07\\/20\\/2017 14:51:08\",\"status\":\"active\",\"onboarded\":true,\"verified\":false,\"verified_email\":false,\"profile\":{\"first_name\":\"Test\",\"last_name\":\"1\",\"photo\":\"https:\\/\\/s3.amazonaws.com\\/cofounderslab-production\\/static\\/avatars\\/avatar0.jpg\",\"connection_status\":\"not_existing_connection\"},\"communication_preferences\":{\"recommendations_frequency\":\"weekly\",\"messages\":true,\"favorites\":false,\"visits\":true,\"learning_interests\":[\"fundraising\",\"financial modeling\"]},\"discuss_communication_preferences\":{\"digest_frequency\":\"twice_a_weekly\",\"new_notifications\":\"topics_followed\",\"follow_notifications\":\"none\",\"up_vote_notifications\":false},\"push_notification_communication_preferences\":{\"connection_request\":false,\"connection_accepted\":false,\"new_message\":true}},\"errors\":[]}"},{"id":"55544409-f69f-4ef8-a899-268ca8db35db","name":"200: OK","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[{"key":"receiver_id","value":"57994468b43401c0360041a8","type":"text","disabled":true},{"key":"intention","value":"other","type":"text","disabled":true},{"key":"personal_message","value":"test","type":"text","disabled":true},{"key":"","value":"","type":"text","disabled":true}]},"url":{"raw":"{{host}}/api/v2/account/me?access_token={{access_token_1}}","host":["{{host}}"],"path":["api","v2","account","me"],"query":[{"key":"access_token","value":"{{access_token_1}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Allow","key":"Allow","value":"GET","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"no-cache","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json","description":""},{"name":"Date","key":"Date","value":"Thu, 11 May 2017 12:08:15 GMT","description":""},{"name":"Server","key":"Server","value":"nginx/1.4.6 (Ubuntu)","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Debug-Token","key":"X-Debug-Token","value":"2aef80","description":""},{"name":"X-Debug-Token-Link","key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/2aef80","description":""}],"cookie":[{"expires":"Sat Jun 03 2017 15:37:29 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"v2","key":"cfl_ab_onboarding"},{"expires":"Wed Jun 07 2017 17:15:03 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"qh4thca8fjji51djn7poi17sb7","key":"PHPSESSID"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":true,"value":"GQtE69lKP5yYoAWhp_CM992Zqzo72iwVVs1d3mt_B0E","key":"XSRF-TOKEN"}],"responseTime":"1183","body":"{\"data\":{\"first_name\":\"Test\",\"last_name\":\"1\",\"is_premium\":false,\"id\":\"5914347f2798715c4e8b4567\",\"email\":\"test98ff85253ab4b8b97a3005ac0335b85e@cofounderslab.com\",\"roles\":[\"ROLE_USER\"],\"registered_at\":\"05\\/11\\/2017 09:53:03\",\"status\":\"active\",\"onboarded\":true,\"verified\":false,\"verified_email\":false,\"profile\":{\"connection_status\":\"not_existing_connection\"}}}"},{"id":"f8633de4-1b9e-4ccc-9977-aeca45a3d359","name":"401: Unauthorized","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[{"key":"receiver_id","value":"57994468b43401c0360041a8","type":"text","disabled":true},{"key":"intention","value":"other","type":"text","disabled":true},{"key":"personal_message","value":"test","type":"text","disabled":true},{"key":"","value":"","type":"text","disabled":true}]},"url":{"raw":"{{host}}/api/v2/account/me?access_token={{access_token_1}}","host":["{{host}}"],"path":["api","v2","account","me"],"query":[{"key":"access_token","value":"{{access_token_1}}"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"name":"Allow","key":"Allow","value":"GET","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"no-store, private","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json","description":""},{"name":"Date","key":"Date","value":"Thu, 11 May 2017 12:08:32 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.4.6 (Ubuntu)","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"WWW-Authenticate","key":"WWW-Authenticate","value":"Bearer realm=\"Service\", error=\"access_denied\", error_description=\"OAuth2 authentication required\"","description":""},{"name":"X-Debug-Token","key":"X-Debug-Token","value":"f5ee4d","description":""},{"name":"X-Debug-Token-Link","key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/f5ee4d","description":""}],"cookie":[{"expires":"Sat Jun 03 2017 15:37:29 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"v2","key":"cfl_ab_onboarding"},{"expires":"Wed Jun 07 2017 17:15:03 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"qh4thca8fjji51djn7poi17sb7","key":"PHPSESSID"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":true,"value":"GQtE69lKP5yYoAWhp_CM992Zqzo72iwVVs1d3mt_B0E","key":"XSRF-TOKEN"}],"responseTime":"730","body":"{\"error\":\"access_denied\",\"error_description\":\"OAuth2 authentication required\"}"}],"_postman_id":"08adba90-37bc-4ecd-acbc-87978237d5f1"},{"name":"Reset Password Request","event":[{"listen":"test","script":{"type":"text/javascript","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","tests[\"Body matches string\"] = responseBody.has(\"token\");","","var jsonData = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"user1_reset_password\", jsonData.data.token);"]}}],"id":"4155400c-b45f-4660-99c2-b553e6f5fe6c","request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"email","value":"{{oauth_username_1}}","type":"text"}]},"url":"{{host}}/api/v2/account/reset-password","description":"<p>Request reset password. Return token.</p>\n","urlObject":{"path":["api","v2","account","reset-password"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"14be7fae-d189-4410-b286-e35aa149dafd","name":"401: Unauthorized","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"email","value":"idhan86@gmail.com","type":"text"}]},"url":"{{host}}/api/v2/account/reset-password"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"name":"Allow","key":"Allow","value":"POST","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"no-cache","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json","description":""},{"name":"Date","key":"Date","value":"Thu, 01 Jun 2017 14:38:28 GMT","description":""},{"name":"Server","key":"Server","value":"nginx/1.4.6 (Ubuntu)","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Debug-Token","key":"X-Debug-Token","value":"51b6c9","description":""},{"name":"X-Debug-Token-Link","key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/51b6c9","description":""}],"cookie":[{"expires":"Sat Jul 01 2017 10:43:14 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"v2","key":"cfl_ab_onboarding"},{"expires":"Sat Jul 01 2017 10:43:35 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"acak0tm978imsqqiu9lgujkuh4","key":"PHPSESSID"},{"expires":"Sat Jul 01 2017 10:43:35 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"home-tagline-simplified","key":"cfl_ab_home"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":true,"value":"R0uNkrsohhJMu_XBYIjn1YzS9HE4LEv0m7qxaclOKCY","key":"XSRF-TOKEN"}],"responseTime":"2020","body":"{\"code\":401,\"message\":\"You are not authenticated\"}"},{"id":"38ab438c-f531-4751-a0d0-3e2cc1c3ae91","name":"200: Ok","originalRequest":{"method":"POST","header":[{"key":"","value":"","warning":""}],"body":{"mode":"formdata","formdata":[{"key":"email","value":"test+1@cofounderslab.com","type":"text"}]},"url":"{{host}}/api/v2/account/reset-password"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Allow","key":"Allow","value":"POST","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"no-cache","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json","description":""},{"name":"Date","key":"Date","value":"Fri, 02 Jun 2017 08:44:17 GMT","description":""},{"name":"Server","key":"Server","value":"nginx/1.4.6 (Ubuntu)","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Debug-Token","key":"X-Debug-Token","value":"a863d8","description":""},{"name":"X-Debug-Token-Link","key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/a863d8","description":""}],"cookie":[{"expires":"Sat Jul 01 2017 10:43:14 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"v2","key":"cfl_ab_onboarding"},{"expires":"Sat Jul 01 2017 10:43:35 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"acak0tm978imsqqiu9lgujkuh4","key":"PHPSESSID"},{"expires":"Sat Jul 01 2017 14:39:46 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"home-tagline-simplified","key":"cfl_ab_home"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":true,"value":"R0uNkrsohhJMu_XBYIjn1YzS9HE4LEv0m7qxaclOKCY","key":"XSRF-TOKEN"}],"responseTime":"442","body":"{\"data\":{\"token\":\"qQjONWbJpjjDeUym995TSBVMoGIL7C_kQYFoyDEyCzg\"},\"errors\":[]}"},{"id":"b0f24711-44ab-4903-8ae3-b82b5565147b","name":"400: Bad Request","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/api/v2/account/reset-password"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"name":"Allow","key":"Allow","value":"POST","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"no-cache","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json","description":""},{"name":"Date","key":"Date","value":"Thu, 01 Jun 2017 14:36:02 GMT","description":""},{"name":"Server","key":"Server","value":"nginx/1.4.6 (Ubuntu)","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Debug-Token","key":"X-Debug-Token","value":"1998b0","description":""},{"name":"X-Debug-Token-Link","key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/1998b0","description":""}],"cookie":[{"expires":"Sat Jul 01 2017 10:43:14 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"v2","key":"cfl_ab_onboarding"},{"expires":"Sat Jul 01 2017 10:43:35 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"acak0tm978imsqqiu9lgujkuh4","key":"PHPSESSID"},{"expires":"Sat Jul 01 2017 10:43:35 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"home-tagline-simplified","key":"cfl_ab_home"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":true,"value":"R0uNkrsohhJMu_XBYIjn1YzS9HE4LEv0m7qxaclOKCY","key":"XSRF-TOKEN"}],"responseTime":"311","body":"{\"data\":[],\"errors\":[{\"email\":{\"code\":1001,\"constraint\":\"NotBlank\"}},{\"email\":{\"code\":2102,\"constraint\":\"ExistingEmailConstraint\"}}]}"}],"_postman_id":"4155400c-b45f-4660-99c2-b553e6f5fe6c"},{"name":"Reset Password Submit","event":[{"listen":"test","script":{"type":"text/javascript","exec":["tests[\"Status code is 400\"] = responseCode.code === 200;"]}}],"id":"62f492d9-55ba-4566-913a-e73289ca72fd","request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"password","value":"/^(?=.*[A-Z])(?=.*[0-9]).{8,}$/","type":"text"}]},"url":"{{host}}/api/v2/account/reset-password/{{token}}","description":"<p>Change password with token. Password like /^(?=.<em>[A-Z])(?=.</em>[0-9]).{8,}$/</p>\n","urlObject":{"path":["api","v2","account","reset-password","{{token}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"22755564-b702-4727-9e95-401f657931f7","name":"400: Bad Request","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"password","value":"new-password","type":"text"}]},"url":"{{host}}/api/v2/account/reset-password/{{reset_password_token}}"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"name":"Allow","key":"Allow","value":"POST","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"no-cache","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json","description":""},{"name":"Date","key":"Date","value":"Fri, 02 Jun 2017 08:50:29 GMT","description":""},{"name":"Server","key":"Server","value":"nginx/1.4.6 (Ubuntu)","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Debug-Token","key":"X-Debug-Token","value":"1d8615","description":""},{"name":"X-Debug-Token-Link","key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/1d8615","description":""}],"cookie":[{"expires":"Sat Jul 01 2017 10:43:14 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"v2","key":"cfl_ab_onboarding"},{"expires":"Sat Jul 01 2017 10:43:35 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"acak0tm978imsqqiu9lgujkuh4","key":"PHPSESSID"},{"expires":"Sat Jul 01 2017 14:39:46 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"home-tagline-simplified","key":"cfl_ab_home"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":true,"value":"R0uNkrsohhJMu_XBYIjn1YzS9HE4LEv0m7qxaclOKCY","key":"XSRF-TOKEN"}],"responseTime":"1926","body":"{\"data\":[],\"errors\":[{\"newPassword\":{\"code\":2104,\"constraint\":\"PasswordConstraint\"}}]}"},{"id":"7490518c-3850-442d-89ad-03d22610e45d","name":"200: Ok","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"password","value":"/^(?=.*[A-Z])(?=.*[0-9]).{8,}$/","type":"text"}]},"url":"{{host}}/api/v2/account/reset-password/{{reset_password_token}}"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[],"responseTime":"0","body":"{}"}],"_postman_id":"62f492d9-55ba-4566-913a-e73289ca72fd"},{"name":"Update Apple UUID","event":[{"listen":"test","script":{"type":"text/javascript","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","tests[\"Body matches string\"] = responseBody.has(\"id\");","","var jsonData = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"user_id_1\", jsonData.data.id);"]}}],"id":"9b48d17e-09cb-4c2c-a19a-b49b494bfae8","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token_1}}"}],"body":{"mode":"formdata","formdata":[{"key":"uuid","value":"57994468b43401c0360041a8","type":"text"},{"key":"","value":"","type":"text","disabled":true}]},"url":"{{host}}/api/v2/account/update-apple-uuid","description":"<p>Update Apple UUID for current user.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>uuid</td>\n<td>string</td>\n<td>true</td>\n<td>Apple UUID</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["api","v2","account","update-apple-uuid"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"327aaf91-514b-4483-9683-4f7f3cd73fa0","name":"400: Bad Request","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token_1}}"}],"body":{"mode":"formdata","formdata":[{"key":"uuid","value":"57994468b43401c0360041a8","type":"text","disabled":true},{"key":"","value":"","type":"text","disabled":true}]},"url":"{{host}}/api/v2/account/update-apple-uuid"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"name":"Allow","key":"Allow","value":"POST","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"no-cache","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json","description":""},{"name":"Date","key":"Date","value":"Wed, 05 Jul 2017 11:46:26 GMT","description":""},{"name":"Server","key":"Server","value":"nginx/1.4.6 (Ubuntu)","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Debug-Token","key":"X-Debug-Token","value":"28c454","description":""},{"name":"X-Debug-Token-Link","key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/28c454","description":""}],"cookie":[{"expires":"Wed Jun 13 2018 10:29:38 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"PHPSTORM","key":"XDEBUG_SESSION"},{"expires":"Thu Jun 13 2019 16:06:42 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"ebd47827-25ce-4d3e-93d5-f442a724196b","key":"ahoy_visitor"},{"expires":"Thu Jun 13 2019 16:06:44 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"GA1.1.439762883.1497370005","key":"_ga"},{"expires":"Wed Jun 13 2018 16:06:46 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"88b1060_819d3869-8c8e-480f-b382-8a4b6e3b7f8f-6139e386a-66afc2cca253-6cad","key":"__distillery"},{"expires":"Thu Jun 13 2019 16:06:47 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"251003481.9a892c380504e42262198dae416e15f2.1497370007155.1497370007155.1497370007155.1","key":"__hstc"},{"expires":"Fri Jun 11 2027 16:06:47 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"9a892c380504e42262198dae416e15f2","key":"hubspotutk"},{"expires":"Sun Jul 23 2017 07:54:57 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"v4","key":"cfl_ab_onboarding"},{"expires":"Sun Jul 23 2017 08:39:01 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"premium-v4","key":"cfl_ab_premium_onboarding"},{"expires":"Wed Aug 02 2017 14:54:17 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"aaqun9386nebe4pab2apmii9q2","key":"PHPSESSID"},{"expires":"Thu Aug 03 2017 11:45:17 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"home-tagline-simplified","key":"cfl_ab_home"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":true,"value":"OTTzl8PMyOIu3PBrYY6bdMc-iZw5SgGUoFqVua9Q1Xk","key":"XSRF-TOKEN"}],"responseTime":"1934","body":"{\"data\":[],\"errors\":[{\"uuid\":{\"code\":1001,\"constraint\":\"NotBlank\"}},{\"uuid\":{\"code\":1003,\"constraint\":\"NotNull\"}}]}"},{"id":"48d34442-5a0a-49ca-86cf-21375a9e95cc","name":"200: Ok","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token_1}}"}],"body":{"mode":"formdata","formdata":[{"key":"uuid","value":"57994468b43401c0360041a8","type":"text"},{"key":"","value":"","type":"text","disabled":true}]},"url":"{{host}}/api/v2/account/update-apple-uuid"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Allow","key":"Allow","value":"POST","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"no-cache","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json","description":""},{"name":"Date","key":"Date","value":"Wed, 05 Jul 2017 11:40:49 GMT","description":""},{"name":"Server","key":"Server","value":"nginx/1.4.6 (Ubuntu)","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Debug-Token","key":"X-Debug-Token","value":"bdb114","description":""},{"name":"X-Debug-Token-Link","key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/bdb114","description":""}],"cookie":[{"expires":"Wed Jun 13 2018 10:29:38 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"PHPSTORM","key":"XDEBUG_SESSION"},{"expires":"Thu Jun 13 2019 16:06:42 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"ebd47827-25ce-4d3e-93d5-f442a724196b","key":"ahoy_visitor"},{"expires":"Thu Jun 13 2019 16:06:44 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"GA1.1.439762883.1497370005","key":"_ga"},{"expires":"Wed Jun 13 2018 16:06:46 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"88b1060_819d3869-8c8e-480f-b382-8a4b6e3b7f8f-6139e386a-66afc2cca253-6cad","key":"__distillery"},{"expires":"Thu Jun 13 2019 16:06:47 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"251003481.9a892c380504e42262198dae416e15f2.1497370007155.1497370007155.1497370007155.1","key":"__hstc"},{"expires":"Fri Jun 11 2027 16:06:47 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"9a892c380504e42262198dae416e15f2","key":"hubspotutk"},{"expires":"Sun Jul 23 2017 07:54:57 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"v4","key":"cfl_ab_onboarding"},{"expires":"Sun Jul 23 2017 08:39:01 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"premium-v4","key":"cfl_ab_premium_onboarding"},{"expires":"Wed Aug 02 2017 14:54:17 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"aaqun9386nebe4pab2apmii9q2","key":"PHPSESSID"},{"expires":"Thu Aug 03 2017 11:45:17 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"home-tagline-simplified","key":"cfl_ab_home"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":true,"value":"OTTzl8PMyOIu3PBrYY6bdMc-iZw5SgGUoFqVua9Q1Xk","key":"XSRF-TOKEN"}],"responseTime":"10456","body":"{\"data\":[{\"first_name\":\"Test\",\"last_name\":\"1\",\"is_premium\":false,\"id\":\"5947a815279871f1108b4567\",\"email\":\"test98ff85253ab4b8b97a3005ac0335b85e@cofounderslab.com\",\"roles\":[\"ROLE_USER\"],\"registered_at\":\"06\\/19\\/2017 10:31:49\",\"last_login\":\"07\\/03\\/2017 14:54:06\",\"status\":\"active\",\"onboarded\":true,\"verified\":false,\"verified_email\":false,\"profile\":{\"first_name\":\"Test\",\"last_name\":\"1\",\"photo\":\"https:\\/\\/s3.amazonaws.com\\/cofounderslab-production\\/static\\/avatars\\/avatar0.jpg\",\"connection_status\":\"not_existing_connection\"},\"apple_uuid\":\"57994468b43401c0360041a8\"}],\"errors\":[]}"}],"_postman_id":"9b48d17e-09cb-4c2c-a19a-b49b494bfae8"},{"name":"Change Communication Preferences","event":[{"listen":"test","script":{"type":"text/javascript","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","tests[\"Body matches string\"] = responseBody.has(\"id\");","","var jsonData = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"user_id_1\", jsonData.data.id);"]}}],"id":"7a12ec7b-e2b7-4a94-a874-c0344ce0169f","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token_1}}"}],"body":{"mode":"formdata","formdata":[{"key":"recommendations_frequency","value":"weekly","type":"text"},{"key":"messages","value":"true","type":"text"},{"key":"favorites","value":"false","type":"text"},{"key":"visits","value":"true","type":"text"},{"key":"learning_interests[0]","value":"fundraising","type":"text"},{"key":"learning_interests[1]","value":"financial modeling","type":"text"}]},"url":"{{host}}/api/v2/account/change-communication-preferences","description":"<p>Get my account data</p>\n","urlObject":{"path":["api","v2","account","change-communication-preferences"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"480d1d1a-e223-44f6-858c-ac60cd448c17","name":"401: Unauthorized","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[{"key":"receiver_id","value":"57994468b43401c0360041a8","type":"text","disabled":true},{"key":"intention","value":"other","type":"text","disabled":true},{"key":"personal_message","value":"test","type":"text","disabled":true},{"key":"","value":"","type":"text","disabled":true}]},"url":{"raw":"{{host}}/api/v2/account/me?access_token={{access_token_1}}","host":["{{host}}"],"path":["api","v2","account","me"],"query":[{"key":"access_token","value":"{{access_token_1}}"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"name":"Allow","key":"Allow","value":"GET","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"no-store, private","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json","description":""},{"name":"Date","key":"Date","value":"Thu, 11 May 2017 12:08:32 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.4.6 (Ubuntu)","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"WWW-Authenticate","key":"WWW-Authenticate","value":"Bearer realm=\"Service\", error=\"access_denied\", error_description=\"OAuth2 authentication required\"","description":""},{"name":"X-Debug-Token","key":"X-Debug-Token","value":"f5ee4d","description":""},{"name":"X-Debug-Token-Link","key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/f5ee4d","description":""}],"cookie":[{"expires":"Sat Jun 03 2017 15:37:29 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"v2","key":"cfl_ab_onboarding"},{"expires":"Wed Jun 07 2017 17:15:03 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"qh4thca8fjji51djn7poi17sb7","key":"PHPSESSID"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":true,"value":"GQtE69lKP5yYoAWhp_CM992Zqzo72iwVVs1d3mt_B0E","key":"XSRF-TOKEN"}],"responseTime":"730","body":"{\"error\":\"access_denied\",\"error_description\":\"OAuth2 authentication required\"}"},{"id":"5698c20c-6c85-4ff6-9b4c-dd816e36e6ba","name":"200: OK","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[{"key":"receiver_id","value":"57994468b43401c0360041a8","type":"text","disabled":true},{"key":"intention","value":"other","type":"text","disabled":true},{"key":"personal_message","value":"test","type":"text","disabled":true},{"key":"","value":"","type":"text","disabled":true}]},"url":{"raw":"{{host}}/api/v2/account/me?access_token={{access_token_1}}","host":["{{host}}"],"path":["api","v2","account","me"],"query":[{"key":"access_token","value":"{{access_token_1}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Allow","key":"Allow","value":"GET","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"no-cache","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json","description":""},{"name":"Date","key":"Date","value":"Thu, 11 May 2017 12:08:15 GMT","description":""},{"name":"Server","key":"Server","value":"nginx/1.4.6 (Ubuntu)","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Debug-Token","key":"X-Debug-Token","value":"2aef80","description":""},{"name":"X-Debug-Token-Link","key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/2aef80","description":""}],"cookie":[{"expires":"Sat Jun 03 2017 15:37:29 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"v2","key":"cfl_ab_onboarding"},{"expires":"Wed Jun 07 2017 17:15:03 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"qh4thca8fjji51djn7poi17sb7","key":"PHPSESSID"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":true,"value":"GQtE69lKP5yYoAWhp_CM992Zqzo72iwVVs1d3mt_B0E","key":"XSRF-TOKEN"}],"responseTime":"1183","body":"{\"data\":{\"first_name\":\"Test\",\"last_name\":\"1\",\"is_premium\":false,\"id\":\"5914347f2798715c4e8b4567\",\"email\":\"test98ff85253ab4b8b97a3005ac0335b85e@cofounderslab.com\",\"roles\":[\"ROLE_USER\"],\"registered_at\":\"05\\/11\\/2017 09:53:03\",\"status\":\"active\",\"onboarded\":true,\"verified\":false,\"verified_email\":false,\"profile\":{\"connection_status\":\"not_existing_connection\"}}}"},{"id":"7703e5bd-cc22-4ab5-b0d3-04e63926e198","name":"200: Ok","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token_1}}"}],"body":{"mode":"formdata","formdata":[{"key":"recommendations_frequency","value":"weekly","type":"text"},{"key":"messages","value":"true","type":"text"},{"key":"favorites","value":"false","type":"text"},{"key":"visits","value":"true","type":"text"},{"key":"learning_interests[0]","value":"fundraising","type":"text"},{"key":"learning_interests[1]","value":"financial modeling","type":"text"}]},"url":"{{host}}/api/v2/account/change-communication-preferences"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Allow","key":"Allow","value":"POST","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"no-cache","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json","description":""},{"name":"Date","key":"Date","value":"Tue, 25 Jul 2017 11:08:50 GMT","description":""},{"name":"Server","key":"Server","value":"nginx/1.4.6 (Ubuntu)","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Debug-Token","key":"X-Debug-Token","value":"0d16f5","description":""},{"name":"X-Debug-Token-Link","key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/0d16f5","description":""}],"cookie":[{"expires":"Wed Jun 13 2018 10:29:38 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"PHPSTORM","key":"XDEBUG_SESSION"},{"expires":"Thu Jun 13 2019 16:06:42 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"ebd47827-25ce-4d3e-93d5-f442a724196b","key":"ahoy_visitor"},{"expires":"Thu Jun 13 2019 16:06:44 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"GA1.1.439762883.1497370005","key":"_ga"},{"expires":"Wed Jun 13 2018 16:06:46 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"88b1060_819d3869-8c8e-480f-b382-8a4b6e3b7f8f-6139e386a-66afc2cca253-6cad","key":"__distillery"},{"expires":"Thu Jun 13 2019 16:06:47 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"251003481.9a892c380504e42262198dae416e15f2.1497370007155.1497370007155.1497370007155.1","key":"__hstc"},{"expires":"Fri Jun 11 2027 16:06:47 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"9a892c380504e42262198dae416e15f2","key":"hubspotutk"},{"expires":"Sat Aug 19 2017 14:51:20 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"jsqbhrmurhappk0fhqct8olo82","key":"PHPSESSID"},{"expires":"Sat Aug 19 2017 14:51:20 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"home-tagline-simplified","key":"cfl_ab_home"},{"expires":"Sat Aug 19 2017 14:51:59 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"v4","key":"cfl_ab_onboarding"},{"expires":"Sat Aug 19 2017 14:51:59 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"premium-v4","key":"cfl_ab_premium_onboarding"}],"responseTime":"1736","body":"{\"data\":{\"recommendations_frequency\":\"weekly\",\"messages\":true,\"favorites\":false,\"visits\":true,\"learning_interests\":[\"fundraising\",\"financial modeling\"]},\"errors\":[]}"}],"_postman_id":"7a12ec7b-e2b7-4a94-a874-c0344ce0169f"},{"name":"Change Discuss Communication Preferences","event":[{"listen":"test","script":{"type":"text/javascript","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","tests[\"Body matches string\"] = responseBody.has(\"id\");","","var jsonData = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"user_id_1\", jsonData.data.id);"]}}],"id":"468f24c3-4e78-41c6-8560-16a825a82d20","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token_1}}"}],"body":{"mode":"formdata","formdata":[{"key":"digest_frequency","value":"twice_a_weekly","type":"text"},{"key":"new_notifications","value":"topics_followed","type":"text"},{"key":"follow_notifications","value":"none","type":"text"},{"key":"up_vote_notifications","value":"false","type":"text"}]},"url":"{{host}}/api/v2/account/change-communication-preferences/discuss","description":"<p>Get my account data</p>\n","urlObject":{"path":["api","v2","account","change-communication-preferences","discuss"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"184731eb-9bb2-419c-9f6a-1cbedeefa5e3","name":"200: Ok","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token_1}}"}],"body":{"mode":"formdata","formdata":[{"key":"recommendations_frequency","value":"weekly","type":"text"},{"key":"messages","value":"true","type":"text"},{"key":"favorites","value":"false","type":"text"},{"key":"visits","value":"true","type":"text"},{"key":"learning_interests[0]","value":"fundraising","type":"text"},{"key":"learning_interests[1]","value":"financial modeling","type":"text"}]},"url":"{{host}}/api/v2/account/change-communication-preferences"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Allow","key":"Allow","value":"POST","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"no-cache","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json","description":""},{"name":"Date","key":"Date","value":"Tue, 25 Jul 2017 11:08:50 GMT","description":""},{"name":"Server","key":"Server","value":"nginx/1.4.6 (Ubuntu)","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Debug-Token","key":"X-Debug-Token","value":"0d16f5","description":""},{"name":"X-Debug-Token-Link","key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/0d16f5","description":""}],"cookie":[{"expires":"Wed Jun 13 2018 10:29:38 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"PHPSTORM","key":"XDEBUG_SESSION"},{"expires":"Thu Jun 13 2019 16:06:42 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"ebd47827-25ce-4d3e-93d5-f442a724196b","key":"ahoy_visitor"},{"expires":"Thu Jun 13 2019 16:06:44 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"GA1.1.439762883.1497370005","key":"_ga"},{"expires":"Wed Jun 13 2018 16:06:46 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"88b1060_819d3869-8c8e-480f-b382-8a4b6e3b7f8f-6139e386a-66afc2cca253-6cad","key":"__distillery"},{"expires":"Thu Jun 13 2019 16:06:47 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"251003481.9a892c380504e42262198dae416e15f2.1497370007155.1497370007155.1497370007155.1","key":"__hstc"},{"expires":"Fri Jun 11 2027 16:06:47 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"9a892c380504e42262198dae416e15f2","key":"hubspotutk"},{"expires":"Sat Aug 19 2017 14:51:20 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"jsqbhrmurhappk0fhqct8olo82","key":"PHPSESSID"},{"expires":"Sat Aug 19 2017 14:51:20 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"home-tagline-simplified","key":"cfl_ab_home"},{"expires":"Sat Aug 19 2017 14:51:59 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"v4","key":"cfl_ab_onboarding"},{"expires":"Sat Aug 19 2017 14:51:59 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"premium-v4","key":"cfl_ab_premium_onboarding"}],"responseTime":"1736","body":"{\"data\":{\"recommendations_frequency\":\"weekly\",\"messages\":true,\"favorites\":false,\"visits\":true,\"learning_interests\":[\"fundraising\",\"financial modeling\"]},\"errors\":[]}"},{"id":"74ba9d6b-86c3-43ba-95eb-33feba6a2768","name":"200: Ok","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token_1}}"}],"body":{"mode":"formdata","formdata":[{"key":"digest_frequency","value":"twice_a_weekly","type":"text"},{"key":"new_notifications","value":"topics_followed","type":"text"},{"key":"follow_notifications","value":"none","type":"text"},{"key":"up_vote_notifications","value":"false","type":"text"}]},"url":"{{host}}/api/v2/account/change-communication-preferences/discuss"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Allow","key":"Allow","value":"POST","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"no-cache","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json","description":""},{"name":"Date","key":"Date","value":"Tue, 25 Jul 2017 11:15:03 GMT","description":""},{"name":"Server","key":"Server","value":"nginx/1.4.6 (Ubuntu)","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Debug-Token","key":"X-Debug-Token","value":"1e2607","description":""},{"name":"X-Debug-Token-Link","key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/1e2607","description":""}],"cookie":[{"expires":"Wed Jun 13 2018 10:29:38 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"PHPSTORM","key":"XDEBUG_SESSION"},{"expires":"Thu Jun 13 2019 16:06:42 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"ebd47827-25ce-4d3e-93d5-f442a724196b","key":"ahoy_visitor"},{"expires":"Thu Jun 13 2019 16:06:44 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"GA1.1.439762883.1497370005","key":"_ga"},{"expires":"Wed Jun 13 2018 16:06:46 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"88b1060_819d3869-8c8e-480f-b382-8a4b6e3b7f8f-6139e386a-66afc2cca253-6cad","key":"__distillery"},{"expires":"Thu Jun 13 2019 16:06:47 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"251003481.9a892c380504e42262198dae416e15f2.1497370007155.1497370007155.1497370007155.1","key":"__hstc"},{"expires":"Fri Jun 11 2027 16:06:47 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"9a892c380504e42262198dae416e15f2","key":"hubspotutk"},{"expires":"Sat Aug 19 2017 14:51:20 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"jsqbhrmurhappk0fhqct8olo82","key":"PHPSESSID"},{"expires":"Sat Aug 19 2017 14:51:20 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"home-tagline-simplified","key":"cfl_ab_home"},{"expires":"Sat Aug 19 2017 14:51:59 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"v4","key":"cfl_ab_onboarding"},{"expires":"Sat Aug 19 2017 14:51:59 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"premium-v4","key":"cfl_ab_premium_onboarding"}],"responseTime":"11549","body":"{\"data\":{\"digest_frequency\":\"twice_a_weekly\",\"new_notifications\":\"topics_followed\",\"follow_notifications\":\"none\",\"up_vote_notifications\":false},\"errors\":[]}"},{"id":"8d833c0a-78cb-40c4-acdf-63cb7738c0b6","name":"200: OK","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[{"key":"receiver_id","value":"57994468b43401c0360041a8","type":"text","disabled":true},{"key":"intention","value":"other","type":"text","disabled":true},{"key":"personal_message","value":"test","type":"text","disabled":true},{"key":"","value":"","type":"text","disabled":true}]},"url":{"raw":"{{host}}/api/v2/account/me?access_token={{access_token_1}}","host":["{{host}}"],"path":["api","v2","account","me"],"query":[{"key":"access_token","value":"{{access_token_1}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Allow","key":"Allow","value":"GET","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"no-cache","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json","description":""},{"name":"Date","key":"Date","value":"Thu, 11 May 2017 12:08:15 GMT","description":""},{"name":"Server","key":"Server","value":"nginx/1.4.6 (Ubuntu)","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Debug-Token","key":"X-Debug-Token","value":"2aef80","description":""},{"name":"X-Debug-Token-Link","key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/2aef80","description":""}],"cookie":[{"expires":"Sat Jun 03 2017 15:37:29 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"v2","key":"cfl_ab_onboarding"},{"expires":"Wed Jun 07 2017 17:15:03 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"qh4thca8fjji51djn7poi17sb7","key":"PHPSESSID"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":true,"value":"GQtE69lKP5yYoAWhp_CM992Zqzo72iwVVs1d3mt_B0E","key":"XSRF-TOKEN"}],"responseTime":"1183","body":"{\"data\":{\"first_name\":\"Test\",\"last_name\":\"1\",\"is_premium\":false,\"id\":\"5914347f2798715c4e8b4567\",\"email\":\"test98ff85253ab4b8b97a3005ac0335b85e@cofounderslab.com\",\"roles\":[\"ROLE_USER\"],\"registered_at\":\"05\\/11\\/2017 09:53:03\",\"status\":\"active\",\"onboarded\":true,\"verified\":false,\"verified_email\":false,\"profile\":{\"connection_status\":\"not_existing_connection\"}}}"},{"id":"9cb3bfc9-16d0-44d8-ad5f-61380e6ccaea","name":"401: Unauthorized","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[{"key":"receiver_id","value":"57994468b43401c0360041a8","type":"text","disabled":true},{"key":"intention","value":"other","type":"text","disabled":true},{"key":"personal_message","value":"test","type":"text","disabled":true},{"key":"","value":"","type":"text","disabled":true}]},"url":{"raw":"{{host}}/api/v2/account/me?access_token={{access_token_1}}","host":["{{host}}"],"path":["api","v2","account","me"],"query":[{"key":"access_token","value":"{{access_token_1}}"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"name":"Allow","key":"Allow","value":"GET","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"no-store, private","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json","description":""},{"name":"Date","key":"Date","value":"Thu, 11 May 2017 12:08:32 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.4.6 (Ubuntu)","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"WWW-Authenticate","key":"WWW-Authenticate","value":"Bearer realm=\"Service\", error=\"access_denied\", error_description=\"OAuth2 authentication required\"","description":""},{"name":"X-Debug-Token","key":"X-Debug-Token","value":"f5ee4d","description":""},{"name":"X-Debug-Token-Link","key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/f5ee4d","description":""}],"cookie":[{"expires":"Sat Jun 03 2017 15:37:29 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"v2","key":"cfl_ab_onboarding"},{"expires":"Wed Jun 07 2017 17:15:03 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"qh4thca8fjji51djn7poi17sb7","key":"PHPSESSID"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":true,"value":"GQtE69lKP5yYoAWhp_CM992Zqzo72iwVVs1d3mt_B0E","key":"XSRF-TOKEN"}],"responseTime":"730","body":"{\"error\":\"access_denied\",\"error_description\":\"OAuth2 authentication required\"}"}],"_postman_id":"468f24c3-4e78-41c6-8560-16a825a82d20"},{"name":"Change Push Communication Preferences","event":[{"listen":"test","script":{"type":"text/javascript","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","tests[\"Body matches string\"] = responseBody.has(\"id\");","","var jsonData = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"user_id_1\", jsonData.data.id);"]}}],"id":"b7f02612-5635-4e11-adf9-612ce3471f24","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"connection_request","value":"false","type":"text"},{"key":"connection_accepted","value":"false","type":"text"},{"key":"new_message","value":"true","type":"text"},{"key":"potential_connections","value":"false","type":"text"}]},"url":"{{host}}/api/v2/account/change-communication-preferences/push-notifications","description":"<p>Get my account data</p>\n","urlObject":{"path":["api","v2","account","change-communication-preferences","push-notifications"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"5074be1f-6e0a-482e-a382-32a2fa644e8a","name":"401 Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token_1}}","disabled":false}],"body":{"mode":"formdata","formdata":[{"key":"connection_request","value":"false","type":"text"},{"key":"connection_accepted","value":"false","type":"text"},{"key":"new_message","value":"true","type":"text"},{"key":"potential_connections","value":"false","type":"text"}]},"url":"{{host}}/api/v2/account/change-communication-preferences/push-notifications"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"POST","name":"Allow","description":""},{"key":"Cache-Control","value":"no-store, private","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 23 Aug 2017 10:25:37 GMT","name":"Date","description":""},{"key":"Pragma","value":"no-cache","name":"Pragma","description":""},{"key":"Server","value":"nginx/1.4.6 (Ubuntu)","name":"Server","description":""},{"key":"Set-Cookie","value":"PHPSESSID=ek1esqok57a535nm5b23h1mrh5; expires=Fri, 22-Sep-2017 10:25:37 GMT; Max-Age=2592000; path=/; HttpOnly","name":"Set-Cookie","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"WWW-Authenticate","value":"Bearer realm=\"Service\", error=\"invalid_grant\", error_description=\"The access token provided is invalid.\"","name":"WWW-Authenticate","description":""},{"key":"X-Debug-Token","value":"611698","name":"X-Debug-Token","description":""},{"key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/611698","name":"X-Debug-Token-Link","description":""}],"cookie":[{"expires":"Sat Jan 16 2038 12:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"value":"BgrD_uYXl1sKPoXWaXf6eEs5-eTgIDOddjmO67b5Kds","key":"XSRF-TOKEN"},{"expires":"Fri Sep 22 2017 08:25:37 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"value":"ek1esqok57a535nm5b23h1mrh5","key":"PHPSESSID"}],"responseTime":"306","body":"{\"error\":\"invalid_grant\",\"error_description\":\"The access token provided is invalid.\"}"},{"id":"65222705-a8b1-4b22-a4e5-0be43b71082d","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token}}","disabled":false}],"body":{"mode":"formdata","formdata":[{"key":"connection_request","value":"false","type":"text"},{"key":"connection_accepted","value":"false","type":"text"},{"key":"new_message","value":"true","type":"text"},{"key":"potential_connections","value":"false","type":"text"}]},"url":"{{host}}/api/v2/account/change-communication-preferences/push-notifications"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"POST","name":"Allow","description":""},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 23 Aug 2017 10:25:14 GMT","name":"Date","description":""},{"key":"Server","value":"nginx/1.4.6 (Ubuntu)","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Debug-Token","value":"3f8056","name":"X-Debug-Token","description":""},{"key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/3f8056","name":"X-Debug-Token-Link","description":""}],"cookie":[{"expires":"Sat Jan 16 2038 13:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"value":"BgrD_uYXl1sKPoXWaXf6eEs5-eTgIDOddjmO67b5Kds","key":"XSRF-TOKEN"}],"responseTime":"1344","body":"{\"data\":{\"connection_request\":false,\"connection_accepted\":false,\"potential_connections\":false,\"new_message\":true},\"errors\":[]}"}],"_postman_id":"b7f02612-5635-4e11-adf9-612ce3471f24"}],"id":"a5abdff6-56e7-456c-bee4-a5d2392dcc8e","description":"<h2 id=\"account-object\">Account Object</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>String</td>\n<td>User ID</td>\n</tr>\n<tr>\n<td>first_name</td>\n<td>String</td>\n<td>User first name</td>\n</tr>\n<tr>\n<td>last_name</td>\n<td>String</td>\n<td>User last name</td>\n</tr>\n<tr>\n<td>is_premium</td>\n<td>Boolean</td>\n<td>user is premium?</td>\n</tr>\n<tr>\n<td>email</td>\n<td>String</td>\n<td>Email</td>\n</tr>\n<tr>\n<td>registered_at</td>\n<td>Date</td>\n<td>Date of registered at</td>\n</tr>\n<tr>\n<td>last_login</td>\n<td>Date</td>\n<td>Date of last login</td>\n</tr>\n<tr>\n<td>status</td>\n<td>String</td>\n<td>User status. Can be: active, disabled or removed</td>\n</tr>\n<tr>\n<td>onboarded</td>\n<td>Boolean</td>\n<td>User complete onboarding?</td>\n</tr>\n<tr>\n<td>verified</td>\n<td>Boolean</td>\n<td>User verified account?</td>\n</tr>\n<tr>\n<td>verified_email</td>\n<td>Boolean</td>\n<td>User verified email?</td>\n</tr>\n<tr>\n<td>profile</td>\n<td>Array</td>\n<td>Little profile with name and photo. If you need more information, you can call profile API</td>\n</tr>\n<tr>\n<td>communication_preferences</td>\n<td>Communication Preferences Object</td>\n<td>Email communication preferences</td>\n</tr>\n<tr>\n<td>discuss_communication_preferences</td>\n<td>Discuss Communication Preferences Object</td>\n<td>Email discuss communication preferences</td>\n</tr>\n<tr>\n<td>push_notification_communication_preferences</td>\n<td>Push Communication Preferences</td>\n<td>Push notifications preferences</td>\n</tr>\n</tbody>\n</table>\n</div><pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">{\n        \"first_name\": \"Test\",\n        \"last_name\": \"1\",\n        \"is_premium\": false,\n        \"id\": \"596f2ee9279871870c8b4567\",\n        \"email\": \"test98ff85253ab4b8b97a3005ac0335b85e@cofounderslab.com\",\n        \"roles\": [\n            \"ROLE_USER\"\n        ],\n        \"registered_at\": \"07/19/2017 10:05:29\",\n        \"last_login\": \"07/20/2017 14:51:08\",\n        \"status\": \"active\",\n        \"onboarded\": true,\n        \"verified\": false,\n        \"verified_email\": false,\n        \"profile\": {\n            \"first_name\": \"Test\",\n            \"last_name\": \"1\",\n            \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n            \"connection_status\": \"not_existing_connection\"\n        },\n        \"communication_preferences\": {\n            \"recommendations_frequency\": \"weekly\",\n            \"messages\": true,\n            \"favorites\": false,\n            \"visits\": true,\n            \"learning_interests\": [\n                \"fundraising\",\n                \"financial modeling\"\n            ]\n        },\n        \"discuss_communication_preferences\": {\n            \"digest_frequency\": \"twice_a_weekly\",\n            \"new_notifications\": \"topics_followed\",\n            \"follow_notifications\": \"none\",\n            \"up_vote_notifications\": false\n        },\n        \"push_notification_communication_preferences\": {\n            \"connection_request\": false,\n            \"connection_accepted\": false,\n            \"new_message\": true\n        }\n}\n</code></pre>\n<h2 id=\"communication-preferences-object\">Communication Preferences Object</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>recommendations_frequency</td>\n<td>String</td>\n<td>Email frequency of recomendation. Can be: never, daily, weekly, biweekly</td>\n</tr>\n<tr>\n<td>messages</td>\n<td>Boolean</td>\n<td>User wants new message email?</td>\n</tr>\n<tr>\n<td>favorites</td>\n<td>Boolean</td>\n<td>User wants user favorites email?</td>\n</tr>\n<tr>\n<td>visits</td>\n<td>Boolean</td>\n<td>User wants new visits email?</td>\n</tr>\n<tr>\n<td>learning_interests</td>\n<td>Array</td>\n<td>User learning interests</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"discuss-communication-preferences-object\">Discuss Communication Preferences Object</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>digest_frequency</td>\n<td>String</td>\n<td>Frequency of digest. Can be: none, daily, twice_a_week</td>\n</tr>\n<tr>\n<td>new_notifications</td>\n<td>String</td>\n<td>What notifications wants user? Can be: none, topics_followed, all</td>\n</tr>\n<tr>\n<td>follow_notifications</td>\n<td>String</td>\n<td>What follow notifications wants user? Can be: none, new_answers</td>\n</tr>\n<tr>\n<td>up_vote_notifications</td>\n<td>Boolean</td>\n<td>User wants email when receive upvote?</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"push-communication-preferences-object\">Push Communication Preferences Object</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>connection_request</td>\n<td>Boolean</td>\n<td>User wants notification when receive connection?</td>\n</tr>\n<tr>\n<td>connection_accepted</td>\n<td>Boolean</td>\n<td>User wants notification when another user accepted connection?</td>\n</tr>\n<tr>\n<td>new_message</td>\n<td>Boolean</td>\n<td>User wants notification when receive new message?</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"a5abdff6-56e7-456c-bee4-a5d2392dcc8e"},{"name":"Authentication","item":[{"name":"OAuth2 Access Token","event":[{"listen":"test","script":{"type":"text/javascript","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","tests[\"Body matches string\"] = responseBody.has(\"access_token\");","","var jsonData = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"access_token\", jsonData.access_token);","postman.setEnvironmentVariable(\"refresh_token\", jsonData.refresh_token);"]}}],"id":"0935242b-27d6-4177-bdcd-63c2e7a8cc51","request":{"method":"POST","header":[{"key":"x-api-key","value":"{{api_key}}"}],"body":{"mode":"formdata","formdata":[{"key":"client_id","value":"{{oauth_client_id}}","type":"text"},{"key":"client_secret","value":"{{oauth_client_secret}}","type":"text"},{"key":"grant_type","value":"password","type":"text"},{"key":"username","value":"{{oauth_username_1}}","type":"text"},{"key":"password","value":"{{oauth_password}}","type":"text"}]},"url":"{{host}}/api/v2/authentication","description":"<p>Get authentication access token</p>\n<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>client_id</td>\n<td>String</td>\n<td>true</td>\n<td>Client OAuth2</td>\n</tr>\n<tr>\n<td>client_secret</td>\n<td>String</td>\n<td>true</td>\n<td>Client OAuth2 secret</td>\n</tr>\n<tr>\n<td>grant_type</td>\n<td>String</td>\n<td>true</td>\n<td>Ever set password</td>\n</tr>\n<tr>\n<td>username</td>\n<td>String</td>\n<td>true</td>\n<td>User email of CoFoundersLab</td>\n</tr>\n<tr>\n<td>password</td>\n<td>String</td>\n<td>true</td>\n<td>User password of CoFoundersLab</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\">Response</h2>\n<p>Authentication Object</p>\n","urlObject":{"path":["api","v2","authentication"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"baaef5fc-82d1-4d9f-bf3c-29542a6d2f7d","name":"200: OK","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":"2b3e50b0227d4f5586c0867cac6508f7"},{"key":"x-mock-response-code","value":"200"}],"body":{"mode":"formdata","formdata":[{"key":"client_id","value":"{{oauth_client_id}}","type":"text"},{"key":"client_secret","value":"{{oauth_client_secret}}","type":"text"},{"key":"grant_type","value":"password","type":"text"},{"key":"username","value":"{{oauth_username_1}}","type":"text"},{"key":"password","value":"{{oauth_password}}","type":"text"}]},"url":"{{host}}/api/v2/authentication"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Allow","key":"Allow","value":"GET, POST","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"no-store, private","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json","description":""},{"name":"Date","key":"Date","value":"Tue, 02 May 2017 10:17:07 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.4.6 (Ubuntu)","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Debug-Token","key":"X-Debug-Token","value":"18a844","description":""},{"name":"X-Debug-Token-Link","key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/18a844","description":""}],"cookie":[{"expires":"Thu May 25 2017 16:05:00 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"v2","key":"cfl_ab_onboarding"},{"expires":"Fri May 26 2017 15:22:19 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"ejlcvf2ep06emvu7ru4k9qnn13","key":"PHPSESSID"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":true,"value":"jWRXFBqLYuVHCIJC2dzbDPZu6cT_pekjwgsNb8kjRjY","key":"XSRF-TOKEN"}],"responseTime":"988","body":"{\n    \"data\": {\n        \"access_token\": \"YjE4ZmUyNWQ5YzdhODkwNjQwMzlhN2RmNTEzNDFhNmE4MGEwNDNmYWViYzk1NThiMmQ2NzE1YTQ4MWQ3MzFhOA\",\n\t    \"expires_in\": 3600,\n\t    \"token_type\": \"bearer\",\n\t    \"scope\": null,\n\t    \"refresh_token\": \"MzEzNjQ2YzFhNGNiY2ZmYWE4NDI1ZTVmNGJiMGUyZGVjZTkzMTA3Mjg2YzUxZGUwMjEwNzY4NDI4ZTg3Y2M2NA\"\n    },\n    \"errors\": []\n}"},{"id":"c58ccc58-5d6c-46c8-8e5b-166bfeb71bb7","name":"400: Invalid username and password combination","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":"2b3e50b0227d4f5586c0867cac6508f7"},{"key":"x-mock-response-code","value":"400"}],"body":{"mode":"formdata","formdata":[{"key":"client_id","value":"{{oauth_client_id}}","type":"text"},{"key":"client_secret","value":"{{oauth_client_secret}}","type":"text"},{"key":"grant_type","value":"password","type":"text"},{"key":"username","value":"{{oauth_username}}","type":"text"},{"key":"password","value":"{{oauth_password}}2","type":"text"}]},"url":"{{host}}/api/v2/authentication"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"name":"Allow","key":"Allow","value":"GET, POST","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"no-store, private","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json","description":""},{"name":"Date","key":"Date","value":"Tue, 02 May 2017 10:17:53 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.4.6 (Ubuntu)","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Debug-Token","key":"X-Debug-Token","value":"35d381","description":""},{"name":"X-Debug-Token-Link","key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/35d381","description":""}],"cookie":[{"expires":"Thu May 25 2017 16:05:00 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"v2","key":"cfl_ab_onboarding"},{"expires":"Fri May 26 2017 15:22:19 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"ejlcvf2ep06emvu7ru4k9qnn13","key":"PHPSESSID"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":true,"value":"jWRXFBqLYuVHCIJC2dzbDPZu6cT_pekjwgsNb8kjRjY","key":"XSRF-TOKEN"}],"responseTime":"435","body":"{\n    \"data\": [],\n    \"errors\": [\n        {\n            \"authorization\": {\n                \"code\": 3001,\n                \"constraint\": \"OAuth2ServerException\"\n            }\n        }\n    ]\n}"},{"id":"dad04084-6a27-4c4e-b4b2-111ec8b804df","name":"400: Invalid grant_type parameter or parameter missing","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":"2b3e50b0227d4f5586c0867cac6508f7"},{"key":"x-mock-response-code","value":"400"}],"body":{"mode":"formdata","formdata":[{"key":"client_id","value":"{{oauth_client_id}}","type":"text"},{"key":"client_secret","value":"{{oauth_client_secret}}","type":"text"},{"key":"grant_type","value":"password2","type":"text"},{"key":"username","value":"{{oauth_username_1}}","type":"text"},{"key":"password","value":"{{oauth_password}}","type":"text"}]},"url":"{{host}}/api/v2/authentication"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"name":"Allow","key":"Allow","value":"GET, POST","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"no-store, private","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json","description":""},{"name":"Date","key":"Date","value":"Tue, 02 May 2017 10:18:23 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.4.6 (Ubuntu)","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Debug-Token","key":"X-Debug-Token","value":"0c77b7","description":""},{"name":"X-Debug-Token-Link","key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/0c77b7","description":""}],"cookie":[{"expires":"Thu May 25 2017 16:05:00 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"v2","key":"cfl_ab_onboarding"},{"expires":"Fri May 26 2017 15:22:19 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"ejlcvf2ep06emvu7ru4k9qnn13","key":"PHPSESSID"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":true,"value":"jWRXFBqLYuVHCIJC2dzbDPZu6cT_pekjwgsNb8kjRjY","key":"XSRF-TOKEN"}],"responseTime":"732","body":"{\n    \"data\": [],\n    \"errors\": [\n        {\n            \"authorization\": {\n                \"code\": 3001,\n                \"constraint\": \"OAuth2ServerException\"\n            }\n        }\n    ]\n}"},{"id":"dff9fcce-41e2-4c0c-b708-36b543b7ad85","name":"400: The client credentials are invalid","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":"2b3e50b0227d4f5586c0867cac6508f7"},{"key":"x-mock-response-code","value":"400"}],"body":{"mode":"formdata","formdata":[{"key":"client_id","value":"{{oauth_client_id}}2","type":"text"},{"key":"client_secret","value":"{{oauth_client_secret}}","type":"text"},{"key":"grant_type","value":"password","type":"text"},{"key":"username","value":"{{oauth_username}}","type":"text"},{"key":"password","value":"{{oauth_password}}","type":"text"}]},"url":"{{host}}/api/v2/authentication"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"name":"Allow","key":"Allow","value":"GET, POST","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"no-store, private","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json","description":""},{"name":"Date","key":"Date","value":"Tue, 02 May 2017 10:18:42 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.4.6 (Ubuntu)","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Debug-Token","key":"X-Debug-Token","value":"65620a","description":""},{"name":"X-Debug-Token-Link","key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/65620a","description":""}],"cookie":[{"expires":"Thu May 25 2017 16:05:00 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"v2","key":"cfl_ab_onboarding"},{"expires":"Fri May 26 2017 15:22:19 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"ejlcvf2ep06emvu7ru4k9qnn13","key":"PHPSESSID"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":true,"value":"jWRXFBqLYuVHCIJC2dzbDPZu6cT_pekjwgsNb8kjRjY","key":"XSRF-TOKEN"}],"responseTime":"300","body":"{\n    \"data\": [],\n    \"errors\": [\n        {\n            \"authorization\": {\n                \"code\": 3001,\n                \"constraint\": \"OAuth2ServerException\"\n            }\n        }\n    ]\n}"}],"_postman_id":"0935242b-27d6-4177-bdcd-63c2e7a8cc51"},{"name":"OAuth2 Refresh Token","event":[{"listen":"test","script":{"type":"text/javascript","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","tests[\"Body matches string\"] = responseBody.has(\"access_token\");","","var jsonData = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"access_token\", jsonData.access_token);","postman.setEnvironmentVariable(\"refresh_token\", jsonData.refresh_token);"]}}],"id":"b6acf4ca-58d3-4197-b697-7c2dc77c6e7e","request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"client_id","value":"{{oauth_client_id}}","type":"text"},{"key":"client_secret","value":"{{oauth_client_secret}}","type":"text"},{"key":"grant_type","value":"refresh_token","type":"text"},{"key":"refresh_token","value":"{{refresh_token}}","type":"text"},{"key":"","value":"","type":"text","disabled":true}]},"url":"{{host}}/api/v2/authentication","description":"<p>Regenerate authentication access token</p>\n<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>client_id</td>\n<td>String</td>\n<td>true</td>\n<td>Client OAuth2</td>\n</tr>\n<tr>\n<td>client_secret</td>\n<td>String</td>\n<td>true</td>\n<td>Client OAuth2 secret</td>\n</tr>\n<tr>\n<td>grant_type</td>\n<td>String</td>\n<td>true</td>\n<td>Ever set refresh_token</td>\n</tr>\n<tr>\n<td>refresh_token</td>\n<td>String</td>\n<td>true</td>\n<td>Token obtained from OAuth2 Access Token</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\">Response</h2>\n<p>Authentication Object</p>\n","urlObject":{"path":["api","v2","authentication"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"8bef3581-758f-4e55-872b-187530494a23","name":"400: Invalid grant_type parameter or parameter missing","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":"2b3e50b0227d4f5586c0867cac6508f7"},{"key":"x-mock-response-code","value":"400"}],"body":{"mode":"formdata","formdata":[{"key":"client_id","value":"{{oauth_client_id}}","type":"text"},{"key":"client_secret","value":"{{oauth_client_secret}}","type":"text"},{"key":"grant_type","value":"refresh_token2","type":"text"},{"key":"refresh_token","value":"{{refresh_token}}","type":"text"}]},"url":"{{host}}/api/v2/authentication"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"name":"Allow","key":"Allow","value":"GET, POST","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"no-store, private","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json","description":""},{"name":"Date","key":"Date","value":"Tue, 02 May 2017 10:21:37 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.4.6 (Ubuntu)","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Debug-Token","key":"X-Debug-Token","value":"6fde0d","description":""},{"name":"X-Debug-Token-Link","key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/6fde0d","description":""}],"cookie":[{"expires":"Thu May 25 2017 16:05:00 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"v2","key":"cfl_ab_onboarding"},{"expires":"Fri May 26 2017 15:22:19 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"ejlcvf2ep06emvu7ru4k9qnn13","key":"PHPSESSID"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":true,"value":"jWRXFBqLYuVHCIJC2dzbDPZu6cT_pekjwgsNb8kjRjY","key":"XSRF-TOKEN"}],"responseTime":"201","body":"{\n    \"data\": [],\n    \"errors\": [\n        {\n            \"authorization\": {\n                \"code\": 3001,\n                \"constraint\": \"OAuth2ServerException\"\n            }\n        }\n    ]\n}"},{"id":"9202074b-94b0-41ab-bc01-650af4c7f477","name":"200: OK","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":"{{api_key}}"},{"key":"x-mock-response-code","value":"200"}],"body":{"mode":"formdata","formdata":[{"key":"client_id","value":"{{oauth_client_id}}","type":"text"},{"key":"client_secret","value":"{{oauth_client_secret}}","type":"text"},{"key":"grant_type","value":"refresh_token","type":"text"},{"key":"refresh_token","value":"{{refresh_token}}","type":"text"}]},"url":"{{host}}/api/v2/authentication"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Allow","key":"Allow","value":"GET, POST","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"no-store, private","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json","description":""},{"name":"Date","key":"Date","value":"Tue, 02 May 2017 10:20:57 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.4.6 (Ubuntu)","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Debug-Token","key":"X-Debug-Token","value":"4f9724","description":""},{"name":"X-Debug-Token-Link","key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/4f9724","description":""}],"cookie":[{"expires":"Thu May 25 2017 16:05:00 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"v2","key":"cfl_ab_onboarding"},{"expires":"Fri May 26 2017 15:22:19 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"ejlcvf2ep06emvu7ru4k9qnn13","key":"PHPSESSID"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":true,"value":"jWRXFBqLYuVHCIJC2dzbDPZu6cT_pekjwgsNb8kjRjY","key":"XSRF-TOKEN"}],"responseTime":"215","body":"{\n    \"data\": {\n        \"access_token\": \"YzlhOGI2MDc5MmRiZjVkMjFhMDZmOWVmMGVjMjliNjcxMDJlNDM3ZDA0OTQ1ZDA0ZmYzNjdjZDUxM2VmM2NlZA\",\n        \"expires_in\": 3600,\n        \"token_type\": \"bearer\",\n        \"refresh_token\": \"ZjU5ZDU4OWUzYTFjOGFiZTM0YTBjNTE1Y2RiMzhmZTYwMTVhY2M3MTBjNTQyM2VmYzgyMzViYzMxYjdkZTA4Ng\"\n    },\n    \"errors\": []\n}"},{"id":"d0cef163-2ae8-462f-a221-a48f4139c164","name":"400: Invalid refresh token","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":"2b3e50b0227d4f5586c0867cac6508f7"},{"key":"x-mock-response-code","value":"400"}],"body":{"mode":"formdata","formdata":[{"key":"client_id","value":"{{oauth_client_id}}","type":"text"},{"key":"client_secret","value":"{{oauth_client_secret}}","type":"text"},{"key":"grant_type","value":"refresh_token","type":"text"},{"key":"refresh_token","value":"{{refresh_token}}2","type":"text"}]},"url":"{{host}}/api/v2/authentication"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"name":"Allow","key":"Allow","value":"GET, POST","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"no-store, private","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json","description":""},{"name":"Date","key":"Date","value":"Tue, 02 May 2017 10:21:59 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.4.6 (Ubuntu)","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Debug-Token","key":"X-Debug-Token","value":"a10218","description":""},{"name":"X-Debug-Token-Link","key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/a10218","description":""}],"cookie":[{"expires":"Thu May 25 2017 16:05:00 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"v2","key":"cfl_ab_onboarding"},{"expires":"Fri May 26 2017 15:22:19 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"ejlcvf2ep06emvu7ru4k9qnn13","key":"PHPSESSID"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":true,"value":"jWRXFBqLYuVHCIJC2dzbDPZu6cT_pekjwgsNb8kjRjY","key":"XSRF-TOKEN"}],"responseTime":"799","body":"{\n    \"data\": [],\n    \"errors\": [\n        {\n            \"authorization\": {\n                \"code\": 3001,\n                \"constraint\": \"OAuth2ServerException\"\n            }\n        }\n    ]\n}"},{"id":"ff8e6642-199f-4ad2-8d9c-c6e83a4a980f","name":"400: The client credentials are invalid","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":"2b3e50b0227d4f5586c0867cac6508f7"},{"key":"x-mock-response-code","value":"400"}],"body":{"mode":"formdata","formdata":[{"key":"client_id","value":"{{oauth_client_id}}1","type":"text"},{"key":"client_secret","value":"{{oauth_client_secret}}","type":"text"},{"key":"grant_type","value":"refresh_token","type":"text"},{"key":"refresh_token","value":"{{refresh_token}}","type":"text"}]},"url":"{{host}}/api/v2/authentication"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"name":"Allow","key":"Allow","value":"GET, POST","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"no-store, private","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json","description":""},{"name":"Date","key":"Date","value":"Tue, 02 May 2017 10:21:16 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.4.6 (Ubuntu)","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Debug-Token","key":"X-Debug-Token","value":"b4d5d9","description":""},{"name":"X-Debug-Token-Link","key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/b4d5d9","description":""}],"cookie":[{"expires":"Thu May 25 2017 16:05:00 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"v2","key":"cfl_ab_onboarding"},{"expires":"Fri May 26 2017 15:22:19 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"ejlcvf2ep06emvu7ru4k9qnn13","key":"PHPSESSID"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":true,"value":"jWRXFBqLYuVHCIJC2dzbDPZu6cT_pekjwgsNb8kjRjY","key":"XSRF-TOKEN"}],"responseTime":"215","body":"{\n    \"data\": [],\n    \"errors\": [\n        {\n            \"authorization\": {\n                \"code\": 3001,\n                \"constraint\": \"OAuth2ServerException\"\n            }\n        }\n    ]\n}"}],"_postman_id":"b6acf4ca-58d3-4197-b697-7c2dc77c6e7e"},{"name":"LinkedIn","event":[{"listen":"test","script":{"type":"text/javascript","exec":["tests[\"Status code is 200\"] = responseCode.code === 401;","","tests[\"Body matches string\"] = responseBody.has(\"Invalid Access Token\");"]}}],"id":"70b08589-cf1f-4d7c-85d7-d073923d79ae","request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"oauth_client_id","value":"{{oauth_client_id}}","type":"text"},{"key":"oauth_client_secret","value":"{{oauth_client_secret}}","type":"text"},{"key":"social_access_token","value":"AQUqnuWBIEnwY8hcIqg3BRKRrQ5s7zJpwwMxV5uiw75dv7KAMm4vW6yYWEhK4iNiSJn8qpMFFutTY_Ja3oCSXQr0pF-5iu_2-2Gq7C4-OA0Kkb5Yf2HTpy0ljU5CAXAzCFtV4D0mLsa-jaQR7MzhfMEsXGiQ3vh1MovWXyTDRmQNY59Xuoc","type":"text"},{"key":"social_access_token_expiration","value":"123456789","type":"text"},{"key":"social_refresh_token","value":"","description":"<p>optional</p>\n","type":"text","disabled":true}]},"url":"{{host}}/api/v2/authentication/linkedin","description":"<p>Get authentication access token with social access token (linkedin, facebook, google)</p>\n<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>oauth_client_id</td>\n<td>String</td>\n<td>true</td>\n<td>Client OAuth2</td>\n</tr>\n<tr>\n<td>oauth_client_secret</td>\n<td>String</td>\n<td>true</td>\n<td>Client OAuth2 secret</td>\n</tr>\n<tr>\n<td>social_access_token</td>\n<td>String</td>\n<td>true</td>\n<td>Social access token</td>\n</tr>\n<tr>\n<td>social_access_token_expiration</td>\n<td>Integer</td>\n<td>true</td>\n<td>Expiration of the access token</td>\n</tr>\n<tr>\n<td>social_refresh_token</td>\n<td>String</td>\n<td>false</td>\n<td>Social refresh token</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\">Response</h2>\n<p>Authentication Object</p>\n","urlObject":{"path":["api","v2","authentication","linkedin"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"8cfc3b32-5ed3-4c40-a2ad-06e39930d797","name":"200: Ok","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"oauth_client_id","value":"{{oauth_client_id}}","type":"text"},{"key":"oauth_client_secret","value":"{{oauth_client_secret}}","type":"text"},{"key":"social_access_token","value":"AQUb0ssSS5fY82lhPf76XwSYsgp3J9CE7qwbQj5EFp2EC5j-fftR9BlzKj0I-Kb-OtvdOnpHQA9FwcjC9EsJGgco_UhP6c9D94x-BkRupm00eA9cHrqs6ugKggIWNYslHroeyiPou5zIe8RHNSebu-GvshR544KYp52RBoL02GF31S6qeaM","type":"text"},{"key":"social_access_token_expiration","value":"123456","type":"text"}]},"url":"{{host}}/api/v2/authentication/linkedin"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Allow","key":"Allow","value":"POST","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"no-cache","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json","description":""},{"name":"Date","key":"Date","value":"Tue, 30 May 2017 12:48:15 GMT","description":""},{"name":"Server","key":"Server","value":"nginx/1.4.6 (Ubuntu)","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Debug-Token","key":"X-Debug-Token","value":"335cc2","description":""},{"name":"X-Debug-Token-Link","key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/335cc2","description":""}],"cookie":[{"expires":"Sun Jun 25 2017 11:10:34 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"v2","key":"cfl_ab_onboarding"},{"expires":"Sun Jun 25 2017 11:10:49 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"e2baoi3u2s2u96mgh9q63kpkr2","key":"PHPSESSID"},{"expires":"Wed Jun 28 2017 07:41:29 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"home-tagline-simplified","key":"cfl_ab_home"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":true,"value":"90IwqjTaoVyRNEvLW0gXLxMQRi4bPI3TNvyt1LY71fc","key":"XSRF-TOKEN"}],"responseTime":"956","body":"{\"data\":{\"access_token\":\"MDI4ZTcyMDYxMTNjOTE0OWZhYWNhOTk3ODFkYjM1NDRiMzcyMjc4MDJkZjk5YjAxMzU1YWI5M2Y3Y2IyMTljOA\",\"expires_in\":3600,\"token_type\":\"bearer\",\"refresh_token\":\"ZWMzZmI1NzQwMGZkYTM5NTNjMzcxNGMyMTU5N2VlNTdiYTZhN2U5NGU0NjVmYjM5M2FmYzc5MmU4MTExYmRjYw\"},\"errors\":[]}"},{"id":"d64407d3-4ad3-40ac-8f45-004c60f45113","name":"401: Unauthorized","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"oauth_client_id","value":"{{oauth_client_id}}","type":"text"},{"key":"oauth_client_secret","value":"{{oauth_client_secret}}","type":"text"},{"key":"social_access_token","value":"ddddg","type":"text"},{"key":"social_access_token_expiration","value":"123456789","type":"text"}]},"url":"{{host}}/api/v2/authentication/linkedin"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"name":"Allow","key":"Allow","value":"POST","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"no-cache","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json","description":""},{"name":"Date","key":"Date","value":"Tue, 30 May 2017 12:47:49 GMT","description":""},{"name":"Server","key":"Server","value":"nginx/1.4.6 (Ubuntu)","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Debug-Token","key":"X-Debug-Token","value":"af9271","description":""},{"name":"X-Debug-Token-Link","key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/af9271","description":""}],"cookie":[{"expires":"Sun Jun 25 2017 11:10:34 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"v2","key":"cfl_ab_onboarding"},{"expires":"Sun Jun 25 2017 11:10:49 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"e2baoi3u2s2u96mgh9q63kpkr2","key":"PHPSESSID"},{"expires":"Wed Jun 28 2017 07:41:29 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"home-tagline-simplified","key":"cfl_ab_home"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":true,"value":"90IwqjTaoVyRNEvLW0gXLxMQRi4bPI3TNvyt1LY71fc","key":"XSRF-TOKEN"}],"responseTime":"1344","body":"{\"data\":[],\"errors\":[\"Invalid Access Token\"]}"}],"_postman_id":"70b08589-cf1f-4d7c-85d7-d073923d79ae"},{"name":"Facebook","event":[{"listen":"test","script":{"type":"text/javascript","exec":["tests[\"Status code is 200\"] = responseCode.code === 401;","","tests[\"Body matches string\"] = responseBody.has(\"Invalid Access Token\");"]}}],"id":"8c6fb676-3d78-403e-8501-24922f03a1e0","request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"oauth_client_id","value":"{{oauth_client_id}}","type":"text"},{"key":"oauth_client_secret","value":"{{oauth_client_secret}}","type":"text"},{"key":"social_access_token","value":"EAARiM39eZCbABABqIOvKaZBg5lU1pQi7vCUvpr2U4RoccalQe7kUvOSrULy1z4fVgNP1bmz1AAC2LnwQL8g8WKHaia5IgI6YZC8cZA9CS4NSbnBlvMRpid5ZCetRQr9ZAA2VXtTKa8htHSk0pd3eIJ0EWqtRrwhT1T5EQKgOuZCEwZDZD","type":"text"},{"key":"social_access_token_expiration","value":"123456789","type":"text"},{"key":"social_refresh_token","value":"","description":"<p>optional</p>\n","type":"text","disabled":true}]},"url":"{{host}}/api/v2/authentication/facebook","description":"<p>Get authentication access token with social access token (linkedin, facebook, google)</p>\n<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>oauth_client_id</td>\n<td>String</td>\n<td>true</td>\n<td>Client OAuth2</td>\n</tr>\n<tr>\n<td>oauth_client_secret</td>\n<td>String</td>\n<td>true</td>\n<td>Client OAuth2 secret</td>\n</tr>\n<tr>\n<td>social_access_token</td>\n<td>String</td>\n<td>true</td>\n<td>Social access token</td>\n</tr>\n<tr>\n<td>social_access_token_expiration</td>\n<td>Integer</td>\n<td>true</td>\n<td>Expiration of the access token</td>\n</tr>\n<tr>\n<td>social_refresh_token</td>\n<td>String</td>\n<td>false</td>\n<td>Social refresh token</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\">Response</h2>\n<p>Authentication Object</p>\n","urlObject":{"path":["api","v2","authentication","facebook"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"3951b07e-41e1-4212-a396-8f95d7a31fe5","name":"200: Ok","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"oauth_client_id","value":"{{oauth_client_id}}","type":"text"},{"key":"oauth_client_secret","value":"{{oauth_client_secret}}","type":"text"},{"key":"social_access_token","value":"AQUb0ssSS5fY82lhPf76XwSYsgp3J9CE7qwbQj5EFp2EC5j-fftR9BlzKj0I-Kb-OtvdOnpHQA9FwcjC9EsJGgco_UhP6c9D94x-BkRupm00eA9cHrqs6ugKggIWNYslHroeyiPou5zIe8RHNSebu-GvshR544KYp52RBoL02GF31S6qeaM","type":"text"},{"key":"social_access_token_expiration","value":"123456789","type":"text"},{"key":"social_refresh_token","value":"","description":"optional","type":"text"}]},"url":"{{host}}/api/v2/authentication/facebook"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Allow","key":"Allow","value":"POST","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"no-cache","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json","description":""},{"name":"Date","key":"Date","value":"Tue, 30 May 2017 12:48:15 GMT","description":""},{"name":"Server","key":"Server","value":"nginx/1.4.6 (Ubuntu)","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Debug-Token","key":"X-Debug-Token","value":"335cc2","description":""},{"name":"X-Debug-Token-Link","key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/335cc2","description":""}],"cookie":[{"expires":"Sun Jun 25 2017 11:10:34 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"v2","key":"cfl_ab_onboarding"},{"expires":"Sun Jun 25 2017 11:10:49 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"e2baoi3u2s2u96mgh9q63kpkr2","key":"PHPSESSID"},{"expires":"Wed Jun 28 2017 07:41:29 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"home-tagline-simplified","key":"cfl_ab_home"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":true,"value":"90IwqjTaoVyRNEvLW0gXLxMQRi4bPI3TNvyt1LY71fc","key":"XSRF-TOKEN"}],"responseTime":"956","body":"{\"data\":{\"access_token\":\"MDI4ZTcyMDYxMTNjOTE0OWZhYWNhOTk3ODFkYjM1NDRiMzcyMjc4MDJkZjk5YjAxMzU1YWI5M2Y3Y2IyMTljOA\",\"expires_in\":3600,\"token_type\":\"bearer\",\"refresh_token\":\"ZWMzZmI1NzQwMGZkYTM5NTNjMzcxNGMyMTU5N2VlNTdiYTZhN2U5NGU0NjVmYjM5M2FmYzc5MmU4MTExYmRjYw\"},\"errors\":[]}"},{"id":"3f2d142d-316a-453c-b489-eb8798fbc814","name":"401: Unauthorized","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"oauth_client_id","value":"{{oauth_client_id}}","type":"text"},{"key":"oauth_client_secret","value":"{{oauth_client_secret}}","type":"text"},{"key":"social_access_token","value":"ddddg","type":"text"},{"key":"social_access_token_expiration","value":"123456789","type":"text"},{"key":"social_refresh_token","value":"","description":"optional","type":"text"}]},"url":"{{host}}/api/v2/authentication/facebook"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"name":"Allow","key":"Allow","value":"POST","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"no-cache","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json","description":""},{"name":"Date","key":"Date","value":"Tue, 30 May 2017 12:47:49 GMT","description":""},{"name":"Server","key":"Server","value":"nginx/1.4.6 (Ubuntu)","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Debug-Token","key":"X-Debug-Token","value":"af9271","description":""},{"name":"X-Debug-Token-Link","key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/af9271","description":""}],"cookie":[{"expires":"Sun Jun 25 2017 11:10:34 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"v2","key":"cfl_ab_onboarding"},{"expires":"Sun Jun 25 2017 11:10:49 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"e2baoi3u2s2u96mgh9q63kpkr2","key":"PHPSESSID"},{"expires":"Wed Jun 28 2017 07:41:29 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"home-tagline-simplified","key":"cfl_ab_home"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":true,"value":"90IwqjTaoVyRNEvLW0gXLxMQRi4bPI3TNvyt1LY71fc","key":"XSRF-TOKEN"}],"responseTime":"1344","body":"{\"data\":[],\"errors\":[\"Invalid Access Token\"]}"}],"_postman_id":"8c6fb676-3d78-403e-8501-24922f03a1e0"},{"name":"Google","event":[{"listen":"test","script":{"type":"text/javascript","exec":["tests[\"Status code is 200\"] = responseCode.code === 401;","","tests[\"Body matches string\"] = responseBody.has(\"Invalid Access Token\");"]}}],"id":"c6f0bdda-1f39-4518-9580-26125d1de39a","request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"oauth_client_id","value":"{{oauth_client_id}}","type":"text"},{"key":"oauth_client_secret","value":"{{oauth_client_secret}}","type":"text"},{"key":"social_access_token","value":"ya29.Glt_BP1t7vSDpHu9T-h8-D404JSeb-6V8meM7ILzIdfQOG4KZbuNyPyQCq09xZy-OuMW01CUZpP8V_KSGdPUZUqcF9vxNMasMX1j6WIE-SE32eHY-Hff21Y_zmhg","type":"text"},{"key":"social_access_token_expiration","value":"123456789","type":"text"},{"key":"social_refresh_token","value":"refresh_token","description":"<p>optional</p>\n","type":"text"}]},"url":"{{host}}/api/v2/authentication/google","description":"<p>Get authentication access token with social access token (linkedin, facebook, google)</p>\n<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>oauth_client_id</td>\n<td>String</td>\n<td>true</td>\n<td>Client OAuth2</td>\n</tr>\n<tr>\n<td>oauth_client_secret</td>\n<td>String</td>\n<td>true</td>\n<td>Client OAuth2 secret</td>\n</tr>\n<tr>\n<td>social_access_token</td>\n<td>String</td>\n<td>true</td>\n<td>Social access token</td>\n</tr>\n<tr>\n<td>social_access_token_expiration</td>\n<td>Integer</td>\n<td>true</td>\n<td>Expiration of the access token</td>\n</tr>\n<tr>\n<td>social_refresh_token</td>\n<td>String</td>\n<td>false</td>\n<td>Social refresh token</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\">Response</h2>\n<p>Authentication Object</p>\n","urlObject":{"path":["api","v2","authentication","google"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"87cfc197-92cb-4acf-9a50-cd9b56d15ff1","name":"401: Unauthorized","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"client_id","value":"{{oauth_client_id}}","type":"text"},{"key":"client_secret","value":"{{oauth_client_secret}}","type":"text"},{"key":"access_token","value":"ddddg","type":"text"}]},"url":"{{host}}/api/v2/authentication/google"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"name":"Allow","key":"Allow","value":"POST","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"no-cache","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json","description":""},{"name":"Date","key":"Date","value":"Tue, 30 May 2017 12:47:49 GMT","description":""},{"name":"Server","key":"Server","value":"nginx/1.4.6 (Ubuntu)","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Debug-Token","key":"X-Debug-Token","value":"af9271","description":""},{"name":"X-Debug-Token-Link","key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/af9271","description":""}],"cookie":[{"expires":"Sun Jun 25 2017 11:10:34 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"v2","key":"cfl_ab_onboarding"},{"expires":"Sun Jun 25 2017 11:10:49 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"e2baoi3u2s2u96mgh9q63kpkr2","key":"PHPSESSID"},{"expires":"Wed Jun 28 2017 07:41:29 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"home-tagline-simplified","key":"cfl_ab_home"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":true,"value":"90IwqjTaoVyRNEvLW0gXLxMQRi4bPI3TNvyt1LY71fc","key":"XSRF-TOKEN"}],"responseTime":"1344","body":"{\"data\":[],\"errors\":[\"Invalid Access Token\"]}"},{"id":"ef7531b3-0e06-475f-b0b6-990521ec4b4f","name":"200: Ok","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"client_id","value":"{{oauth_client_id}}","type":"text"},{"key":"client_secret","value":"{{oauth_client_secret}}","type":"text"},{"key":"access_token","value":"AQUb0ssSS5fY82lhPf76XwSYsgp3J9CE7qwbQj5EFp2EC5j-fftR9BlzKj0I-Kb-OtvdOnpHQA9FwcjC9EsJGgco_UhP6c9D94x-BkRupm00eA9cHrqs6ugKggIWNYslHroeyiPou5zIe8RHNSebu-GvshR544KYp52RBoL02GF31S6qeaM","type":"text"}]},"url":"{{host}}/api/v2/authentication/google"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Allow","key":"Allow","value":"POST","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"no-cache","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json","description":""},{"name":"Date","key":"Date","value":"Tue, 30 May 2017 12:48:15 GMT","description":""},{"name":"Server","key":"Server","value":"nginx/1.4.6 (Ubuntu)","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Debug-Token","key":"X-Debug-Token","value":"335cc2","description":""},{"name":"X-Debug-Token-Link","key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/335cc2","description":""}],"cookie":[{"expires":"Sun Jun 25 2017 11:10:34 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"v2","key":"cfl_ab_onboarding"},{"expires":"Sun Jun 25 2017 11:10:49 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"e2baoi3u2s2u96mgh9q63kpkr2","key":"PHPSESSID"},{"expires":"Wed Jun 28 2017 07:41:29 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"home-tagline-simplified","key":"cfl_ab_home"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":true,"value":"90IwqjTaoVyRNEvLW0gXLxMQRi4bPI3TNvyt1LY71fc","key":"XSRF-TOKEN"}],"responseTime":"956","body":"{\"data\":{\"access_token\":\"MDI4ZTcyMDYxMTNjOTE0OWZhYWNhOTk3ODFkYjM1NDRiMzcyMjc4MDJkZjk5YjAxMzU1YWI5M2Y3Y2IyMTljOA\",\"expires_in\":3600,\"token_type\":\"bearer\",\"refresh_token\":\"ZWMzZmI1NzQwMGZkYTM5NTNjMzcxNGMyMTU5N2VlNTdiYTZhN2U5NGU0NjVmYjM5M2FmYzc5MmU4MTExYmRjYw\"},\"errors\":[]}"}],"_postman_id":"c6f0bdda-1f39-4518-9580-26125d1de39a"},{"name":"Twitter","event":[{"listen":"test","script":{"type":"text/javascript","exec":["tests[\"Status code is 200\"] = responseCode.code === 401;","","tests[\"Body matches string\"] = responseBody.has(\"Invalid Access Token\");"]}}],"id":"1051d9b1-fc10-4c9a-bdb4-96678e6e7b9d","request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"oauth_client_id","value":"{{oauth_client_id}}","type":"text"},{"key":"oauth_client_secret","value":"{{oauth_client_secret}}","type":"text"},{"key":"social_access_token","value":"207915153-MICp0jHA30yJqIWCH7qPYwPxHYaTcS7KJUPnLT9j","type":"text"},{"key":"social_access_token_secret","value":"eShU3Rb34Lhu6oy6mkYG9howwIJ0noBhgOKO3z1ZQAFOv","type":"text"}]},"url":"{{host}}/api/v2/authentication/twitter","description":"<p>Get authentication access token with social access token (linkedin, facebook, google)</p>\n<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>oauth_client_id</td>\n<td>String</td>\n<td>true</td>\n<td>Client OAuth2</td>\n</tr>\n<tr>\n<td>oauth_client_secret</td>\n<td>String</td>\n<td>true</td>\n<td>Client OAuth2 secret</td>\n</tr>\n<tr>\n<td>social_access_token</td>\n<td>String</td>\n<td>true</td>\n<td>Social access token</td>\n</tr>\n<tr>\n<td>social_access_token_expiration</td>\n<td>Integer</td>\n<td>true</td>\n<td>Expiration of the access token</td>\n</tr>\n<tr>\n<td>social_refresh_token</td>\n<td>String</td>\n<td>false</td>\n<td>Social refresh token</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\">Response</h2>\n<p>Authentication Object</p>\n","urlObject":{"path":["api","v2","authentication","twitter"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"c7e99ed0-b9a8-4113-b579-f8efa156bc2a","name":"401: Unauthorized","originalRequest":{"method":"POST","header":[{"key":"","value":""}],"body":{"mode":"formdata","formdata":[{"key":"oauth_client_id","value":"{{oauth_client_id}}","type":"text"},{"key":"oauth_client_secret","value":"{{oauth_client_secret}}","type":"text"},{"key":"social_access_token","value":"207915153-MICp0jHA30yJqIWCH7qPYwPxHYaTcS7KJUPnLT9k","type":"text"},{"key":"social_access_token_secret","value":"eShU3Rb34Lhu6oy6mkYG9howwIJ0noBhgOKO3z1ZQAFOv","type":"text"}]},"url":{"raw":"{{host}}/api/v2/authentication/twitter?XDEBUG_SESSION_START=PHPSTORM","host":["{{host}}"],"path":["api","v2","authentication","twitter"],"query":[{"key":"XDEBUG_SESSION_START","value":"PHPSTORM"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"POST","name":"Allow","description":""},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 16 Aug 2017 10:24:40 GMT","name":"Date","description":""},{"key":"Server","value":"nginx/1.4.6 (Ubuntu)","name":"Server","description":""},{"key":"Set-Cookie","value":"XDEBUG_SESSION=PHPSTORM; expires=Wed, 16-Aug-2017 11:24:36 GMT; Max-Age=3600; path=/","name":"Set-Cookie","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Debug-Token","value":"7aeb9b","name":"X-Debug-Token","description":""},{"key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/7aeb9b","name":"X-Debug-Token-Link","description":""}],"cookie":[{"expires":"Fri Aug 18 2017 11:58:03 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"value":"iqdjnuiqt1o5lm2n4nur0jjjd6","key":"PHPSESSID"},{"expires":"Sun Jan 17 2038 21:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"value":"BgrD_uYXl1sKPoXWaXf6eEs5-eTgIDOddjmO67b5Kds","key":"XSRF-TOKEN"},{"expires":"Wed Aug 16 2017 09:24:41 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"value":"PHPSTORM","key":"XDEBUG_SESSION"}],"responseTime":"4511","body":"{\"data\":[],\"errors\":[{\"access_token\":{\"code\":3002,\"constraint\":\"AccessDeniedHttpException\"}}]}"},{"id":"fb96f536-aace-4c0b-9d91-236400ea431e","name":"200: OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"oauth_client_id","value":"{{oauth_client_id}}","type":"text"},{"key":"oauth_client_secret","value":"{{oauth_client_secret}}","type":"text"},{"key":"social_access_token","value":"207915153-MICp0jHA30yJqIWCH7qPYwPxHYaTcS7KJUPnLT9j","type":"text"},{"key":"social_access_token_secret","value":"eShU3Rb34Lhu6oy6mkYG9howwIJ0noBhgOKO3z1ZQAFOv","type":"text"}]},"url":{"raw":"{{host}}/api/v2/authentication/twitter?XDEBUG_SESSION_START=PHPSTORM","host":["{{host}}"],"path":["api","v2","authentication","twitter"],"query":[{"key":"XDEBUG_SESSION_START","value":"PHPSTORM"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"POST","name":"Allow","description":""},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 16 Aug 2017 10:06:55 GMT","name":"Date","description":""},{"key":"Server","value":"nginx/1.4.6 (Ubuntu)","name":"Server","description":""},{"key":"Set-Cookie","value":"XDEBUG_SESSION=PHPSTORM; expires=Wed, 16-Aug-2017 11:06:14 GMT; Max-Age=3600; path=/","name":"Set-Cookie","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Debug-Token","value":"b07cb9","name":"X-Debug-Token","description":""},{"key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/b07cb9","name":"X-Debug-Token-Link","description":""}],"cookie":[{"expires":"Fri Aug 18 2017 11:58:03 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"value":"iqdjnuiqt1o5lm2n4nur0jjjd6","key":"PHPSESSID"},{"expires":"Mon Jan 18 2038 10:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"value":"BgrD_uYXl1sKPoXWaXf6eEs5-eTgIDOddjmO67b5Kds","key":"XSRF-TOKEN"},{"expires":"Wed Aug 16 2017 09:06:55 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"value":"PHPSTORM","key":"XDEBUG_SESSION"}],"responseTime":"40535","body":"{\"data\":{\"access_token\":\"YWM4MzE3Yjg5ODYwMmM0OGYwMDZjN2U4MzdlNzFmZTM0NTRlYWJlYWJhZDU5NDYxZmM4OTQxMGNkNWRiY2MyNg\",\"expires_in\":3600,\"token_type\":\"bearer\",\"refresh_token\":\"ZTNjZTBhMWY5MTVkZTZkMTZiZmQ0ZTBiYWM3YWNmMDk3NThhNTZiZWVmYWEwZWVhYzIzYjYzN2M0MjE3NzIyNQ\"},\"errors\":[]}"}],"_postman_id":"1051d9b1-fc10-4c9a-bdb4-96678e6e7b9d"}],"id":"465b68d8-29a5-48b5-ab59-f393df472ae1","description":"<h2 id=\"authentication-object\">Authentication Object</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>access_token</td>\n<td>string</td>\n<td>Token to access</td>\n</tr>\n<tr>\n<td>expires_in</td>\n<td>integer</td>\n<td>Time to expire</td>\n</tr>\n<tr>\n<td>token_type</td>\n<td>string</td>\n<td>Token type</td>\n</tr>\n<tr>\n<td>scope</td>\n<td>array</td>\n<td>Scopes</td>\n</tr>\n<tr>\n<td>refresh_token</td>\n<td>string</td>\n<td>Token to refresh access_token</td>\n</tr>\n</tbody>\n</table>\n</div><pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">{\n  \"access_token\": \"NWUyYTA4ZDFhMWU5NzQzZGZkZmJhYTBlMmM5MzFhOWZlN2U3Y2Y5ODZlODg1Njk2ZmIzNTFmNmNiMzkwYjQ5Nw\",\n  \"expires_in\": 3600,\n  \"token_type\": \"bearer\",\n  \"scope\": null,\n  \"refresh_token\": \"ZmVjNjU0ZDFmZDBhOTcwODBlMDE1ZWMxZWZiNmQ4NDU5NDNmZDAxOGYyZmVlZmI2NjBhYTliMDk5OGUyYzJmZQ\"\n}\n</code></pre>\n","_postman_id":"465b68d8-29a5-48b5-ab59-f393df472ae1"},{"name":"Connect","item":[{"name":"LinkedIn","event":[{"listen":"test","script":{"type":"text/javascript","exec":["tests[\"Status code is 200\"] = responseCode.code === 401;","","tests[\"Body matches string\"] = responseBody.has(\"Invalid Access Token\");"]}}],"id":"2304b65c-3750-4e53-b5a8-c974f9be5767","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"social_access_token","value":"AQUqnuWBIEnwY8hcIqg3BRKRrQ5s7zJpwwMxV5uiw75dv7KAMm4vW6yYWEhK4iNiSJn8qpMFFutTY_Ja3oCSXQr0pF-5iu_2-2Gq7C4-OA0Kkb5Yf2HTpy0ljU5CAXAzCFtV4D0mLsa-jaQR7MzhfMEsXGiQ3vh1MovWXyTDRmQNY59Xuoc","type":"text"},{"key":"social_access_token_expiration","value":"123456789","type":"text"},{"key":"social_refresh_token","value":"","description":"<p>optional</p>\n","type":"text","disabled":true}]},"url":"{{host}}/api/v2/connect/linkedin","description":"<p>Save Linkedin social_info into the logged user</p>\n<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>social_access_token</td>\n<td>String</td>\n<td>true</td>\n<td>Social access token</td>\n</tr>\n<tr>\n<td>social_access_token_expiration</td>\n<td>Integer</td>\n<td>true</td>\n<td>Expiration of the access token</td>\n</tr>\n<tr>\n<td>social_refresh_token</td>\n<td>String</td>\n<td>false</td>\n<td>Social refresh token</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\">Response</h2>\n<p>Connect Object</p>\n","urlObject":{"path":["api","v2","connect","linkedin"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"738f741b-1df5-4569-91ad-59d0cef73b03","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"social_access_token","value":"AQUqnuWBIEnwY8hcIqg3BRKRrQ5s7zJpwwMxV5uiw75dv7KAMm4vW6yYWEhK4iNiSJn8qpMFFutTY_Ja3oCSXQr0pF-5iu_2-2Gq7C4-OA0Kkb5Yf2HTpy0ljU5CAXAzCFtV4D0mLsa-jaQR7MzhfMEsXGiQ3vh1MovWXyTDRmQNY59Xuoc","type":"text"},{"key":"social_access_token_expiration","value":"123456789","type":"text"},{"key":"social_refresh_token","value":"","description":"optional","type":"text","disabled":true}]},"url":"{{host}}/api/v2/connect/linkedin"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"POST","name":"Allow","description":""},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 21 Jul 2017 10:40:43 GMT","name":"Date","description":""},{"key":"Server","value":"nginx/1.4.6 (Ubuntu)","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Debug-Token","value":"44d24c","name":"X-Debug-Token","description":""},{"key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/44d24c","name":"X-Debug-Token-Link","description":""}],"cookie":[{"expires":"Fri Aug 18 2017 11:58:03 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"value":"iqdjnuiqt1o5lm2n4nur0jjjd6","key":"PHPSESSID"},{"expires":"Mon Jan 18 2038 10:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"value":"ISmptugY1AOdRqnv3D5HmJ3V5Tt-EVsoSnmTB17rBDA","key":"XSRF-TOKEN"}],"responseTime":"3076","body":"{\"data\":{\"label\":\"daniel.ramirez.bcn@gmail.com\",\"first_name\":\"Dani\",\"last_name\":\"Ramirez Salas\",\"alias_flag\":false,\"is_premium\":false,\"id\":\"596f66212798714c348b4567\",\"email\":\"daniel.ramirez.bcn@gmail.com\",\"roles\":[\"ROLE_USER\"],\"registered_at\":\"07\\/19\\/2017 14:01:05\",\"last_login\":\"07\\/19\\/2017 14:01:07\",\"status\":\"active\",\"onboarded\":false,\"verified\":false,\"verified_email\":false,\"social_provider\":\"linkedin\",\"profile\":{\"first_name\":\"Dani\",\"last_name\":\"Ramirez Salas\",\"user_id\":\"596f66212798714c348b4567\",\"areas\":[],\"photo\":\"https:\\/\\/media.licdn.com\\/mpr\\/mprx\\/0_0PWNobQLT1RIxljb0CN-EfNhC8weagjTy7vcVJR5C3naalrCeCNP00bQhPnwxA13IJNAIl6i1cBw2uDad44RjyQLkcBI2u33D44nebs5AD6G2RKeDyHBmNBNG4\",\"legacy_photo_url\":\"https:\\/\\/media.licdn.com\\/mpr\\/mprx\\/0_0PWNobQLT1RIxljb0CN-EfNhC8weagjTy7vcVJR5C3naalrCeCNP00bQhPnwxA13IJNAIl6i1cBw2uDad44RjyQLkcBI2u33D44nebs5AD6G2RKeDyHBmNBNG4\",\"connection_status\":\"not_existing_connection\"},\"communication_preferences\":{\"recommendations_frequency\":\"weekly\",\"messages\":true,\"favorites\":true,\"visits\":true},\"ip\":\"10.50.50.1\",\"social_info\":{\"linkedin\":{\"social_id\":\"RojIzwdlzU\",\"token\":\"AQUqnuWBIEnwY8hcIqg3BRKRrQ5s7zJpwwMxV5uiw75dv7KAMm4vW6yYWEhK4iNiSJn8qpMFFutTY_Ja3oCSXQr0pF-5iu_2-2Gq7C4-OA0Kkb5Yf2HTpy0ljU5CAXAzCFtV4D0mLsa-jaQR7MzhfMEsXGiQ3vh1MovWXyTDRmQNY59Xuoc\",\"token_expiration\":\"2021-06-19T08:13:51+0000\",\"type\":\"linkedin\"},\"facebook\":{\"social_id\":\"10155432771417421\",\"token\":\"EAARiM39eZCbABAGDBatZBWJp1ZAXQcZAXVYewZC4SJRCvlaOWMPR3cI0slArx5IaNZAZBdrveXcORV7ZC2J3F5V5JKyMF5F5ky239vZA5aVKnMUflGDI8QZAADr6s8CZBiKynRQZADieYV38mJZCtvWYqor4ep0fWFDL8StOIFeISUqjngQZDZD\",\"token_expiration\":\"2021-06-19T07:40:41+0000\",\"type\":\"facebook\"},\"google\":{\"social_id\":\"112700686580721703710\",\"token\":\"ya29.GluOBHdHf0aaNwzON63_K3lTuIm4SaUST-4nfjlk52BNBr21dXW2kD-7dAndrsgI-04LiAQk-G6lrkLJXQ0Ow2p_0pPgzFhGHfRyAZPbksmIptZz0jgbcLMXkOgP\",\"token_expiration\":\"2021-06-19T07:44:19+0000\",\"type\":\"google\",\"refresh_token\":\"refresh_token\"}}},\"errors\":[]}"},{"id":"83135785-9771-4300-ac04-42adc077e2c8","name":"401 Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{1}}","disabled":false}],"body":{"mode":"formdata","formdata":[{"key":"social_access_token","value":"AQUqnuWBIEnwY8hcIqg3BRKRrQ5s7zJpwwMxV5uiw75dv7KAMm4vW6yYWEhK4iNiSJn8qpMFFutTY_Ja3oCSXQr0pF-5iu_2-2Gq7C4-OA0Kkb5Yf2HTpy0ljU5CAXAzCFtV4D0mLsa-jaQR7MzhfMEsXGiQ3vh1MovWXyTDRmQNY59Xuoc","type":"text"},{"key":"social_access_token_expiration","value":"123456789","type":"text"},{"key":"social_refresh_token","value":"","description":"optional","type":"text","disabled":true}]},"url":"{{host}}/api/v2/connect/linkedin"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"POST","name":"Allow","description":""},{"key":"Cache-Control","value":"no-store, private","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 21 Jul 2017 11:02:34 GMT","name":"Date","description":""},{"key":"Pragma","value":"no-cache","name":"Pragma","description":""},{"key":"Server","value":"nginx/1.4.6 (Ubuntu)","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"WWW-Authenticate","value":"Bearer realm=\"Service\", error=\"invalid_grant\", error_description=\"The access token provided is invalid.\"","name":"WWW-Authenticate","description":""},{"key":"X-Debug-Token","value":"7ee5dd","name":"X-Debug-Token","description":""},{"key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/7ee5dd","name":"X-Debug-Token-Link","description":""}],"cookie":[{"expires":"Fri Aug 18 2017 11:58:03 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"value":"iqdjnuiqt1o5lm2n4nur0jjjd6","key":"PHPSESSID"},{"expires":"Mon Jan 18 2038 09:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"value":"ISmptugY1AOdRqnv3D5HmJ3V5Tt-EVsoSnmTB17rBDA","key":"XSRF-TOKEN"}],"responseTime":"937","body":"{\"error\":\"invalid_grant\",\"error_description\":\"The access token provided is invalid.\"}"}],"_postman_id":"2304b65c-3750-4e53-b5a8-c974f9be5767"},{"name":"Facebook","event":[{"listen":"test","script":{"type":"text/javascript","exec":["tests[\"Status code is 200\"] = responseCode.code === 401;","","tests[\"Body matches string\"] = responseBody.has(\"Invalid Access Token\");"]}}],"id":"96a55eb6-812e-499d-8090-8ef02ebe7531","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"social_access_token","value":"EAARiM39eZCbABABqIOvKaZBg5lU1pQi7vCUvpr2U4RoccalQe7kUvOSrULy1z4fVgNP1bmz1AAC2LnwQL8g8WKHaia5IgI6YZC8cZA9CS4NSbnBlvMRpid5ZCetRQr9ZAA2VXtTKa8htHSk0pd3eIJ0EWqtRrwhT1T5EQKgOuZCEwZDZD","type":"text"},{"key":"social_access_token_expiration","value":"123456789","type":"text"},{"key":"social_refresh_token","value":"","description":"<p>optional</p>\n","type":"text","disabled":true}]},"url":"{{host}}/api/v2/connect/facebook","description":"<p>Save Facebook social_info into the logged user</p>\n<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>social_access_token</td>\n<td>String</td>\n<td>true</td>\n<td>Social access token</td>\n</tr>\n<tr>\n<td>social_access_token_expiration</td>\n<td>Integer</td>\n<td>true</td>\n<td>Expiration of the access token</td>\n</tr>\n<tr>\n<td>social_refresh_token</td>\n<td>String</td>\n<td>false</td>\n<td>Social refresh token</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\">Response</h2>\n<p>Connect Object</p>\n","urlObject":{"path":["api","v2","connect","facebook"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"175192af-334a-4c5e-bb31-e5be96f1b210","name":"401 Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{1}}","disabled":false}],"body":{"mode":"formdata","formdata":[{"key":"social_access_token","value":"EAARiM39eZCbABABqIOvKaZBg5lU1pQi7vCUvpr2U4RoccalQe7kUvOSrULy1z4fVgNP1bmz1AAC2LnwQL8g8WKHaia5IgI6YZC8cZA9CS4NSbnBlvMRpid5ZCetRQr9ZAA2VXtTKa8htHSk0pd3eIJ0EWqtRrwhT1T5EQKgOuZCEwZDZD","type":"text"},{"key":"social_access_token_expiration","value":"123456789","type":"text"},{"key":"social_refresh_token","value":"","description":"optional","type":"text","disabled":true}]},"url":{"raw":"{{host}}/api/v2/connect/facebook?XDEBUG_SESSION_START=PHPSTORM","host":["{{host}}"],"path":["api","v2","connect","facebook"],"query":[{"key":"XDEBUG_SESSION_START","value":"PHPSTORM"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"POST","name":"Allow","description":""},{"key":"Cache-Control","value":"no-store, private","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 21 Jul 2017 11:10:12 GMT","name":"Date","description":""},{"key":"Pragma","value":"no-cache","name":"Pragma","description":""},{"key":"Server","value":"nginx/1.4.6 (Ubuntu)","name":"Server","description":""},{"key":"Set-Cookie","value":"XDEBUG_SESSION=PHPSTORM; expires=Fri, 21-Jul-2017 12:10:11 GMT; Max-Age=3600; path=/","name":"Set-Cookie","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"WWW-Authenticate","value":"Bearer realm=\"Service\", error=\"invalid_grant\", error_description=\"The access token provided is invalid.\"","name":"WWW-Authenticate","description":""},{"key":"X-Debug-Token","value":"fb0bc2","name":"X-Debug-Token","description":""},{"key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/fb0bc2","name":"X-Debug-Token-Link","description":""}],"cookie":[{"expires":"Fri Aug 18 2017 11:58:03 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"value":"iqdjnuiqt1o5lm2n4nur0jjjd6","key":"PHPSESSID"},{"expires":"Sun Jan 17 2038 22:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"value":"ISmptugY1AOdRqnv3D5HmJ3V5Tt-EVsoSnmTB17rBDA","key":"XSRF-TOKEN"},{"expires":"Fri Jul 21 2017 10:10:10 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"value":"PHPSTORM","key":"XDEBUG_SESSION"}],"responseTime":"1354","body":"{\"error\":\"invalid_grant\",\"error_description\":\"The access token provided is invalid.\"}"},{"id":"4ec364d0-c06c-4830-aaab-efb2eaee238f","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token}}","disabled":false}],"body":{"mode":"formdata","formdata":[{"key":"social_access_token","value":"EAARiM39eZCbABAGDBatZBWJp1ZAXQcZAXVYewZC4SJRCvlaOWMPR3cI0slArx5IaNZAZBdrveXcORV7ZC2J3F5V5JKyMF5F5ky239vZA5aVKnMUflGDI8QZAADr6s8CZBiKynRQZADieYV38mJZCtvWYqor4ep0fWFDL8StOIFeISUqjngQZDZD","type":"text"},{"key":"social_access_token_expiration","value":"123456789","type":"text"},{"key":"social_refresh_token","value":"","description":"optional","type":"text","disabled":true}]},"url":"{{host}}/api/v2/connect/facebook"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"POST","name":"Allow","description":""},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 21 Jul 2017 11:05:40 GMT","name":"Date","description":""},{"key":"Server","value":"nginx/1.4.6 (Ubuntu)","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Debug-Token","value":"3c74cf","name":"X-Debug-Token","description":""},{"key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/3c74cf","name":"X-Debug-Token-Link","description":""}],"cookie":[{"expires":"Fri Aug 18 2017 11:58:03 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"value":"iqdjnuiqt1o5lm2n4nur0jjjd6","key":"PHPSESSID"},{"expires":"Mon Jan 18 2038 04:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"value":"ISmptugY1AOdRqnv3D5HmJ3V5Tt-EVsoSnmTB17rBDA","key":"XSRF-TOKEN"}],"responseTime":"843","body":"{\"data\":{\"label\":\"dani28_bcn@hotmail.com\",\"first_name\":\"Dani\",\"last_name\":\"Ramirez\",\"alias_flag\":false,\"is_premium\":false,\"id\":\"596e176e2798715a238b4567\",\"email\":\"dani28_bcn@hotmail.com\",\"roles\":[\"ROLE_USER\"],\"registered_at\":\"07\\/18\\/2017 14:13:02\",\"last_login\":\"07\\/18\\/2017 14:13:04\",\"status\":\"active\",\"onboarded\":false,\"verified\":false,\"verified_email\":false,\"social_provider\":\"facebook\",\"profile\":{\"first_name\":\"Dani\",\"last_name\":\"Ramirez\",\"user_id\":\"596e176e2798715a238b4567\",\"areas\":[],\"photo\":\"https:\\/\\/scontent.xx.fbcdn.net\\/v\\/t1.0-1\\/p200x200\\/13015193_10154119806127421_2871215523222094847_n.jpg?oh=3c320c0d4e253d746c9602c306f0ab05&oe=59C78DAB\",\"legacy_photo_url\":\"https:\\/\\/scontent.xx.fbcdn.net\\/v\\/t1.0-1\\/p200x200\\/13015193_10154119806127421_2871215523222094847_n.jpg?oh=3c320c0d4e253d746c9602c306f0ab05&oe=59C78DAB\",\"connection_status\":\"not_existing_connection\"},\"communication_preferences\":{\"recommendations_frequency\":\"weekly\",\"messages\":true,\"favorites\":true,\"visits\":true},\"ip\":\"10.50.50.1\",\"social_info\":{\"facebook\":{\"social_id\":\"10155432771417421\",\"token\":\"EAARiM39eZCbABAGDBatZBWJp1ZAXQcZAXVYewZC4SJRCvlaOWMPR3cI0slArx5IaNZAZBdrveXcORV7ZC2J3F5V5JKyMF5F5ky239vZA5aVKnMUflGDI8QZAADr6s8CZBiKynRQZADieYV38mJZCtvWYqor4ep0fWFDL8StOIFeISUqjngQZDZD\",\"token_expiration\":\"2021-06-19T08:38:49+0000\",\"type\":\"facebook\"}}},\"errors\":[]}"}],"_postman_id":"96a55eb6-812e-499d-8090-8ef02ebe7531"},{"name":"Google","event":[{"listen":"test","script":{"type":"text/javascript","exec":["tests[\"Status code is 200\"] = responseCode.code === 401;","","tests[\"Body matches string\"] = responseBody.has(\"Invalid Access Token\");"]}}],"id":"68ec448d-0a10-4037-bda1-5c24cddb3d4d","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"social_access_token","value":"ya29.GluOBGGf42j6eXiQbr2T4X4husimIv9KUD3iosChPjADlqDUWlyB1x4riJVrZc-KMH-XK_mEDu1t_y5LfNO7A1xyANTI5ss1fPvL6Sbu_nf3kP_C1btbgdx2rzK_","type":"text"},{"key":"social_access_token_expiration","value":"123456789","type":"text"},{"key":"social_refresh_token","value":"refresh_token","description":"<p>optional</p>\n","type":"text"}]},"url":"{{host}}/api/v2/connect/google","description":"<p>Save Google social_info into the logged user</p>\n<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>social_access_token</td>\n<td>String</td>\n<td>true</td>\n<td>Social access token</td>\n</tr>\n<tr>\n<td>social_access_token_expiration</td>\n<td>Integer</td>\n<td>true</td>\n<td>Expiration of the access token</td>\n</tr>\n<tr>\n<td>social_refresh_token</td>\n<td>String</td>\n<td>false</td>\n<td>Social refresh token</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\">Response</h2>\n<p>Connect Object</p>\n","urlObject":{"path":["api","v2","connect","google"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"913bb56c-7e34-4fc0-8ce3-99ffe66369d0","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token}}","disabled":false}],"body":{"mode":"formdata","formdata":[{"key":"social_access_token","value":"ya29.GluOBGGf42j6eXiQbr2T4X4husimIv9KUD3iosChPjADlqDUWlyB1x4riJVrZc-KMH-XK_mEDu1t_y5LfNO7A1xyANTI5ss1fPvL6Sbu_nf3kP_C1btbgdx2rzK_","type":"text"},{"key":"social_access_token_expiration","value":"123456789","type":"text"},{"key":"social_refresh_token","value":"refresh_token","description":"optional","type":"text"}]},"url":"{{host}}/api/v2/connect/google"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"POST","name":"Allow","description":""},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 21 Jul 2017 11:39:40 GMT","name":"Date","description":""},{"key":"Server","value":"nginx/1.4.6 (Ubuntu)","name":"Server","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Debug-Token","value":"306a29","name":"X-Debug-Token","description":""},{"key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/306a29","name":"X-Debug-Token-Link","description":""}],"cookie":[{"expires":"Fri Aug 18 2017 11:58:03 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"value":"iqdjnuiqt1o5lm2n4nur0jjjd6","key":"PHPSESSID"},{"expires":"Sat Jan 16 2038 23:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"value":"ISmptugY1AOdRqnv3D5HmJ3V5Tt-EVsoSnmTB17rBDA","key":"XSRF-TOKEN"}],"responseTime":"1656","body":"{\"data\":{\"label\":\"daniel@cofounderslab.com\",\"first_name\":\"Daniel\",\"last_name\":\"Ram\\u00edrez\",\"alias_flag\":false,\"is_premium\":false,\"id\":\"5971e76327987153568b4567\",\"email\":\"daniel@cofounderslab.com\",\"roles\":[\"ROLE_USER\"],\"registered_at\":\"07\\/21\\/2017 11:37:07\",\"last_login\":\"07\\/21\\/2017 11:37:09\",\"status\":\"active\",\"onboarded\":false,\"verified\":false,\"verified_email\":false,\"social_provider\":\"google\",\"profile\":{\"first_name\":\"Daniel\",\"last_name\":\"Ram\\u00edrez\",\"user_id\":\"5971e76327987153568b4567\",\"areas\":[],\"photo\":\"https:\\/\\/lh6.googleusercontent.com\\/-mkX9tiHxtgk\\/AAAAAAAAAAI\\/AAAAAAAAAAk\\/GCUN25WP7kM\\/photo.jpg?sz=200\",\"legacy_photo_url\":\"https:\\/\\/lh6.googleusercontent.com\\/-mkX9tiHxtgk\\/AAAAAAAAAAI\\/AAAAAAAAAAk\\/GCUN25WP7kM\\/photo.jpg?sz=200\",\"connection_status\":\"not_existing_connection\"},\"communication_preferences\":{\"recommendations_frequency\":\"weekly\",\"messages\":true,\"favorites\":true,\"visits\":true},\"ip\":\"10.50.50.1\",\"social_info\":{\"google\":{\"social_id\":\"112700686580721703710\",\"token\":\"ya29.GluOBGGf42j6eXiQbr2T4X4husimIv9KUD3iosChPjADlqDUWlyB1x4riJVrZc-KMH-XK_mEDu1t_y5LfNO7A1xyANTI5ss1fPvL6Sbu_nf3kP_C1btbgdx2rzK_\",\"token_expiration\":\"2021-06-19T09:12:48+0000\",\"type\":\"google\",\"refresh_token\":\"refresh_token\"}}},\"errors\":[]}"}],"_postman_id":"68ec448d-0a10-4037-bda1-5c24cddb3d4d"},{"name":"Twitter","event":[{"listen":"test","script":{"type":"text/javascript","exec":["tests[\"Status code is 200\"] = responseCode.code === 401;","","tests[\"Body matches string\"] = responseBody.has(\"Invalid Access Token\");"]}}],"id":"a614173a-ca0c-4476-8c42-636298982b66","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"social_access_token","value":"EAARiM39eZCbABABqIOvKaZBg5lU1pQi7vCUvpr2U4RoccalQe7kUvOSrULy1z4fVgNP1bmz1AAC2LnwQL8g8WKHaia5IgI6YZC8cZA9CS4NSbnBlvMRpid5ZCetRQr9ZAA2VXtTKa8htHSk0pd3eIJ0EWqtRrwhT1T5EQKgOuZCEwZDZD","type":"text"},{"key":"social_access_token_expiration","value":"123456789","type":"text"},{"key":"social_refresh_token","value":"","description":"<p>optional</p>\n","type":"text","disabled":true}]},"url":"{{host}}/api/v2/connect/facebook","description":"<p>Save Facebook social_info into the logged user</p>\n<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>social_access_token</td>\n<td>String</td>\n<td>true</td>\n<td>Social access token</td>\n</tr>\n<tr>\n<td>social_access_token_expiration</td>\n<td>Integer</td>\n<td>true</td>\n<td>Expiration of the access token</td>\n</tr>\n<tr>\n<td>social_refresh_token</td>\n<td>String</td>\n<td>false</td>\n<td>Social refresh token</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\">Response</h2>\n<p>Connect Object</p>\n","urlObject":{"path":["api","v2","connect","facebook"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"32763377-a321-41b4-babc-91d8decaaffc","name":"200: OK","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"social_access_token","value":"207915153-MICp0jHA30yJqIWCH7qPYwPxHYaTcS7KJUPnLT9j","type":"text"},{"key":"social_access_token_secret","value":"eShU3Rb34Lhu6oy6mkYG9howwIJ0noBhgOKO3z1ZQAFOv","type":"text"},{"key":"social_access_token_expiration","value":"","type":"text","disabled":true},{"key":"social_refresh_token","value":"","description":"optional","type":"text","disabled":true}]},"url":"{{host}}/api/v2/connect/twitter"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"POST","name":"Allow","description":""},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 16 Aug 2017 10:52:33 GMT","name":"Date","description":""},{"key":"Server","value":"nginx/1.4.6 (Ubuntu)","name":"Server","description":""},{"key":"Set-Cookie","value":"XDEBUG_SESSION=PHPSTORM; expires=Wed, 16-Aug-2017 11:51:58 GMT; Max-Age=3600; path=/","name":"Set-Cookie","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Debug-Token","value":"2ee4d0","name":"X-Debug-Token","description":""},{"key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/2ee4d0","name":"X-Debug-Token-Link","description":""}],"cookie":[{"expires":"Fri Aug 18 2017 11:58:03 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"value":"iqdjnuiqt1o5lm2n4nur0jjjd6","key":"PHPSESSID"},{"expires":"Sun Jan 17 2038 04:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"value":"BgrD_uYXl1sKPoXWaXf6eEs5-eTgIDOddjmO67b5Kds","key":"XSRF-TOKEN"},{"expires":"Wed Aug 16 2017 09:52:35 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"value":"PHPSTORM","key":"XDEBUG_SESSION"}],"responseTime":"37248","body":"{\"data\":{\"label\":\"daniel.ramirez.bcn@gmail.com\",\"first_name\":\"Dani Ramirez\",\"last_name\":\"Dani Ramirez\",\"alias_flag\":false,\"is_premium\":false,\"is_influencer\":false,\"id\":\"599168ae27987188168b4567\",\"email\":\"daniel.ramirez.bcn@gmail.com\",\"roles\":[\"ROLE_USER\"],\"registered_at\":\"08\\/14\\/2017 09:09:02\",\"last_login\":\"08\\/14\\/2017 10:49:09\",\"status\":\"active\",\"onboarded\":true,\"verified\":false,\"verified_email\":false,\"social_provider\":\"twitter\",\"profile\":{\"first_name\":\"Dani Ramirez\",\"last_name\":\"Dani Ramirez\",\"user_id\":\"599168ae27987188168b4567\",\"role\":\"networker\",\"areas\":[\"legal\"],\"photo\":\"https:\\/\\/s3.amazonaws.com\\/cofounderslab-testing\\/profiles\\/avatars\\/599171db20858.jpeg\",\"legacy_photo_url\":\"https:\\/\\/www.gravatar.com\\/avatar\\/ebcd801c7cdd0c0bed24a1a55fe5f699?d=404&s=200\",\"use_avatar\":false,\"url\":\"http:\\/\\/10.50.50.50:8000\\/profile\\/dani-ramirez-dani-ramirez-1\",\"connection_status\":\"not_existing_connection\"},\"communication_preferences\":{\"recommendations_frequency\":\"weekly\",\"messages\":true,\"favorites\":true,\"visits\":true},\"discuss_communication_preferences\":{\"digest_frequency\":\"twice_a_week\",\"new_notifications\":\"topics_followed\",\"follow_notifications\":\"new_answers\",\"up_vote_notifications\":true},\"ip\":\"10.50.50.1\",\"social_info\":{\"twitter\":{\"social_id\":207915153,\"token\":\"207915153-MICp0jHA30yJqIWCH7qPYwPxHYaTcS7KJUPnLT9j\",\"token_expiration\":\"1970-01-01T00:00:00+0000\",\"type\":\"twitter\",\"token_secret\":\"eShU3Rb34Lhu6oy6mkYG9howwIJ0noBhgOKO3z1ZQAFOv\"},\"facebook\":{\"social_id\":\"10155432771417421\",\"token\":\"EAARiM39eZCbABAPQsZBHCuU2wVsuZAmpMtGWKA5eoE3sKJKZBW6ZAnKJRoyVgjugDg71IxmTP975Gl0iWhC2iECuflRESAhGSdZA1zbwbTebKeywZATGZBwcQ2eISSLA1q4EIHbrJp0acj3NBxI1o2Id5X0unFLa5FsfjDZB7vu2D0gZDZD\",\"token_expiration\":\"2021-07-13T13:14:05+0000\",\"type\":\"facebook\"},\"linkedin\":{\"social_id\":\"RojIzwdlzU\",\"token\":\"AQUqnuWBIEnwY8hcIqg3BRKRrQ5s7zJpwwMxV5uiw75dv7KAMm4vW6yYWEhK4iNiSJn8qpMFFutTY_Ja3oCSXQr0pF-5iu_2-2Gq7C4-OA0Kkb5Yf2HTpy0ljU5CAXAzCFtV4D0mLsa-jaQR7MzhfMEsXGiQ3vh1MovWXyTDRmQNY59Xuoc\",\"token_expiration\":\"2021-07-15T08:15:59+0000\",\"type\":\"linkedin\"}}},\"errors\":[]}"},{"id":"c3c2c151-adf8-42da-bb40-0bdee5e28610","name":"401: Unauthorize","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"social_access_token","value":"207915153-MICp0jHA30yJqIWCH7qPYwPxHYaTcS7KJUPnLT9k","type":"text"},{"key":"social_access_token_secret","value":"eShU3Rb34Lhu6oy6mkYG9howwIJ0noBhgOKO3z1ZQAFOv","type":"text"},{"key":"social_access_token_expiration","value":"","type":"text","disabled":true},{"key":"social_refresh_token","value":"","description":"optional","type":"text","disabled":true}]},"url":{"raw":"{{host}}/api/v2/connect/twitter?XDEBUG_SESSION_START=PHPSTORM","host":["{{host}}"],"path":["api","v2","connect","twitter"],"query":[{"key":"XDEBUG_SESSION_START","value":"PHPSTORM"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"POST","name":"Allow","description":""},{"key":"Cache-Control","value":"no-cache","name":"Cache-Control","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 16 Aug 2017 11:20:40 GMT","name":"Date","description":""},{"key":"Server","value":"nginx/1.4.6 (Ubuntu)","name":"Server","description":""},{"key":"Set-Cookie","value":"XDEBUG_SESSION=PHPSTORM; expires=Wed, 16-Aug-2017 12:20:26 GMT; Max-Age=3600; path=/","name":"Set-Cookie","description":""},{"key":"Transfer-Encoding","value":"chunked","name":"Transfer-Encoding","description":""},{"key":"X-Debug-Token","value":"4f23eb","name":"X-Debug-Token","description":""},{"key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/4f23eb","name":"X-Debug-Token-Link","description":""}],"cookie":[{"expires":"Fri Aug 18 2017 11:58:03 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"value":"iqdjnuiqt1o5lm2n4nur0jjjd6","key":"PHPSESSID"},{"expires":"Sun Jan 17 2038 00:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"value":"BgrD_uYXl1sKPoXWaXf6eEs5-eTgIDOddjmO67b5Kds","key":"XSRF-TOKEN"},{"expires":"Wed Aug 16 2017 10:20:40 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"value":"PHPSTORM","key":"XDEBUG_SESSION"}],"responseTime":"14657","body":"{\"data\":[],\"errors\":[{\"client\":{\"code\":1000,\"constraint\":\"Unknown constraint\"}}]}"}],"_postman_id":"a614173a-ca0c-4476-8c42-636298982b66"}],"id":"12a70cac-4e0c-4d12-8386-52ab3c2a8dce","description":"<h2 id=\"connect-object\">Connect Object</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">{\n    \"data\": {\n        \"first_name\": \"Dani\",\n        \"last_name\": \"Ramirez Salas\",\n        \"alias_flag\": false,\n        \"is_premium\": false,\n        \"id\": \"596f66212798714c348b4567\",\n        \"email\": \"daniel.ramirez.bcn@gmail.com\",\n        \"roles\": [\n            \"ROLE_USER\"\n        ],\n        \"registered_at\": \"07/19/2017 14:01:05\",\n        \"last_login\": \"07/19/2017 14:01:07\",\n        \"status\": \"active\",\n        \"onboarded\": false,\n        \"verified\": false,\n        \"verified_email\": false,\n        \"social_provider\": \"linkedin\",\n        \"profile\": {\n            \"first_name\": \"Dani\",\n            \"last_name\": \"Ramirez Salas\",\n            \"user_id\": \"596f66212798714c348b4567\",\n            \"areas\": [],\n            \"photo\": \"https://media.licdn.com/mpr/mprx/0_0PWNobQLT1RIxljb0CN-EfNhC8weagjTy7vcVJR5C3naalrCeCNP00bQhPnwxA13IJNAIl6i1cBw2uDad44RjyQLkcBI2u33D44nebs5AD6G2RKeDyHBmNBNG4\",\n            \"legacy_photo_url\": \"https://media.licdn.com/mpr/mprx/0_0PWNobQLT1RIxljb0CN-EfNhC8weagjTy7vcVJR5C3naalrCeCNP00bQhPnwxA13IJNAIl6i1cBw2uDad44RjyQLkcBI2u33D44nebs5AD6G2RKeDyHBmNBNG4\",\n            \"connection_status\": \"not_existing_connection\"\n        },\n        \"communication_preferences\": {\n            \"recommendations_frequency\": \"weekly\",\n            \"messages\": true,\n            \"favorites\": true,\n            \"visits\": true\n        },\n        \"ip\": \"10.50.50.1\",\n        \"social_info\": {\n            \"linkedin\": {\n                \"social_id\": \"RojIzwdlzU\",\n                \"token\": \"AQUqnuWBIEnwY8hcIqg3BRKRrQ5s7zJpwwMxV5uiw75dv7KAMm4vW6yYWEhK4iNiSJn8qpMFFutTY_Ja3oCSXQr0pF-5iu_2-2Gq7C4-OA0Kkb5Yf2HTpy0ljU5CAXAzCFtV4D0mLsa-jaQR7MzhfMEsXGiQ3vh1MovWXyTDRmQNY59Xuoc\",\n                \"token_expiration\": \"2021-06-19T06:45:22+0000\",\n                \"type\": \"linkedin\"\n            }\n        }\n    },\n    \"errors\": []\n}\n</code></pre>\n","_postman_id":"12a70cac-4e0c-4d12-8386-52ab3c2a8dce"},{"name":"Connections","item":[{"name":"Request","event":[{"listen":"test","script":{"type":"text/javascript","exec":["tests[\"Status code is 400\"] = responseCode.code === 200;","","tests[\"Body matches data\"] = responseBody.has(\"data\");","tests[\"Body matches id\"] = responseBody.has(\"id\");"]}}],"id":"fffac28c-0c54-447d-9d22-2601845b5e67","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"receiver_id","value":"{{user_id_2}}","type":"text"},{"key":"intention","value":"other","type":"text"},{"key":"personal_message","value":"test","type":"text"},{"key":"","value":"","type":"text","disabled":true}]},"url":"{{host}}/api/v2/connection/request","description":"<p>Send request connection to another user</p>\n<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>receiver_id</td>\n<td>string</td>\n<td>true</td>\n<td>Receiver Connection ID</td>\n</tr>\n<tr>\n<td>intention</td>\n<td>string</td>\n<td>true</td>\n<td>Intention of the connection [ cofounder, advisor, recruiting, networking, services, other]</td>\n</tr>\n<tr>\n<td>personal_message</td>\n<td>string</td>\n<td>false</td>\n<td>Personal message</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\">Response</h2>\n<p>Connection Object</p>\n","urlObject":{"path":["api","v2","connection","request"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"6005b828-f4fe-48d2-8fe1-b19421a9faa0","name":"400: Bad Request","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"receiver_id","value":"57994468b43401c0360041a8","type":"text","disabled":true},{"key":"intention","value":"test","type":"text","disabled":true},{"key":"personal_message","value":"test","type":"text","disabled":true},{"key":"","value":"","type":"text","disabled":true}]},"url":"{{host}}/api/v1/connection-request"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"name":"Allow","key":"Allow","value":"POST","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"no-cache","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json","description":""},{"name":"Date","key":"Date","value":"Tue, 02 May 2017 11:45:38 GMT","description":""},{"name":"Server","key":"Server","value":"nginx/1.4.6 (Ubuntu)","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Debug-Token","key":"X-Debug-Token","value":"bdcbaf","description":""},{"name":"X-Debug-Token-Link","key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/bdcbaf","description":""}],"cookie":[{"expires":"Thu May 25 2017 16:05:00 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"v2","key":"cfl_ab_onboarding"},{"expires":"Thu Jun 01 2017 11:37:24 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"eg9fvn2ruo79jn5sdt56irnfp4","key":"PHPSESSID"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":true,"value":"uICQqiZZTZ8OOOfJPGAVkvhCJuDiFaA-7uSkiwBu_O8","key":"XSRF-TOKEN"}],"responseTime":"392","body":"{\"errors\":[{\"receiver_id\":\"This value should not be null.\"},{\"receiver_id\":\"This value should not be blank.\"},{\"receiver_id\":\"The user id not exists on CFL\"},{\"intention\":\"This value should not be null.\"},{\"intention\":\"This value should not be blank.\"}]}"},{"id":"bec67c3e-7ee3-4ea7-912f-e8f0e19bfd85","name":"200: OK","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"receiver_id","value":"{{user_id_2}}","type":"text"},{"key":"intention","value":"other","type":"text"},{"key":"personal_message","value":"test","type":"text"},{"key":"","value":"","type":"text","disabled":true}]},"url":{"raw":"{{host}}/api/v2/connection/request?access_token={{access_token_1}}","host":["{{host}}"],"path":["api","v2","connection","request"],"query":[{"key":"access_token","value":"{{access_token_1}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Allow","key":"Allow","value":"POST","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"no-cache","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json","description":""},{"name":"Date","key":"Date","value":"Thu, 11 May 2017 13:54:35 GMT","description":""},{"name":"Server","key":"Server","value":"nginx/1.4.6 (Ubuntu)","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Debug-Token","key":"X-Debug-Token","value":"0cc498","description":""},{"name":"X-Debug-Token-Link","key":"X-Debug-Token-Link","value":"http://localhost:8000/_profiler/0cc498","description":""}],"cookie":[{"expires":"Sat Jun 03 2017 15:37:29 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"v2","key":"cfl_ab_onboarding"},{"expires":"Wed Jun 07 2017 17:15:03 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"qh4thca8fjji51djn7poi17sb7","key":"PHPSESSID"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":true,"value":"GQtE69lKP5yYoAWhp_CM992Zqzo72iwVVs1d3mt_B0E","key":"XSRF-TOKEN"}],"responseTime":"1032","body":"{\"data\":{\"id\":\"59146d1b2798715b448b45a0\",\"status\":\"pending\",\"users\":[{\"$id\":\"5914347f2798715c4e8b4567\"},{\"$id\":\"5914347f2798715c4e8b4568\"}],\"sent_at\":\"2017-05-11T13:54:35+0000\",\"intention\":\"other\",\"personal_message\":\"test\",\"author_id\":{\"$id\":\"5914347f2798715c4e8b4567\"},\"profiles_info\":[{\"first_name\":\"Test\",\"last_name\":\"1\",\"photo\":\"https:\\/\\/s3.amazonaws.com\\/cofounderslab-production\\/static\\/avatars\\/avatar0.jpg\",\"connection_status\":\"not_existing_connection\"}]}}"},{"id":"d82efa5d-d8f0-4929-954c-241b08d03fdd","name":"400: Connection exist","originalRequest":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"receiver_id","value":"{{user_id_2}}","type":"text"},{"key":"intention","value":"other","type":"text"},{"key":"personal_message","value":"test","type":"text"},{"key":"","value":"","type":"text","disabled":true}]},"url":{"raw":"{{host}}/api/v2/connection/request?access_token={{access_token_1}}","host":["{{host}}"],"path":["api","v2","connection","request"],"query":[{"key":"access_token","value":"{{access_token_1}}"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"name":"Allow","key":"Allow","value":"POST","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"no-cache","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json","description":""},{"name":"Date","key":"Date","value":"Thu, 11 May 2017 13:52:28 GMT","description":""},{"name":"Server","key":"Server","value":"nginx/1.4.6 (Ubuntu)","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Debug-Token","key":"X-Debug-Token","value":"4cf090","description":""},{"name":"X-Debug-Token-Link","key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/4cf090","description":""}],"cookie":[{"expires":"Sat Jun 03 2017 15:37:29 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"v2","key":"cfl_ab_onboarding"},{"expires":"Wed Jun 07 2017 17:15:03 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"qh4thca8fjji51djn7poi17sb7","key":"PHPSESSID"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":true,"value":"GQtE69lKP5yYoAWhp_CM992Zqzo72iwVVs1d3mt_B0E","key":"XSRF-TOKEN"}],"responseTime":"343","body":"{\"errors\":[{\"\":\"The connection request exist on CFL\"}]}"}],"_postman_id":"fffac28c-0c54-447d-9d22-2601845b5e67"},{"name":"View","event":[{"listen":"test","script":{"type":"text/javascript","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","tests[\"Body matches data\"] = responseBody.has(\"data\");","tests[\"Body matches id\"] = responseBody.has(\"id\");","","var jsonData = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"connection_user1_user2\", jsonData.data.id);"]}}],"id":"18134a04-46a3-4cb9-8bbb-59419e1446ae","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"receiver_id","value":"{{user_id_2}}","type":"text"},{"key":"intention","value":"other","type":"text"},{"key":"personal_message","value":"test","type":"text"},{"key":"","value":"","type":"text","disabled":true}]},"url":"{{host}}/api/v2/connections?status=passed&author=true&pagination=true&page_size=10","description":"<p>Show connections</p>\n<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>status</td>\n<td>string</td>\n<td>false</td>\n<td>Connection Status [pending, accepted, passed, withdraw]. Default pending</td>\n</tr>\n<tr>\n<td>author</td>\n<td>integer</td>\n<td>false</td>\n<td>I'm author? 1 = me, 0 = other Default false</td>\n</tr>\n<tr>\n<td>pagination</td>\n<td>boolean</td>\n<td>false</td>\n<td>Use pagination? Default true</td>\n</tr>\n<tr>\n<td>page</td>\n<td>integer</td>\n<td>false</td>\n<td>Page if use pagination. Default 0</td>\n</tr>\n<tr>\n<td>page_size</td>\n<td>integer</td>\n<td>false</td>\n<td>Page size. Default 10</td>\n</tr>\n<tr>\n<td>page_skip</td>\n<td>integer</td>\n<td>false</td>\n<td>Set the skip for the query cursor. Default false</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\">Response</h2>\n<p>Array of Connection Object</p>\n","urlObject":{"path":["api","v2","connections"],"host":["{{host}}"],"query":[{"key":"status","value":"passed"},{"key":"author","value":"true"},{"key":"pagination","value":"true"},{"key":"page_size","value":"10"}],"variable":[]}},"response":[{"id":"2902c79b-26e1-4c8f-9b31-1754056e7f35","name":"200: OK","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[{"key":"receiver_id","value":"{{user_id_2}}","type":"text"},{"key":"intention","value":"other","type":"text"},{"key":"personal_message","value":"test","type":"text"},{"key":"","value":"","type":"text","disabled":true}]},"url":{"raw":"{{host}}/api/v2/connections?access_token={{access_token_1}}&status=passed&author=true&pagination=true","host":["{{host}}"],"path":["api","v2","connections"],"query":[{"key":"access_token","value":"{{access_token_1}}"},{"key":"status","value":"passed"},{"key":"author","value":"true"},{"key":"pagination","value":"true"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Allow","key":"Allow","value":"GET","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"no-cache","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json","description":""},{"name":"Date","key":"Date","value":"Thu, 18 May 2017 11:54:59 GMT","description":""},{"name":"Server","key":"Server","value":"nginx/1.4.6 (Ubuntu)","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Debug-Token","key":"X-Debug-Token","value":"01a320","description":""},{"name":"X-Debug-Token-Link","key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/01a320","description":""}],"cookie":[{"expires":"Sat Jun 03 2017 15:37:29 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"v2","key":"cfl_ab_onboarding"},{"expires":"Wed Jun 07 2017 17:15:03 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"qh4thca8fjji51djn7poi17sb7","key":"PHPSESSID"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":true,"value":"GQtE69lKP5yYoAWhp_CM992Zqzo72iwVVs1d3mt_B0E","key":"XSRF-TOKEN"}],"responseTime":"410","body":"{\n    \"data\": [\n        {\n            \"id\": \"591c6514279871621b8b458e\",\n            \"status\": \"passed\",\n            \"users\": [\n                {\n                    \"$id\": \"5914347f2798715c4e8b4567\"\n                },\n                {\n                    \"$id\": \"5914347f2798715c4e8b4569\"\n                }\n            ],\n            \"sent_at\": \"2017-05-17T14:58:28+0000\",\n            \"intention\": \"other\",\n            \"personal_message\": \"test\",\n            \"author_id\": \"5914347f2798715c4e8b4567\",\n            \"profiles_info\": [\n                {\n                    \"first_name\": \"Test\",\n                    \"last_name\": \"1\",\n                    \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                    \"connection_status\": \"not_existing_connection\"\n                }\n            ]\n        }\n    ],\n    \"meta\": {\n        \"page\": 0,\n        \"page_size\": 10,\n        \"result_count\": 1,\n        \"page_last\": 0,\n        \"order_by\": {\n            \"sentAt\": \"desc\"\n        }\n    }\n}"},{"id":"f5ba91a1-7f92-45f7-91ad-fb7c7241f7de","name":"401: Unauthorized","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[{"key":"receiver_id","value":"{{user_id_2}}","type":"text"},{"key":"intention","value":"other","type":"text"},{"key":"personal_message","value":"test","type":"text"},{"key":"","value":"","type":"text","disabled":true}]},"url":{"raw":"{{host}}/api/v2/connections?access_token={{access_token_1}}&status=passed&author=true&pagination=true","host":["{{host}}"],"path":["api","v2","connections"],"query":[{"key":"access_token","value":"{{access_token_1}}"},{"key":"status","value":"passed"},{"key":"author","value":"true"},{"key":"pagination","value":"true"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"name":"Allow","key":"Allow","value":"GET","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"no-store, private","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json","description":""},{"name":"Date","key":"Date","value":"Thu, 18 May 2017 11:55:28 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.4.6 (Ubuntu)","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"WWW-Authenticate","key":"WWW-Authenticate","value":"Bearer realm=\"Service\", error=\"access_denied\", error_description=\"OAuth2 authentication required\"","description":""},{"name":"X-Debug-Token","key":"X-Debug-Token","value":"067951","description":""},{"name":"X-Debug-Token-Link","key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/067951","description":""}],"cookie":[{"expires":"Sat Jun 03 2017 15:37:29 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"v2","key":"cfl_ab_onboarding"},{"expires":"Wed Jun 07 2017 17:15:03 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"qh4thca8fjji51djn7poi17sb7","key":"PHPSESSID"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":true,"value":"GQtE69lKP5yYoAWhp_CM992Zqzo72iwVVs1d3mt_B0E","key":"XSRF-TOKEN"}],"responseTime":"296","body":"{\"error\":\"access_denied\",\"error_description\":\"OAuth2 authentication required\"}"}],"_postman_id":"18134a04-46a3-4cb9-8bbb-59419e1446ae"},{"name":"Accept","event":[{"listen":"test","script":{"type":"text/javascript","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"]}}],"id":"6c72c0a5-9753-4f99-9a37-1b893978a167","request":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"","value":"","type":"text","disabled":true}]},"url":"{{host}}/api/v2/connection/{{connection_id}}/accept","description":"<p>Accept connection</p>\n<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>connection_id</td>\n<td>string</td>\n<td>false</td>\n<td>Connection Id</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\">Response</h2>\n<p>Connection Object</p>\n","urlObject":{"path":["api","v2","connection","{{connection_id}}","accept"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"11f555ac-e795-40a0-9c06-4279ec99cef4","name":"2202: ExistingConnectionRequestConstraint","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer {{access_token_1}}","warning":""}],"body":{"mode":"formdata","formdata":[{"key":"","value":"","type":"text","disabled":true}]},"url":"{{host}}/api/v2/connection/5947a85427987159048b4571/accept"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"name":"Allow","key":"Allow","value":"PATCH","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"no-cache","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json","description":""},{"name":"Date","key":"Date","value":"Mon, 03 Jul 2017 16:01:10 GMT","description":""},{"name":"Server","key":"Server","value":"nginx/1.4.6 (Ubuntu)","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Debug-Token","key":"X-Debug-Token","value":"b2ea32","description":""},{"name":"X-Debug-Token-Link","key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/b2ea32","description":""}],"cookie":[{"expires":"Wed Jun 13 2018 10:29:38 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"PHPSTORM","key":"XDEBUG_SESSION"},{"expires":"Thu Jun 13 2019 16:06:42 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"ebd47827-25ce-4d3e-93d5-f442a724196b","key":"ahoy_visitor"},{"expires":"Thu Jun 13 2019 16:06:44 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"GA1.1.439762883.1497370005","key":"_ga"},{"expires":"Wed Jun 13 2018 16:06:46 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"88b1060_819d3869-8c8e-480f-b382-8a4b6e3b7f8f-6139e386a-66afc2cca253-6cad","key":"__distillery"},{"expires":"Thu Jun 13 2019 16:06:47 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"251003481.9a892c380504e42262198dae416e15f2.1497370007155.1497370007155.1497370007155.1","key":"__hstc"},{"expires":"Fri Jun 11 2027 16:06:47 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"9a892c380504e42262198dae416e15f2","key":"hubspotutk"},{"expires":"Sun Jul 23 2017 07:54:57 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"v4","key":"cfl_ab_onboarding"},{"expires":"Sun Jul 23 2017 08:39:01 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"premium-v4","key":"cfl_ab_premium_onboarding"},{"expires":"Wed Aug 02 2017 14:54:17 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"aaqun9386nebe4pab2apmii9q2","key":"PHPSESSID"},{"expires":"Wed Aug 02 2017 14:54:17 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"home-tagline-simplified","key":"cfl_ab_home"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":true,"value":"OTTzl8PMyOIu3PBrYY6bdMc-iZw5SgGUoFqVua9Q1Xk","key":"XSRF-TOKEN"}],"responseTime":"1126","body":"{\"data\":[],\"errors\":[{\"\":{\"code\":2202,\"constraint\":\"ExistingConnectionRequestConstraint\"}}]}"},{"id":"1dbfd288-4560-45df-b9ed-59ef74588282","name":"200: OK","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer"}],"body":{"mode":"formdata","formdata":[{"key":"","value":"","type":"text","disabled":true}]},"url":"{{host}}/api/v2/connection/591c6514279871621b8b458e/accept"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[],"responseTime":"0","body":"{}"}],"_postman_id":"6c72c0a5-9753-4f99-9a37-1b893978a167"},{"name":"Pass","event":[{"listen":"test","script":{"type":"text/javascript","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"]}}],"id":"b2881d65-98f4-4928-8e72-f654453c5508","request":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"","value":"","type":"text","disabled":true}]},"url":"{{host}}/api/v2/connection/{{connection_id}}/pass","description":"<p>Pass connection</p>\n<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>connection_id</td>\n<td>string</td>\n<td>false</td>\n<td>Connection Id</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\">Response</h2>\n<p>Connection Object</p>\n","urlObject":{"path":["api","v2","connection","{{connection_id}}","pass"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"124bc4dc-8216-4968-9f54-5b6f9996bb70","name":"200: OK","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"","value":"","type":"text","disabled":true}]},"url":"{{host}}/api/v2/connection/591c6514279871621b8b458e/pass"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[],"responseTime":"0","body":"{}"},{"id":"7f3a84ee-53ca-4856-87ad-94878e534af9","name":"2202: ExistingConnectionRequestConstraint","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer {{access_token_1}}"}],"body":{"mode":"formdata","formdata":[{"key":"","value":"","type":"text","disabled":true}]},"url":"{{host}}/api/v2/connection/591c6514279871621b8b458e/pass"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"name":"Allow","key":"Allow","value":"PATCH","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"no-cache","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json","description":""},{"name":"Date","key":"Date","value":"Mon, 03 Jul 2017 16:01:48 GMT","description":""},{"name":"Server","key":"Server","value":"nginx/1.4.6 (Ubuntu)","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Debug-Token","key":"X-Debug-Token","value":"5ebb3e","description":""},{"name":"X-Debug-Token-Link","key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/5ebb3e","description":""}],"cookie":[{"expires":"Wed Jun 13 2018 10:29:38 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"PHPSTORM","key":"XDEBUG_SESSION"},{"expires":"Thu Jun 13 2019 16:06:42 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"ebd47827-25ce-4d3e-93d5-f442a724196b","key":"ahoy_visitor"},{"expires":"Thu Jun 13 2019 16:06:44 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"GA1.1.439762883.1497370005","key":"_ga"},{"expires":"Wed Jun 13 2018 16:06:46 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"88b1060_819d3869-8c8e-480f-b382-8a4b6e3b7f8f-6139e386a-66afc2cca253-6cad","key":"__distillery"},{"expires":"Thu Jun 13 2019 16:06:47 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"251003481.9a892c380504e42262198dae416e15f2.1497370007155.1497370007155.1497370007155.1","key":"__hstc"},{"expires":"Fri Jun 11 2027 16:06:47 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"9a892c380504e42262198dae416e15f2","key":"hubspotutk"},{"expires":"Sun Jul 23 2017 07:54:57 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"v4","key":"cfl_ab_onboarding"},{"expires":"Sun Jul 23 2017 08:39:01 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"premium-v4","key":"cfl_ab_premium_onboarding"},{"expires":"Wed Aug 02 2017 14:54:17 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"aaqun9386nebe4pab2apmii9q2","key":"PHPSESSID"},{"expires":"Wed Aug 02 2017 14:54:17 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"home-tagline-simplified","key":"cfl_ab_home"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":true,"value":"OTTzl8PMyOIu3PBrYY6bdMc-iZw5SgGUoFqVua9Q1Xk","key":"XSRF-TOKEN"}],"responseTime":"1420","body":"{\"data\":[],\"errors\":[{\"\":{\"code\":2202,\"constraint\":\"ExistingConnectionRequestConstraint\"}}]}"}],"_postman_id":"b2881d65-98f4-4928-8e72-f654453c5508"},{"name":"Withdraw","event":[{"listen":"test","script":{"type":"text/javascript","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"]}}],"id":"42ca1554-fac1-437b-afef-de283cd2bba4","request":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"","value":"","type":"text","disabled":true}]},"url":"{{host}}/api/v2/connection/{{connection_id}}/withdraw","description":"<p>Withdraw connection</p>\n<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>connection_id</td>\n<td>string</td>\n<td>false</td>\n<td>Connection Id</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\">Response</h2>\n<p>Connection Object</p>\n","urlObject":{"path":["api","v2","connection","{{connection_id}}","withdraw"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"039b2822-7552-4482-ad4e-b76fdb637c3a","name":"200: OK","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"","value":"","type":"text","disabled":true}]},"url":"{{host}}/api/v2/connection/591c6514279871621b8b458e/withdraw"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[],"responseTime":"0","body":"{}"},{"id":"38b84d1b-94c4-467e-b4ef-845f54eb5a4c","name":"2202: ExistingConnectionRequestConstraint","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer {{access_token_1}}"}],"body":{"mode":"formdata","formdata":[{"key":"","value":"","type":"text","disabled":true}]},"url":"{{host}}/api/v2/connection/591c6514279871621b8b458e/withdraw"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"name":"Allow","key":"Allow","value":"PATCH","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"no-cache","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json","description":""},{"name":"Date","key":"Date","value":"Mon, 03 Jul 2017 16:02:35 GMT","description":""},{"name":"Server","key":"Server","value":"nginx/1.4.6 (Ubuntu)","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Debug-Token","key":"X-Debug-Token","value":"d7ecf6","description":""},{"name":"X-Debug-Token-Link","key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/d7ecf6","description":""}],"cookie":[{"expires":"Wed Jun 13 2018 10:29:38 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"PHPSTORM","key":"XDEBUG_SESSION"},{"expires":"Thu Jun 13 2019 16:06:42 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"ebd47827-25ce-4d3e-93d5-f442a724196b","key":"ahoy_visitor"},{"expires":"Thu Jun 13 2019 16:06:44 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"GA1.1.439762883.1497370005","key":"_ga"},{"expires":"Wed Jun 13 2018 16:06:46 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"88b1060_819d3869-8c8e-480f-b382-8a4b6e3b7f8f-6139e386a-66afc2cca253-6cad","key":"__distillery"},{"expires":"Thu Jun 13 2019 16:06:47 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"251003481.9a892c380504e42262198dae416e15f2.1497370007155.1497370007155.1497370007155.1","key":"__hstc"},{"expires":"Fri Jun 11 2027 16:06:47 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"9a892c380504e42262198dae416e15f2","key":"hubspotutk"},{"expires":"Sun Jul 23 2017 07:54:57 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"v4","key":"cfl_ab_onboarding"},{"expires":"Sun Jul 23 2017 08:39:01 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"premium-v4","key":"cfl_ab_premium_onboarding"},{"expires":"Wed Aug 02 2017 14:54:17 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"aaqun9386nebe4pab2apmii9q2","key":"PHPSESSID"},{"expires":"Wed Aug 02 2017 14:54:17 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"home-tagline-simplified","key":"cfl_ab_home"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":true,"value":"OTTzl8PMyOIu3PBrYY6bdMc-iZw5SgGUoFqVua9Q1Xk","key":"XSRF-TOKEN"}],"responseTime":"1187","body":"{\n    \"data\": [],\n    \"errors\": [\n        {\n            \"\": {\n                \"code\": 2202,\n                \"constraint\": \"ExistingConnectionRequestConstraint\"\n            }\n        }\n    ]\n}"}],"_postman_id":"42ca1554-fac1-437b-afef-de283cd2bba4"},{"name":"Delete","event":[{"listen":"test","script":{"type":"text/javascript","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"]}}],"id":"9eb4674b-0934-4595-8cf7-01b54d89fa7b","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"","value":"","type":"text","disabled":true}]},"url":"{{host}}/api/v2/connection/{{connection_id}}/delete","description":"<p>Delete connection</p>\n<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>connection_id</td>\n<td>string</td>\n<td>false</td>\n<td>Connection Id</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\">Response</h2>\n<p>Connection Object</p>\n","urlObject":{"path":["api","v2","connection","{{connection_id}}","delete"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"10882c67-7ccf-4ca5-8893-b82b84849464","name":"2201: ConnectedUsersConstraint","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{access_token_1}}"}],"body":{"mode":"formdata","formdata":[{"key":"","value":"","type":"text","disabled":true}]},"url":"{{host}}/api/v2/connection/591c6514279871621b8b458e/delete"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"name":"Allow","key":"Allow","value":"DELETE","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"no-cache","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json","description":""},{"name":"Date","key":"Date","value":"Mon, 03 Jul 2017 16:03:27 GMT","description":""},{"name":"Server","key":"Server","value":"nginx/1.4.6 (Ubuntu)","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Debug-Token","key":"X-Debug-Token","value":"14ac8f","description":""},{"name":"X-Debug-Token-Link","key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/14ac8f","description":""}],"cookie":[{"expires":"Wed Jun 13 2018 10:29:38 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"PHPSTORM","key":"XDEBUG_SESSION"},{"expires":"Thu Jun 13 2019 16:06:42 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"ebd47827-25ce-4d3e-93d5-f442a724196b","key":"ahoy_visitor"},{"expires":"Thu Jun 13 2019 16:06:44 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"GA1.1.439762883.1497370005","key":"_ga"},{"expires":"Wed Jun 13 2018 16:06:46 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"88b1060_819d3869-8c8e-480f-b382-8a4b6e3b7f8f-6139e386a-66afc2cca253-6cad","key":"__distillery"},{"expires":"Thu Jun 13 2019 16:06:47 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"251003481.9a892c380504e42262198dae416e15f2.1497370007155.1497370007155.1497370007155.1","key":"__hstc"},{"expires":"Fri Jun 11 2027 16:06:47 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"9a892c380504e42262198dae416e15f2","key":"hubspotutk"},{"expires":"Sun Jul 23 2017 07:54:57 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"v4","key":"cfl_ab_onboarding"},{"expires":"Sun Jul 23 2017 08:39:01 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"premium-v4","key":"cfl_ab_premium_onboarding"},{"expires":"Wed Aug 02 2017 14:54:17 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"aaqun9386nebe4pab2apmii9q2","key":"PHPSESSID"},{"expires":"Wed Aug 02 2017 14:54:17 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"home-tagline-simplified","key":"cfl_ab_home"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":true,"value":"OTTzl8PMyOIu3PBrYY6bdMc-iZw5SgGUoFqVua9Q1Xk","key":"XSRF-TOKEN"}],"responseTime":"1513","body":"{\"data\":[],\"errors\":[{\"\":{\"code\":2201,\"constraint\":\"ConnectedUsersConstraint\"}}]}"},{"id":"5f814ca6-7969-4d51-85f5-28c0407e5344","name":"200: OK","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{access_token}}"},{"key":"","value":"","warning":"","disabled":true}],"body":{"mode":"formdata","formdata":[{"key":"","value":"","type":"text","disabled":true}]},"url":"{{host}}/api/v2/connection/591c6514279871621b8b458e/delete"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[],"responseTime":"0","body":"{}"}],"_postman_id":"9eb4674b-0934-4595-8cf7-01b54d89fa7b"}],"id":"cb844e7e-d0bb-4d02-b504-fd0fb9fe7fbe","description":"<p>Users can connect to interact together.</p>\n<h2 id=\"connection-object\">Connection Object</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>String</td>\n<td>Connection ID</td>\n</tr>\n<tr>\n<td>status</td>\n<td>String</td>\n<td>Connection Status [pending, accepted, passed, , withdrawn]</td>\n</tr>\n<tr>\n<td>users</td>\n<td>Array</td>\n<td>Id's of Connection users</td>\n</tr>\n<tr>\n<td>sent_at</td>\n<td>Date</td>\n<td>When the request was sent</td>\n</tr>\n<tr>\n<td>processed_at</td>\n<td>Date</td>\n<td>When the request was processed (accepted, pass)</td>\n</tr>\n<tr>\n<td>intention</td>\n<td>String</td>\n<td>Intention to be sent</td>\n</tr>\n<tr>\n<td>personal_message</td>\n<td>String</td>\n<td>Personalized message sent by the sender</td>\n</tr>\n<tr>\n<td>author_id</td>\n<td>String</td>\n<td>Author User ID</td>\n</tr>\n<tr>\n<td>profiles_info</td>\n<td>Array</td>\n<td>Array with User Profile Objects</td>\n</tr>\n</tbody>\n</table>\n</div><pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">{\n      \"id\": \"5908718e279871ac0f8b4567\",\n      \"status\": \"passed\",\n      \"users\": [\n        {\n          \"$id\": \"57994468b43401c0360041a8\"\n        },\n        {\n          \"$id\": \"58da7489279871c42d8b456e\"\n        }\n      ],\n      \"sent_at\": \"2017-05-02T11:46:22+0000\",\n      \"processed_at\": null,\n      \"intention\": \"other\",\n      \"personal_message\": \"test\",\n      \"author_id\": \"57994468b43401c0360041a8\",\n      \"profiles_info\": [\n        {\n          \"first_name\": \"Oden\",\n          \"last_name\": \"Marsh\",\n          \"user_id\": \"57994468b43401c0360041a8\",\n          \"premium_flag\": false,\n          \"role\": \"founder\",\n          \"responsiveness\": 0,\n          \"city\": {\n            \"label\": \"Washington, D.C., , US\",\n            \"name\": \"Washington, D.C.\",\n            \"country\": \"United States of America\",\n            \"country_code\": \"US\",\n            \"id\": \"56cc14c588b042411c0bd783\"\n          },\n          \"areas\": [\n            \"product-management\"\n          ],\n          \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar4.jpg\",\n          \"legacy_photo_url\": null,\n          \"avatar\": 4,\n          \"use_avatar\": true,\n          \"url\": \"http://10.50.50.50:8000/profile/washington-dc-online-media-product-manager-founder-oden-marsh-287\",\n          \"headline\": null,\n          \"connection_status\": \"passed\"\n        }\n      ]\n    }\n</code></pre>\n","_postman_id":"cb844e7e-d0bb-4d02-b504-fd0fb9fe7fbe"},{"name":"Conversations","item":[{"name":"List","event":[{"listen":"test","script":{"type":"text/javascript","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","tests[\"Body matches data\"] = responseBody.has(\"data\");","tests[\"Body matches id\"] = responseBody.has(\"id\");","","var jsonData = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"connection_user1_user2\", jsonData.data.id);"]}}],"id":"ce19d98f-3362-44b2-a3b3-896b8f97c813","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"receiver_id","value":"{{user_id_2}}","type":"text"},{"key":"intention","value":"other","type":"text"},{"key":"personal_message","value":"test","type":"text"},{"key":"","value":"","type":"text","disabled":true}]},"url":"{{host}}/api/v2/conversations?status=active&pagination=true&page_size=10&page_skip=2","description":"<p>Gets all the conversations filtered by query parameters for the user</p>\n<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>participant</td>\n<td>string</td>\n<td>false</td>\n<td>Id of second participant</td>\n</tr>\n<tr>\n<td>status</td>\n<td>string</td>\n<td>false</td>\n<td>Conversation status [active, archived]. Default active.</td>\n</tr>\n<tr>\n<td>read</td>\n<td>boolean</td>\n<td>false</td>\n<td>Conversation is read. Default null.</td>\n</tr>\n<tr>\n<td>pagination</td>\n<td>boolean</td>\n<td>false</td>\n<td>Use pagination? Default true</td>\n</tr>\n<tr>\n<td>page</td>\n<td>integer</td>\n<td>false</td>\n<td>Page if use pagination. Default 0</td>\n</tr>\n<tr>\n<td>page_size</td>\n<td>integer</td>\n<td>false</td>\n<td>Page size. Default 10</td>\n</tr>\n<tr>\n<td>page_skip</td>\n<td>integer</td>\n<td>false</td>\n<td>Set the skip for the query cursor. Default false</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\">Response</h2>\n<p>Array of Conversation Object</p>\n","urlObject":{"path":["api","v2","conversations"],"host":["{{host}}"],"query":[{"key":"status","value":"active"},{"key":"pagination","value":"true"},{"key":"page_size","value":"10"},{"key":"page_skip","value":"2"}],"variable":[]}},"response":[{"id":"a9e096df-a25e-45a1-a047-1bfa295a85bd","name":"401: Unauthorized","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[{"key":"receiver_id","value":"{{user_id_2}}","type":"text"},{"key":"intention","value":"other","type":"text"},{"key":"personal_message","value":"test","type":"text"},{"key":"","value":"","type":"text","disabled":true}]},"url":{"raw":"{{host}}/api/v2/connections?access_token={{access_token_1}}&status=passed&author=true&pagination=true","host":["{{host}}"],"path":["api","v2","connections"],"query":[{"key":"access_token","value":"{{access_token_1}}"},{"key":"status","value":"passed"},{"key":"author","value":"true"},{"key":"pagination","value":"true"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"name":"Allow","key":"Allow","value":"GET","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"no-store, private","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json","description":""},{"name":"Date","key":"Date","value":"Thu, 18 May 2017 11:55:28 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.4.6 (Ubuntu)","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"WWW-Authenticate","key":"WWW-Authenticate","value":"Bearer realm=\"Service\", error=\"access_denied\", error_description=\"OAuth2 authentication required\"","description":""},{"name":"X-Debug-Token","key":"X-Debug-Token","value":"067951","description":""},{"name":"X-Debug-Token-Link","key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/067951","description":""}],"cookie":[{"expires":"Sat Jun 03 2017 15:37:29 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"v2","key":"cfl_ab_onboarding"},{"expires":"Wed Jun 07 2017 17:15:03 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"qh4thca8fjji51djn7poi17sb7","key":"PHPSESSID"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":true,"value":"GQtE69lKP5yYoAWhp_CM992Zqzo72iwVVs1d3mt_B0E","key":"XSRF-TOKEN"}],"responseTime":"296","body":"{\"error\":\"access_denied\",\"error_description\":\"OAuth2 authentication required\"}"},{"id":"c67aba3a-70b6-498c-8190-7bff89ae7bf4","name":"200: Ok","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer ZTIzNjUwODJjM2QyNzg3MWNjYTc4MGNjODkxYjBmYmFmMmRlNTMxYmI4MmY4ODQwNmI1YzRkYjY2N2I0NWIxMA"}],"body":{"mode":"formdata","formdata":[{"key":"receiver_id","value":"{{user_id_2}}","type":"text"},{"key":"intention","value":"other","type":"text"},{"key":"personal_message","value":"test","type":"text"},{"key":"","value":"","type":"text","disabled":true}]},"url":{"raw":"{{host}}/api/v2/conversations?status=active&pagination=true&page_size=10&page_skip=2","host":["{{host}}"],"path":["api","v2","conversations"],"query":[{"key":"status","value":"active"},{"key":"pagination","value":"true"},{"key":"page_size","value":"10"},{"key":"page_skip","value":"2"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Allow","key":"Allow","value":"GET","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"no-cache","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json","description":""},{"name":"Date","key":"Date","value":"Wed, 28 Jun 2017 16:24:22 GMT","description":""},{"name":"Server","key":"Server","value":"nginx/1.4.6 (Ubuntu)","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Debug-Token","key":"X-Debug-Token","value":"5f72f3","description":""},{"name":"X-Debug-Token-Link","key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/5f72f3","description":""}],"cookie":[{"expires":"Wed Jun 13 2018 10:29:38 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"PHPSTORM","key":"XDEBUG_SESSION"},{"expires":"Thu Jun 13 2019 16:06:42 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"ebd47827-25ce-4d3e-93d5-f442a724196b","key":"ahoy_visitor"},{"expires":"Thu Jun 13 2019 16:06:44 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"GA1.1.439762883.1497370005","key":"_ga"},{"expires":"Wed Jun 13 2018 16:06:46 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"88b1060_819d3869-8c8e-480f-b382-8a4b6e3b7f8f-6139e386a-66afc2cca253-6cad","key":"__distillery"},{"expires":"Thu Jun 13 2019 16:06:47 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"251003481.9a892c380504e42262198dae416e15f2.1497370007155.1497370007155.1497370007155.1","key":"__hstc"},{"expires":"Fri Jun 11 2027 16:06:47 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"9a892c380504e42262198dae416e15f2","key":"hubspotutk"},{"expires":"Sun Jul 23 2017 07:54:57 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"v4","key":"cfl_ab_onboarding"},{"expires":"Sun Jul 23 2017 08:39:01 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"premium-v4","key":"cfl_ab_premium_onboarding"},{"expires":"Wed Jul 26 2017 10:05:21 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"10egq297k92oqjd5l0d61aurq5","key":"PHPSESSID"},{"expires":"Wed Jul 26 2017 10:05:22 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"home-tagline-simplified","key":"cfl_ab_home"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":true,"value":"zHsmsn0lUi7ujqy0J-wrxSFhSoMUO_5wO_wXgQYkpTU","key":"XSRF-TOKEN"}],"responseTime":"6802","body":"{\n    \"data\": [\n        {\n            \"last_message\": {\n                \"text\": \"test\",\n                \"author\": \"590b4ab927987180078b4569\",\n                \"sent_at\": \"06/26/2017 15:12:07\"\n            },\n            \"message_count\": 3,\n            \"id\": \"59494dd5279871501c8b4571\",\n            \"created_at\": \"06/20/2017 16:31:17\",\n            \"updated_at\": \"06/26/2017 15:12:07\",\n            \"participants\": [\n                {\n                    \"spam\": false,\n                    \"user_id\": \"590b4ab927987180078b4569\",\n                    \"status\": \"active\",\n                    \"profile_info\": {\n                        \"first_name\": \"Test1\",\n                        \"last_name\": \"Test\",\n                        \"user_id\": \"590b4ab927987180078b4569\",\n                        \"role\": \"networker\",\n                        \"responsiveness\": 100,\n                        \"city\": {\n                            \"label\": \"Barcelona, Spain\",\n                            \"name\": \"Barcelona\",\n                            \"country\": \"Spain\",\n                            \"country_code\": \"ES\",\n                            \"id\": \"56cc14c488b042411c0b5a28\"\n                        },\n                        \"areas\": [\n                            \"marketing\"\n                        ],\n                        \"photo\": \"https://s3.amazonaws.com/cofounderslab-testing/profiles/avatars/590b4adb3fe0a.jpeg\",\n                        \"use_avatar\": false,\n                        \"url\": \"http://10.50.50.50:8000/profile/test1-test\",\n                        \"headline\": \"test\",\n                        \"connection_status\": \"accepted\"\n                    },\n                    \"read\": true\n                },\n                {\n                    \"spam\": false,\n                    \"user_id\": \"57994537b43401c036026583\",\n                    \"status\": \"active\",\n                    \"profile_info\": {\n                        \"first_name\": \"Cristian\",\n                        \"last_name\": \"Gonzalez\",\n                        \"user_id\": \"57994537b43401c036026583\",\n                        \"premium_flag\": true,\n                        \"role\": \"founder\",\n                        \"responsiveness\": 20,\n                        \"city\": {\n                            \"label\": \"Barcelona, Spain\",\n                            \"name\": \"Barcelona\",\n                            \"country\": \"Spain\",\n                            \"country_code\": \"ES\",\n                            \"id\": \"56cc14c488b042411c0b5a28\"\n                        },\n                        \"areas\": [\n                            \"engineering\"\n                        ],\n                        \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                        \"legacy_photo_url\": \"https://s3.amazonaws.com/cofounderslab-prod-media/user-71946_1441355485.jpg\",\n                        \"use_avatar\": false,\n                        \"url\": \"http://10.50.50.50:8000/profile/cristian-gonzalez-2\",\n                        \"connection_status\": \"accepted\"\n                    },\n                    \"read\": false\n                }\n            ],\n            \"current_participant\": {\n                \"spam\": false,\n                \"user_id\": \"590b4ab927987180078b4569\",\n                \"status\": \"active\",\n                \"profile_info\": {\n                    \"first_name\": \"Test1\",\n                    \"last_name\": \"Test\",\n                    \"user_id\": \"590b4ab927987180078b4569\",\n                    \"role\": \"networker\",\n                    \"responsiveness\": 100,\n                    \"city\": {\n                        \"label\": \"Barcelona, Spain\",\n                        \"name\": \"Barcelona\",\n                        \"country\": \"Spain\",\n                        \"country_code\": \"ES\",\n                        \"id\": \"56cc14c488b042411c0b5a28\"\n                    },\n                    \"areas\": [\n                        \"marketing\"\n                    ],\n                    \"photo\": \"https://s3.amazonaws.com/cofounderslab-testing/profiles/avatars/590b4adb3fe0a.jpeg\",\n                    \"use_avatar\": false,\n                    \"url\": \"http://10.50.50.50:8000/profile/test1-test\",\n                    \"headline\": \"test\",\n                    \"connection_status\": \"accepted\"\n                },\n                \"read\": true\n            },\n            \"other_participants\": [\n                {\n                    \"spam\": false,\n                    \"user_id\": \"57994537b43401c036026583\",\n                    \"profile_info\": {\n                        \"first_name\": \"Cristian\",\n                        \"last_name\": \"Gonzalez\",\n                        \"user_id\": \"57994537b43401c036026583\",\n                        \"premium_flag\": true,\n                        \"role\": \"founder\",\n                        \"responsiveness\": 20,\n                        \"city\": {\n                            \"label\": \"Barcelona, Spain\",\n                            \"name\": \"Barcelona\",\n                            \"country\": \"Spain\",\n                            \"country_code\": \"ES\",\n                            \"id\": \"56cc14c488b042411c0b5a28\"\n                        },\n                        \"areas\": [\n                            \"engineering\"\n                        ],\n                        \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                        \"legacy_photo_url\": \"https://s3.amazonaws.com/cofounderslab-prod-media/user-71946_1441355485.jpg\",\n                        \"use_avatar\": false,\n                        \"url\": \"http://10.50.50.50:8000/profile/cristian-gonzalez-2\",\n                        \"connection_status\": \"accepted\"\n                    },\n                    \"read\": false\n                }\n            ],\n            \"current_participant_credits\": 0,\n            \"unread_messages\": 0,\n            \"can_be_mark_as_spammer\": false\n        },\n        {\n            \"last_message\": {\n                \"text\": \"wrwraerear\",\n                \"author\": \"590b4ab927987180078b4569\",\n                \"sent_at\": \"06/20/2017 16:31:08\"\n            },\n            \"message_count\": 1,\n            \"id\": \"59494dcc279871501c8b456c\",\n            \"created_at\": \"06/20/2017 16:31:08\",\n            \"updated_at\": \"06/20/2017 16:31:08\",\n            \"participants\": [\n                {\n                    \"spam\": false,\n                    \"user_id\": \"590b4ab927987180078b4569\",\n                    \"status\": \"active\",\n                    \"profile_info\": {\n                        \"first_name\": \"Test1\",\n                        \"last_name\": \"Test\",\n                        \"user_id\": \"590b4ab927987180078b4569\",\n                        \"role\": \"networker\",\n                        \"responsiveness\": 100,\n                        \"city\": {\n                            \"label\": \"Barcelona, Spain\",\n                            \"name\": \"Barcelona\",\n                            \"country\": \"Spain\",\n                            \"country_code\": \"ES\",\n                            \"id\": \"56cc14c488b042411c0b5a28\"\n                        },\n                        \"areas\": [\n                            \"marketing\"\n                        ],\n                        \"photo\": \"https://s3.amazonaws.com/cofounderslab-testing/profiles/avatars/590b4adb3fe0a.jpeg\",\n                        \"use_avatar\": false,\n                        \"url\": \"http://10.50.50.50:8000/profile/test1-test\",\n                        \"headline\": \"test\",\n                        \"connection_status\": \"accepted\"\n                    },\n                    \"read\": true\n                },\n                {\n                    \"spam\": false,\n                    \"user_id\": \"58b533c64b161cae5e6dd097\",\n                    \"status\": \"active\",\n                    \"profile_info\": {\n                        \"first_name\": \"Q\",\n                        \"last_name\": \"DeRHINO\",\n                        \"user_id\": \"58b533c64b161cae5e6dd097\",\n                        \"role\": \"founder\",\n                        \"responsiveness\": 100,\n                        \"city\": {\n                            \"label\": \"Barcelona, Spain\",\n                            \"name\": \"Barcelona\",\n                            \"country\": \"Spain\",\n                            \"country_code\": \"ES\",\n                            \"id\": \"56cc14c488b042411c0b5a28\"\n                        },\n                        \"areas\": [\n                            \"business-development\",\n                            \"sales\"\n                        ],\n                        \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                        \"use_avatar\": false,\n                        \"url\": \"http://10.50.50.50:8000/profile/q-derhino\",\n                        \"headline\": \"Artist Author and Visionary CEO of Yes-Wow Ibiza\",\n                        \"connection_status\": \"accepted\"\n                    },\n                    \"read\": false\n                }\n            ],\n            \"current_participant\": {\n                \"spam\": false,\n                \"user_id\": \"590b4ab927987180078b4569\",\n                \"status\": \"active\",\n                \"profile_info\": {\n                    \"first_name\": \"Test1\",\n                    \"last_name\": \"Test\",\n                    \"user_id\": \"590b4ab927987180078b4569\",\n                    \"role\": \"networker\",\n                    \"responsiveness\": 100,\n                    \"city\": {\n                        \"label\": \"Barcelona, Spain\",\n                        \"name\": \"Barcelona\",\n                        \"country\": \"Spain\",\n                        \"country_code\": \"ES\",\n                        \"id\": \"56cc14c488b042411c0b5a28\"\n                    },\n                    \"areas\": [\n                        \"marketing\"\n                    ],\n                    \"photo\": \"https://s3.amazonaws.com/cofounderslab-testing/profiles/avatars/590b4adb3fe0a.jpeg\",\n                    \"use_avatar\": false,\n                    \"url\": \"http://10.50.50.50:8000/profile/test1-test\",\n                    \"headline\": \"test\",\n                    \"connection_status\": \"accepted\"\n                },\n                \"read\": true\n            },\n            \"other_participants\": {\n                \"1\": {\n                    \"spam\": false,\n                    \"user_id\": \"58b533c64b161cae5e6dd097\",\n                    \"profile_info\": {\n                        \"first_name\": \"Q\",\n                        \"last_name\": \"DeRHINO\",\n                        \"user_id\": \"58b533c64b161cae5e6dd097\",\n                        \"role\": \"founder\",\n                        \"responsiveness\": 100,\n                        \"city\": {\n                            \"label\": \"Barcelona, Spain\",\n                            \"name\": \"Barcelona\",\n                            \"country\": \"Spain\",\n                            \"country_code\": \"ES\",\n                            \"id\": \"56cc14c488b042411c0b5a28\"\n                        },\n                        \"areas\": [\n                            \"business-development\",\n                            \"sales\"\n                        ],\n                        \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                        \"use_avatar\": false,\n                        \"url\": \"http://10.50.50.50:8000/profile/q-derhino\",\n                        \"headline\": \"Artist Author and Visionary CEO of Yes-Wow Ibiza\",\n                        \"connection_status\": \"accepted\"\n                    },\n                    \"read\": false\n                }\n            },\n            \"current_participant_credits\": 0,\n            \"unread_messages\": 0,\n            \"can_be_mark_as_spammer\": false\n        },\n        {\n            \"last_message\": {\n                \"text\": \"test\",\n                \"author\": \"590b4ab927987180078b4569\",\n                \"sent_at\": \"06/20/2017 16:31:00\"\n            },\n            \"message_count\": 1,\n            \"id\": \"59494dc4279871501c8b4567\",\n            \"created_at\": \"06/20/2017 16:31:00\",\n            \"updated_at\": \"06/20/2017 16:31:00\",\n            \"participants\": [\n                {\n                    \"spam\": false,\n                    \"user_id\": \"590b4ab927987180078b4569\",\n                    \"status\": \"active\",\n                    \"profile_info\": {\n                        \"first_name\": \"Test1\",\n                        \"last_name\": \"Test\",\n                        \"user_id\": \"590b4ab927987180078b4569\",\n                        \"role\": \"networker\",\n                        \"city\": {\n                            \"label\": \"Barcelona, Spain\",\n                            \"name\": \"Barcelona\",\n                            \"country\": \"Spain\",\n                            \"country_code\": \"ES\",\n                            \"id\": \"56cc14c488b042411c0b5a28\"\n                        },\n                        \"areas\": [\n                            \"marketing\"\n                        ],\n                        \"photo\": \"https://s3.amazonaws.com/cofounderslab-testing/profiles/avatars/590b4adb3fe0a.jpeg\",\n                        \"use_avatar\": false,\n                        \"url\": \"http://10.50.50.50:8000/profile/test1-test\",\n                        \"headline\": \"test\",\n                        \"connection_status\": \"accepted\"\n                    },\n                    \"read\": true\n                },\n                {\n                    \"spam\": false,\n                    \"user_id\": \"57994573b43401c03602a780\",\n                    \"status\": \"active\",\n                    \"profile_info\": {\n                        \"first_name\": \"Victor\",\n                        \"last_name\": \"Herrero\",\n                        \"user_id\": \"57994573b43401c03602a780\",\n                        \"premium_flag\": false,\n                        \"role\": \"founder\",\n                        \"responsiveness\": 0,\n                        \"city\": {\n                            \"label\": \"Barcelona, Spain\",\n                            \"name\": \"Barcelona\",\n                            \"country\": \"Spain\",\n                            \"country_code\": \"ES\",\n                            \"id\": \"56cc14c488b042411c0b5a28\"\n                        },\n                        \"areas\": [\n                            \"engineering\",\n                            \"business-development\"\n                        ],\n                        \"photo\": \"https://s3.amazonaws.com/cofounderslab-prod-media/user-91212_1469435893.jpg\",\n                        \"legacy_photo_url\": \"https://s3.amazonaws.com/cofounderslab-prod-media/user-91212_1469435893.jpg\",\n                        \"use_avatar\": false,\n                        \"url\": \"http://10.50.50.50:8000/profile/victor-herrero\",\n                        \"connection_status\": \"accepted\"\n                    },\n                    \"read\": false\n                }\n            ],\n            \"current_participant\": {\n                \"spam\": false,\n                \"user_id\": \"590b4ab927987180078b4569\",\n                \"status\": \"active\",\n                \"profile_info\": {\n                    \"first_name\": \"Test1\",\n                    \"last_name\": \"Test\",\n                    \"user_id\": \"590b4ab927987180078b4569\",\n                    \"role\": \"networker\",\n                    \"city\": {\n                        \"label\": \"Barcelona, Spain\",\n                        \"name\": \"Barcelona\",\n                        \"country\": \"Spain\",\n                        \"country_code\": \"ES\",\n                        \"id\": \"56cc14c488b042411c0b5a28\"\n                    },\n                    \"areas\": [\n                        \"marketing\"\n                    ],\n                    \"photo\": \"https://s3.amazonaws.com/cofounderslab-testing/profiles/avatars/590b4adb3fe0a.jpeg\",\n                    \"use_avatar\": false,\n                    \"url\": \"http://10.50.50.50:8000/profile/test1-test\",\n                    \"headline\": \"test\",\n                    \"connection_status\": \"accepted\"\n                },\n                \"read\": true\n            },\n            \"other_participants\": {\n                \"1\": {\n                    \"spam\": false,\n                    \"user_id\": \"57994573b43401c03602a780\",\n                    \"profile_info\": {\n                        \"first_name\": \"Victor\",\n                        \"last_name\": \"Herrero\",\n                        \"user_id\": \"57994573b43401c03602a780\",\n                        \"premium_flag\": false,\n                        \"role\": \"founder\",\n                        \"responsiveness\": 0,\n                        \"city\": {\n                            \"label\": \"Barcelona, Spain\",\n                            \"name\": \"Barcelona\",\n                            \"country\": \"Spain\",\n                            \"country_code\": \"ES\",\n                            \"id\": \"56cc14c488b042411c0b5a28\"\n                        },\n                        \"areas\": [\n                            \"engineering\",\n                            \"business-development\"\n                        ],\n                        \"photo\": \"https://s3.amazonaws.com/cofounderslab-prod-media/user-91212_1469435893.jpg\",\n                        \"legacy_photo_url\": \"https://s3.amazonaws.com/cofounderslab-prod-media/user-91212_1469435893.jpg\",\n                        \"use_avatar\": false,\n                        \"url\": \"http://10.50.50.50:8000/profile/victor-herrero\",\n                        \"connection_status\": \"accepted\"\n                    },\n                    \"read\": false\n                }\n            },\n            \"current_participant_credits\": 0,\n            \"unread_messages\": 0,\n            \"can_be_mark_as_spammer\": false\n        }\n    ],\n    \"meta\": {\n        \"page\": 0,\n        \"page_size\": \"10\",\n        \"result_count\": 3,\n        \"page_last\": 0,\n        \"order_by\": {\n            \"updatedAt\": \"DESC\"\n        }\n    }\n}"}],"_postman_id":"ce19d98f-3362-44b2-a3b3-896b8f97c813"},{"name":"Get","event":[{"listen":"test","script":{"type":"text/javascript","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","tests[\"Body matches data\"] = responseBody.has(\"data\");","tests[\"Body matches id\"] = responseBody.has(\"id\");","","var jsonData = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"connection_user1_user2\", jsonData.data.id);"]}}],"id":"b42f3346-e13b-4711-beb6-8535d5c52ed5","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token_1}}"}],"body":{"mode":"formdata","formdata":[{"key":"receiver_id","value":"{{user_id_2}}","type":"text"},{"key":"intention","value":"other","type":"text"},{"key":"personal_message","value":"test","type":"text"},{"key":"","value":"","type":"text","disabled":true}]},"url":"{{host}}/api/v2/conversations/{{conversation_id}}","description":"<p>Gets all the data from a conversation.Checks that the user asking for the info is a participant in the conversation.</p>\n<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>conversationId</td>\n<td>string</td>\n<td>false</td>\n<td>Id of conversation</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\">Response</h2>\n<p>Array of Conversation Object</p>\n","urlObject":{"path":["api","v2","conversations","{{conversation_id}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"15b56fca-ee53-48a1-a29d-db8daeac1754","name":"200: Ok","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer ZTIzNjUwODJjM2QyNzg3MWNjYTc4MGNjODkxYjBmYmFmMmRlNTMxYmI4MmY4ODQwNmI1YzRkYjY2N2I0NWIxMA"}],"body":{"mode":"formdata","formdata":[{"key":"receiver_id","value":"{{user_id_2}}","type":"text"},{"key":"intention","value":"other","type":"text"},{"key":"personal_message","value":"test","type":"text"},{"key":"","value":"","type":"text","disabled":true}]},"url":"{{host}}/api/v2/conversations/59494dd5279871501c8b4571"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Allow","key":"Allow","value":"GET","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"no-cache","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json","description":""},{"name":"Date","key":"Date","value":"Wed, 28 Jun 2017 16:25:44 GMT","description":""},{"name":"Server","key":"Server","value":"nginx/1.4.6 (Ubuntu)","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Debug-Token","key":"X-Debug-Token","value":"3cb044","description":""},{"name":"X-Debug-Token-Link","key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/3cb044","description":""}],"cookie":[{"expires":"Wed Jun 13 2018 10:29:38 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"PHPSTORM","key":"XDEBUG_SESSION"},{"expires":"Thu Jun 13 2019 16:06:42 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"ebd47827-25ce-4d3e-93d5-f442a724196b","key":"ahoy_visitor"},{"expires":"Thu Jun 13 2019 16:06:44 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"GA1.1.439762883.1497370005","key":"_ga"},{"expires":"Wed Jun 13 2018 16:06:46 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"88b1060_819d3869-8c8e-480f-b382-8a4b6e3b7f8f-6139e386a-66afc2cca253-6cad","key":"__distillery"},{"expires":"Thu Jun 13 2019 16:06:47 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"251003481.9a892c380504e42262198dae416e15f2.1497370007155.1497370007155.1497370007155.1","key":"__hstc"},{"expires":"Fri Jun 11 2027 16:06:47 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"9a892c380504e42262198dae416e15f2","key":"hubspotutk"},{"expires":"Sun Jul 23 2017 07:54:57 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"v4","key":"cfl_ab_onboarding"},{"expires":"Sun Jul 23 2017 08:39:01 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"premium-v4","key":"cfl_ab_premium_onboarding"},{"expires":"Wed Jul 26 2017 10:05:21 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"10egq297k92oqjd5l0d61aurq5","key":"PHPSESSID"},{"expires":"Wed Jul 26 2017 10:05:22 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"home-tagline-simplified","key":"cfl_ab_home"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":true,"value":"zHsmsn0lUi7ujqy0J-wrxSFhSoMUO_5wO_wXgQYkpTU","key":"XSRF-TOKEN"}],"responseTime":"13582","body":"{\n    \"data\": {\n        \"59494dd5279871501c8b4571\": {\n            \"last_message\": {\n                \"author\": \"590b4ab927987180078b4569\",\n                \"text\": \"test\",\n                \"sent_at\": \"06/26/2017 15:12:07\"\n            },\n            \"message_count\": 3,\n            \"id\": \"59494dd5279871501c8b4571\",\n            \"created_at\": \"06/20/2017 16:31:17\",\n            \"updated_at\": \"06/26/2017 15:12:07\",\n            \"participants\": [\n                {\n                    \"spam\": false,\n                    \"user_id\": \"590b4ab927987180078b4569\",\n                    \"status\": \"active\",\n                    \"profile_info\": {\n                        \"first_name\": \"Test1\",\n                        \"last_name\": \"Test\",\n                        \"user_id\": \"590b4ab927987180078b4569\",\n                        \"role\": \"networker\",\n                        \"responsiveness\": 100,\n                        \"city\": {\n                            \"label\": \"Barcelona, Spain\",\n                            \"name\": \"Barcelona\",\n                            \"country\": \"Spain\",\n                            \"country_code\": \"ES\",\n                            \"coordinates\": {\n                                \"latitude\": 41.3888,\n                                \"longitude\": 2.15899\n                            },\n                            \"id\": \"56cc14c488b042411c0b5a28\"\n                        },\n                        \"areas\": [\n                            \"marketing\"\n                        ],\n                        \"photo\": \"https://s3.amazonaws.com/cofounderslab-testing/profiles/avatars/590b4adb3fe0a.jpeg\",\n                        \"use_avatar\": false,\n                        \"url\": \"http://10.50.50.50:8000/profile/test1-test\",\n                        \"headline\": \"test\",\n                        \"connection_status\": \"accepted\"\n                    },\n                    \"read\": true\n                },\n                {\n                    \"spam\": false,\n                    \"user_id\": \"57994537b43401c036026583\",\n                    \"status\": \"active\",\n                    \"profile_info\": {\n                        \"first_name\": \"Cristian\",\n                        \"last_name\": \"Gonzalez\",\n                        \"user_id\": \"57994537b43401c036026583\",\n                        \"premium_flag\": true,\n                        \"role\": \"founder\",\n                        \"responsiveness\": 20,\n                        \"city\": {\n                            \"label\": \"Barcelona, Spain\",\n                            \"name\": \"Barcelona\",\n                            \"country\": \"Spain\",\n                            \"country_code\": \"ES\",\n                            \"coordinates\": {\n                                \"latitude\": 41.3888,\n                                \"longitude\": 2.15899\n                            },\n                            \"id\": \"56cc14c488b042411c0b5a28\"\n                        },\n                        \"areas\": [\n                            \"engineering\"\n                        ],\n                        \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                        \"legacy_photo_url\": \"https://s3.amazonaws.com/cofounderslab-prod-media/user-71946_1441355485.jpg\",\n                        \"use_avatar\": false,\n                        \"url\": \"http://10.50.50.50:8000/profile/cristian-gonzalez-2\",\n                        \"connection_status\": \"accepted\"\n                    },\n                    \"read\": false\n                }\n            ],\n            \"messages\": [\n                {\n                    \"author\": \"590b4ab927987180078b4569\",\n                    \"text\": \"wrgwgera ff dfsdfff d\",\n                    \"sent_at\": \"06/20/2017 16:31:17\"\n                },\n                {\n                    \"author\": \"590b4ab927987180078b4569\",\n                    \"text\": \"test\",\n                    \"sent_at\": \"06/26/2017 15:11:30\"\n                },\n                {\n                    \"author\": \"590b4ab927987180078b4569\",\n                    \"text\": \"test\",\n                    \"sent_at\": \"06/26/2017 15:12:07\"\n                }\n            ],\n            \"current_participant\": {\n                \"spam\": false,\n                \"user_id\": \"590b4ab927987180078b4569\",\n                \"status\": \"active\",\n                \"profile_info\": {\n                    \"first_name\": \"Test1\",\n                    \"last_name\": \"Test\",\n                    \"user_id\": \"590b4ab927987180078b4569\",\n                    \"role\": \"networker\",\n                    \"responsiveness\": 100,\n                    \"city\": {\n                        \"label\": \"Barcelona, Spain\",\n                        \"name\": \"Barcelona\",\n                        \"country\": \"Spain\",\n                        \"country_code\": \"ES\",\n                        \"coordinates\": {\n                            \"latitude\": 41.3888,\n                            \"longitude\": 2.15899\n                        },\n                        \"id\": \"56cc14c488b042411c0b5a28\"\n                    },\n                    \"areas\": [\n                        \"marketing\"\n                    ],\n                    \"photo\": \"https://s3.amazonaws.com/cofounderslab-testing/profiles/avatars/590b4adb3fe0a.jpeg\",\n                    \"use_avatar\": false,\n                    \"url\": \"http://10.50.50.50:8000/profile/test1-test\",\n                    \"headline\": \"test\",\n                    \"connection_status\": \"accepted\"\n                },\n                \"read\": true\n            },\n            \"other_participants\": [\n                {\n                    \"spam\": false,\n                    \"user_id\": \"57994537b43401c036026583\",\n                    \"profile_info\": {\n                        \"first_name\": \"Cristian\",\n                        \"last_name\": \"Gonzalez\",\n                        \"user_id\": \"57994537b43401c036026583\",\n                        \"premium_flag\": true,\n                        \"role\": \"founder\",\n                        \"responsiveness\": 20,\n                        \"city\": {\n                            \"label\": \"Barcelona, Spain\",\n                            \"name\": \"Barcelona\",\n                            \"country\": \"Spain\",\n                            \"country_code\": \"ES\",\n                            \"coordinates\": {\n                                \"latitude\": 41.3888,\n                                \"longitude\": 2.15899\n                            },\n                            \"id\": \"56cc14c488b042411c0b5a28\"\n                        },\n                        \"areas\": [\n                            \"engineering\"\n                        ],\n                        \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                        \"legacy_photo_url\": \"https://s3.amazonaws.com/cofounderslab-prod-media/user-71946_1441355485.jpg\",\n                        \"use_avatar\": false,\n                        \"url\": \"http://10.50.50.50:8000/profile/cristian-gonzalez-2\",\n                        \"connection_status\": \"accepted\"\n                    },\n                    \"read\": false\n                }\n            ],\n            \"current_participant_credits\": 0,\n            \"unread_messages\": 0,\n            \"can_be_mark_as_spammer\": false\n        }\n    },\n    \"errors\": []\n}"}],"_postman_id":"b42f3346-e13b-4711-beb6-8535d5c52ed5"},{"name":"Send","event":[{"listen":"test","script":{"type":"text/javascript","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","tests[\"Body matches data\"] = responseBody.has(\"data\");","tests[\"Body matches id\"] = responseBody.has(\"id\");","","var jsonData = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"connection_user1_user2\", jsonData.data.id);"]}}],"id":"2d734fe0-16b3-4649-9eff-87d492c9c179","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token_1}}"}],"body":{"mode":"formdata","formdata":[{"key":"message","value":"test","type":"text"},{"key":"","value":"","type":"text","disabled":true}]},"url":"{{host}}/api/v2/conversations/{{user_id}}","description":"<p>Send a message to another user</p>\n<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>user_id</td>\n<td>string</td>\n<td>true</td>\n<td>User destination Id</td>\n</tr>\n<tr>\n<td>message</td>\n<td>string</td>\n<td>true</td>\n<td>Message text</td>\n</tr>\n<tr>\n<td>photo</td>\n<td>file</td>\n<td>false</td>\n<td>Photo file</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\">Response</h2>\n<p>Array of Conversation Object</p>\n","urlObject":{"path":["api","v2","conversations","{{user_id}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"2cfafd68-ade8-4545-a0a7-43eb5f2d65aa","name":"200: Ok","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer ZjU5YWNjZDRjYjczZmFmZDcwNDQwZWQ2MTIzYzBjOTQ5MTE5NDU0YjhkYzQyYjg0MmIxNzM2MjM4NTU3NjZhMg"}],"body":{"mode":"formdata","formdata":[{"key":"message","value":"test","type":"text"},{"key":"","value":"","type":"text","disabled":true}]},"url":"{{host}}/api/v2/conversations/57994537b43401c036026583"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Allow","key":"Allow","value":"POST","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"no-cache","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json","description":""},{"name":"Date","key":"Date","value":"Mon, 26 Jun 2017 15:12:08 GMT","description":""},{"name":"Server","key":"Server","value":"nginx/1.4.6 (Ubuntu)","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Debug-Token","key":"X-Debug-Token","value":"f294f1","description":""},{"name":"X-Debug-Token-Link","key":"X-Debug-Token-Link","value":"http://localhost:8000/_profiler/f294f1","description":""}],"cookie":[{"expires":"Wed Jun 13 2018 10:29:38 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"PHPSTORM","key":"XDEBUG_SESSION"},{"expires":"Thu Jun 13 2019 16:06:42 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"ebd47827-25ce-4d3e-93d5-f442a724196b","key":"ahoy_visitor"},{"expires":"Thu Jun 13 2019 16:06:44 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"GA1.1.439762883.1497370005","key":"_ga"},{"expires":"Wed Jun 13 2018 16:06:46 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"88b1060_819d3869-8c8e-480f-b382-8a4b6e3b7f8f-6139e386a-66afc2cca253-6cad","key":"__distillery"},{"expires":"Thu Jun 13 2019 16:06:47 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"251003481.9a892c380504e42262198dae416e15f2.1497370007155.1497370007155.1497370007155.1","key":"__hstc"},{"expires":"Fri Jun 11 2027 16:06:47 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"9a892c380504e42262198dae416e15f2","key":"hubspotutk"},{"expires":"Sun Jul 23 2017 07:54:57 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"v4","key":"cfl_ab_onboarding"},{"expires":"Sun Jul 23 2017 08:39:01 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"premium-v4","key":"cfl_ab_premium_onboarding"},{"expires":"Wed Jul 26 2017 10:05:21 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"10egq297k92oqjd5l0d61aurq5","key":"PHPSESSID"},{"expires":"Wed Jul 26 2017 10:05:22 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"home-tagline-simplified","key":"cfl_ab_home"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":true,"value":"zHsmsn0lUi7ujqy0J-wrxSFhSoMUO_5wO_wXgQYkpTU","key":"XSRF-TOKEN"}],"responseTime":"2287","body":"{\n    \"data\": {\n        \"59494dd5279871501c8b4571\": {\n            \"last_message\": {\n                \"author\": \"590b4ab927987180078b4569\",\n                \"text\": \"test\",\n                \"sent_at\": \"06/26/2017 15:12:07\"\n            },\n            \"message_count\": 3,\n            \"id\": \"59494dd5279871501c8b4571\",\n            \"created_at\": \"06/20/2017 16:31:17\",\n            \"updated_at\": \"06/26/2017 15:12:07\",\n            \"participants\": [\n                {\n                    \"spam\": false,\n                    \"user_id\": \"590b4ab927987180078b4569\",\n                    \"status\": \"active\",\n                    \"profile_info\": {\n                        \"first_name\": \"Test1\",\n                        \"last_name\": \"Test\",\n                        \"user_id\": \"590b4ab927987180078b4569\",\n                        \"role\": \"networker\",\n                        \"responsiveness\": 100,\n                        \"city\": {\n                            \"label\": \"Barcelona, Spain\",\n                            \"name\": \"Barcelona\",\n                            \"country\": \"Spain\",\n                            \"country_code\": \"ES\",\n                            \"coordinates\": {\n                                \"latitude\": 41.3888,\n                                \"longitude\": 2.15899\n                            },\n                            \"id\": \"56cc14c488b042411c0b5a28\"\n                        },\n                        \"areas\": [\n                            \"marketing\"\n                        ],\n                        \"photo\": \"https://s3.amazonaws.com/cofounderslab-testing/profiles/avatars/590b4adb3fe0a.jpeg\",\n                        \"use_avatar\": false,\n                        \"url\": \"http://10.50.50.50:8000/profile/test1-test\",\n                        \"headline\": \"test\",\n                        \"connection_status\": \"accepted\"\n                    },\n                    \"read\": true\n                },\n                {\n                    \"spam\": false,\n                    \"user_id\": \"57994537b43401c036026583\",\n                    \"status\": \"active\",\n                    \"profile_info\": {\n                        \"first_name\": \"Cristian\",\n                        \"last_name\": \"Gonzalez\",\n                        \"user_id\": \"57994537b43401c036026583\",\n                        \"premium_flag\": true,\n                        \"role\": \"founder\",\n                        \"responsiveness\": 20,\n                        \"city\": {\n                            \"label\": \"Barcelona, Spain\",\n                            \"name\": \"Barcelona\",\n                            \"country\": \"Spain\",\n                            \"country_code\": \"ES\",\n                            \"coordinates\": {\n                                \"latitude\": 41.3888,\n                                \"longitude\": 2.15899\n                            },\n                            \"id\": \"56cc14c488b042411c0b5a28\"\n                        },\n                        \"areas\": [\n                            \"engineering\"\n                        ],\n                        \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                        \"legacy_photo_url\": \"https://s3.amazonaws.com/cofounderslab-prod-media/user-71946_1441355485.jpg\",\n                        \"use_avatar\": false,\n                        \"url\": \"http://10.50.50.50:8000/profile/cristian-gonzalez-2\",\n                        \"connection_status\": \"accepted\"\n                    },\n                    \"read\": false\n                }\n            ],\n            \"messages\": [\n                {\n                    \"author\": \"590b4ab927987180078b4569\",\n                    \"text\": \"wrgwgera ff dfsdfff d\",\n                    \"sent_at\": \"06/20/2017 16:31:17\"\n                },\n                {\n                    \"author\": \"590b4ab927987180078b4569\",\n                    \"text\": \"test\",\n                    \"sent_at\": \"06/26/2017 15:11:30\"\n                },\n                {\n                    \"author\": \"590b4ab927987180078b4569\",\n                    \"text\": \"test\",\n                    \"sent_at\": \"06/26/2017 15:12:07\"\n                }\n            ],\n            \"current_participant\": {\n                \"spam\": false,\n                \"user_id\": \"590b4ab927987180078b4569\",\n                \"status\": \"active\",\n                \"profile_info\": {\n                    \"first_name\": \"Test1\",\n                    \"last_name\": \"Test\",\n                    \"user_id\": \"590b4ab927987180078b4569\",\n                    \"role\": \"networker\",\n                    \"responsiveness\": 100,\n                    \"city\": {\n                        \"label\": \"Barcelona, Spain\",\n                        \"name\": \"Barcelona\",\n                        \"country\": \"Spain\",\n                        \"country_code\": \"ES\",\n                        \"coordinates\": {\n                            \"latitude\": 41.3888,\n                            \"longitude\": 2.15899\n                        },\n                        \"id\": \"56cc14c488b042411c0b5a28\"\n                    },\n                    \"areas\": [\n                        \"marketing\"\n                    ],\n                    \"photo\": \"https://s3.amazonaws.com/cofounderslab-testing/profiles/avatars/590b4adb3fe0a.jpeg\",\n                    \"use_avatar\": false,\n                    \"url\": \"http://10.50.50.50:8000/profile/test1-test\",\n                    \"headline\": \"test\",\n                    \"connection_status\": \"accepted\"\n                },\n                \"read\": true\n            },\n            \"other_participants\": [\n                {\n                    \"spam\": false,\n                    \"user_id\": \"57994537b43401c036026583\",\n                    \"profile_info\": {\n                        \"first_name\": \"Cristian\",\n                        \"last_name\": \"Gonzalez\",\n                        \"user_id\": \"57994537b43401c036026583\",\n                        \"premium_flag\": true,\n                        \"role\": \"founder\",\n                        \"responsiveness\": 20,\n                        \"city\": {\n                            \"label\": \"Barcelona, Spain\",\n                            \"name\": \"Barcelona\",\n                            \"country\": \"Spain\",\n                            \"country_code\": \"ES\",\n                            \"coordinates\": {\n                                \"latitude\": 41.3888,\n                                \"longitude\": 2.15899\n                            },\n                            \"id\": \"56cc14c488b042411c0b5a28\"\n                        },\n                        \"areas\": [\n                            \"engineering\"\n                        ],\n                        \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                        \"legacy_photo_url\": \"https://s3.amazonaws.com/cofounderslab-prod-media/user-71946_1441355485.jpg\",\n                        \"use_avatar\": false,\n                        \"url\": \"http://10.50.50.50:8000/profile/cristian-gonzalez-2\",\n                        \"connection_status\": \"accepted\"\n                    },\n                    \"read\": false\n                }\n            ],\n            \"current_participant_credits\": 0,\n            \"unread_messages\": 0,\n            \"can_be_mark_as_spammer\": false\n        }\n    },\n    \"errors\": []\n}"},{"id":"6c2c1074-531e-4b86-8b10-b4447125d5de","name":"400: Bad Request","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token_1}}"}],"body":{"mode":"formdata","formdata":[{"key":"message","value":"test","type":"text"},{"key":"","value":"","type":"text","disabled":true}]},"url":"{{host}}/api/v2/conversations/57994537b43401c036026583"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"name":"Allow","key":"Allow","value":"POST","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"no-cache","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json","description":""},{"name":"Date","key":"Date","value":"Mon, 26 Jun 2017 15:13:14 GMT","description":""},{"name":"Server","key":"Server","value":"nginx/1.4.6 (Ubuntu)","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Debug-Token","key":"X-Debug-Token","value":"0890ca","description":""},{"name":"X-Debug-Token-Link","key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/0890ca","description":""}],"cookie":[{"expires":"Wed Jun 13 2018 10:29:38 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"PHPSTORM","key":"XDEBUG_SESSION"},{"expires":"Thu Jun 13 2019 16:06:42 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"ebd47827-25ce-4d3e-93d5-f442a724196b","key":"ahoy_visitor"},{"expires":"Thu Jun 13 2019 16:06:44 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"GA1.1.439762883.1497370005","key":"_ga"},{"expires":"Wed Jun 13 2018 16:06:46 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"88b1060_819d3869-8c8e-480f-b382-8a4b6e3b7f8f-6139e386a-66afc2cca253-6cad","key":"__distillery"},{"expires":"Thu Jun 13 2019 16:06:47 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"251003481.9a892c380504e42262198dae416e15f2.1497370007155.1497370007155.1497370007155.1","key":"__hstc"},{"expires":"Fri Jun 11 2027 16:06:47 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"9a892c380504e42262198dae416e15f2","key":"hubspotutk"},{"expires":"Sun Jul 23 2017 07:54:57 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"v4","key":"cfl_ab_onboarding"},{"expires":"Sun Jul 23 2017 08:39:01 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"premium-v4","key":"cfl_ab_premium_onboarding"},{"expires":"Wed Jul 26 2017 10:05:21 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"10egq297k92oqjd5l0d61aurq5","key":"PHPSESSID"},{"expires":"Wed Jul 26 2017 10:05:22 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"home-tagline-simplified","key":"cfl_ab_home"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":true,"value":"zHsmsn0lUi7ujqy0J-wrxSFhSoMUO_5wO_wXgQYkpTU","key":"XSRF-TOKEN"}],"responseTime":"1361","body":"{\"data\":[],\"errors\":[{\"receiverId\":{\"code\":1104,\"constraint\":\"Regex\"}},{\"receiverId\":{\"code\":2103,\"constraint\":\"ExistingIdConstraint\"}}]}"}],"_postman_id":"2d734fe0-16b3-4649-9eff-87d492c9c179"},{"name":"Read","event":[{"listen":"test","script":{"type":"text/javascript","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","tests[\"Body matches data\"] = responseBody.has(\"data\");","tests[\"Body matches id\"] = responseBody.has(\"id\");","","var jsonData = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"connection_user1_user2\", jsonData.data.id);"]}}],"id":"f627a80d-f860-4539-905f-48a3673f7e3c","request":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"receiver_id","value":"{{user_id_2}}","type":"text"},{"key":"intention","value":"other","type":"text"},{"key":"personal_message","value":"test","type":"text"},{"key":"","value":"","type":"text","disabled":true}]},"url":"{{host}}/api/v2/conversations/{{conversationId}}/read","description":"<p>Marks a conversation as read by the user</p>\n<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>conversationId</td>\n<td>string</td>\n<td>false</td>\n<td>Id of conversation</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\">Response</h2>\n<p>Array of Conversation Object</p>\n","urlObject":{"path":["api","v2","conversations","{{conversationId}}","read"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"83a8c08c-6b2f-4bb0-9d4b-7c217a321c69","name":"200: Ok","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"receiver_id","value":"{{user_id_2}}","type":"text"},{"key":"intention","value":"other","type":"text"},{"key":"personal_message","value":"test","type":"text"},{"key":"","value":"","type":"text","disabled":true}]},"url":"{{host}}/api/v2/conversations/{{conversation_id}}/read"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Allow","key":"Allow","value":"PATCH","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"no-cache","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json","description":""},{"name":"Date","key":"Date","value":"Mon, 26 Jun 2017 15:34:39 GMT","description":""},{"name":"Server","key":"Server","value":"nginx/1.4.6 (Ubuntu)","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Debug-Token","key":"X-Debug-Token","value":"d2d6c4","description":""},{"name":"X-Debug-Token-Link","key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/d2d6c4","description":""}],"cookie":[{"expires":"Wed Jun 13 2018 10:29:38 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"PHPSTORM","key":"XDEBUG_SESSION"},{"expires":"Thu Jun 13 2019 16:06:42 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"ebd47827-25ce-4d3e-93d5-f442a724196b","key":"ahoy_visitor"},{"expires":"Thu Jun 13 2019 16:06:44 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"GA1.1.439762883.1497370005","key":"_ga"},{"expires":"Wed Jun 13 2018 16:06:46 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"88b1060_819d3869-8c8e-480f-b382-8a4b6e3b7f8f-6139e386a-66afc2cca253-6cad","key":"__distillery"},{"expires":"Thu Jun 13 2019 16:06:47 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"251003481.9a892c380504e42262198dae416e15f2.1497370007155.1497370007155.1497370007155.1","key":"__hstc"},{"expires":"Fri Jun 11 2027 16:06:47 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"9a892c380504e42262198dae416e15f2","key":"hubspotutk"},{"expires":"Sun Jul 23 2017 07:54:57 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"v4","key":"cfl_ab_onboarding"},{"expires":"Sun Jul 23 2017 08:39:01 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"premium-v4","key":"cfl_ab_premium_onboarding"},{"expires":"Wed Jul 26 2017 10:05:21 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"10egq297k92oqjd5l0d61aurq5","key":"PHPSESSID"},{"expires":"Wed Jul 26 2017 10:05:22 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"home-tagline-simplified","key":"cfl_ab_home"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":true,"value":"zHsmsn0lUi7ujqy0J-wrxSFhSoMUO_5wO_wXgQYkpTU","key":"XSRF-TOKEN"}],"responseTime":"1952","body":"{\n    \"data\": {\n        \"59494dd5279871501c8b4571\": {\n            \"last_message\": {\n                \"author\": \"590b4ab927987180078b4569\",\n                \"text\": \"test\",\n                \"sent_at\": \"06/26/2017 15:12:07\"\n            },\n            \"message_count\": 3,\n            \"id\": \"59494dd5279871501c8b4571\",\n            \"created_at\": \"06/20/2017 16:31:17\",\n            \"updated_at\": \"06/26/2017 15:12:07\",\n            \"participants\": [\n                {\n                    \"spam\": false,\n                    \"user_id\": \"590b4ab927987180078b4569\",\n                    \"status\": \"active\",\n                    \"profile_info\": {\n                        \"first_name\": \"Test1\",\n                        \"last_name\": \"Test\",\n                        \"user_id\": \"590b4ab927987180078b4569\",\n                        \"role\": \"networker\",\n                        \"responsiveness\": 100,\n                        \"city\": {\n                            \"label\": \"Barcelona, Spain\",\n                            \"name\": \"Barcelona\",\n                            \"country\": \"Spain\",\n                            \"country_code\": \"ES\",\n                            \"coordinates\": {\n                                \"latitude\": 41.3888,\n                                \"longitude\": 2.15899\n                            },\n                            \"id\": \"56cc14c488b042411c0b5a28\"\n                        },\n                        \"areas\": [\n                            \"marketing\"\n                        ],\n                        \"photo\": \"https://s3.amazonaws.com/cofounderslab-testing/profiles/avatars/590b4adb3fe0a.jpeg\",\n                        \"use_avatar\": false,\n                        \"url\": \"http://10.50.50.50:8000/profile/test1-test\",\n                        \"headline\": \"test\",\n                        \"connection_status\": \"accepted\"\n                    },\n                    \"read\": true\n                },\n                {\n                    \"spam\": false,\n                    \"user_id\": \"57994537b43401c036026583\",\n                    \"status\": \"active\",\n                    \"profile_info\": {\n                        \"first_name\": \"Cristian\",\n                        \"last_name\": \"Gonzalez\",\n                        \"user_id\": \"57994537b43401c036026583\",\n                        \"premium_flag\": true,\n                        \"role\": \"founder\",\n                        \"responsiveness\": 20,\n                        \"city\": {\n                            \"label\": \"Barcelona, Spain\",\n                            \"name\": \"Barcelona\",\n                            \"country\": \"Spain\",\n                            \"country_code\": \"ES\",\n                            \"coordinates\": {\n                                \"latitude\": 41.3888,\n                                \"longitude\": 2.15899\n                            },\n                            \"id\": \"56cc14c488b042411c0b5a28\"\n                        },\n                        \"areas\": [\n                            \"engineering\"\n                        ],\n                        \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                        \"legacy_photo_url\": \"https://s3.amazonaws.com/cofounderslab-prod-media/user-71946_1441355485.jpg\",\n                        \"use_avatar\": false,\n                        \"url\": \"http://10.50.50.50:8000/profile/cristian-gonzalez-2\",\n                        \"connection_status\": \"accepted\"\n                    },\n                    \"read\": false\n                }\n            ],\n            \"messages\": [\n                {\n                    \"author\": \"590b4ab927987180078b4569\",\n                    \"text\": \"wrgwgera ff dfsdfff d\",\n                    \"sent_at\": \"06/20/2017 16:31:17\"\n                },\n                {\n                    \"author\": \"590b4ab927987180078b4569\",\n                    \"text\": \"test\",\n                    \"sent_at\": \"06/26/2017 15:11:30\"\n                },\n                {\n                    \"author\": \"590b4ab927987180078b4569\",\n                    \"text\": \"test\",\n                    \"sent_at\": \"06/26/2017 15:12:07\"\n                }\n            ],\n            \"current_participant\": {\n                \"spam\": false,\n                \"user_id\": \"590b4ab927987180078b4569\",\n                \"status\": \"active\",\n                \"profile_info\": {\n                    \"first_name\": \"Test1\",\n                    \"last_name\": \"Test\",\n                    \"user_id\": \"590b4ab927987180078b4569\",\n                    \"role\": \"networker\",\n                    \"responsiveness\": 100,\n                    \"city\": {\n                        \"label\": \"Barcelona, Spain\",\n                        \"name\": \"Barcelona\",\n                        \"country\": \"Spain\",\n                        \"country_code\": \"ES\",\n                        \"coordinates\": {\n                            \"latitude\": 41.3888,\n                            \"longitude\": 2.15899\n                        },\n                        \"id\": \"56cc14c488b042411c0b5a28\"\n                    },\n                    \"areas\": [\n                        \"marketing\"\n                    ],\n                    \"photo\": \"https://s3.amazonaws.com/cofounderslab-testing/profiles/avatars/590b4adb3fe0a.jpeg\",\n                    \"use_avatar\": false,\n                    \"url\": \"http://10.50.50.50:8000/profile/test1-test\",\n                    \"headline\": \"test\",\n                    \"connection_status\": \"accepted\"\n                },\n                \"read\": true\n            },\n            \"other_participants\": [\n                {\n                    \"spam\": false,\n                    \"user_id\": \"57994537b43401c036026583\",\n                    \"profile_info\": {\n                        \"first_name\": \"Cristian\",\n                        \"last_name\": \"Gonzalez\",\n                        \"user_id\": \"57994537b43401c036026583\",\n                        \"premium_flag\": true,\n                        \"role\": \"founder\",\n                        \"responsiveness\": 20,\n                        \"city\": {\n                            \"label\": \"Barcelona, Spain\",\n                            \"name\": \"Barcelona\",\n                            \"country\": \"Spain\",\n                            \"country_code\": \"ES\",\n                            \"coordinates\": {\n                                \"latitude\": 41.3888,\n                                \"longitude\": 2.15899\n                            },\n                            \"id\": \"56cc14c488b042411c0b5a28\"\n                        },\n                        \"areas\": [\n                            \"engineering\"\n                        ],\n                        \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                        \"legacy_photo_url\": \"https://s3.amazonaws.com/cofounderslab-prod-media/user-71946_1441355485.jpg\",\n                        \"use_avatar\": false,\n                        \"url\": \"http://10.50.50.50:8000/profile/cristian-gonzalez-2\",\n                        \"connection_status\": \"accepted\"\n                    },\n                    \"read\": false\n                }\n            ],\n            \"current_participant_credits\": 0,\n            \"unread_messages\": 0,\n            \"can_be_mark_as_spammer\": false\n        }\n    },\n    \"errors\": []\n}"},{"id":"f8037e83-81e6-4c0d-8c95-dc567428553a","name":"400: Bad Request","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer {{access_token}}","warning":""}],"body":{"mode":"formdata","formdata":[{"key":"receiver_id","value":"{{user_id_2}}","type":"text"},{"key":"intention","value":"other","type":"text"},{"key":"personal_message","value":"test","type":"text"},{"key":"","value":"","type":"text","disabled":true}]},"url":"{{host}}/api/v2/conversations/{{conversationId}}/read"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"name":"Allow","key":"Allow","value":"PATCH","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"no-cache","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json","description":""},{"name":"Date","key":"Date","value":"Mon, 26 Jun 2017 15:36:47 GMT","description":""},{"name":"Server","key":"Server","value":"nginx/1.4.6 (Ubuntu)","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Debug-Token","key":"X-Debug-Token","value":"b32908","description":""},{"name":"X-Debug-Token-Link","key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/b32908","description":""}],"cookie":[{"expires":"Wed Jun 13 2018 10:29:38 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"PHPSTORM","key":"XDEBUG_SESSION"},{"expires":"Thu Jun 13 2019 16:06:42 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"ebd47827-25ce-4d3e-93d5-f442a724196b","key":"ahoy_visitor"},{"expires":"Thu Jun 13 2019 16:06:44 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"GA1.1.439762883.1497370005","key":"_ga"},{"expires":"Wed Jun 13 2018 16:06:46 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"88b1060_819d3869-8c8e-480f-b382-8a4b6e3b7f8f-6139e386a-66afc2cca253-6cad","key":"__distillery"},{"expires":"Thu Jun 13 2019 16:06:47 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"251003481.9a892c380504e42262198dae416e15f2.1497370007155.1497370007155.1497370007155.1","key":"__hstc"},{"expires":"Fri Jun 11 2027 16:06:47 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"9a892c380504e42262198dae416e15f2","key":"hubspotutk"},{"expires":"Sun Jul 23 2017 07:54:57 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"v4","key":"cfl_ab_onboarding"},{"expires":"Sun Jul 23 2017 08:39:01 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"premium-v4","key":"cfl_ab_premium_onboarding"},{"expires":"Wed Jul 26 2017 10:05:21 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"10egq297k92oqjd5l0d61aurq5","key":"PHPSESSID"},{"expires":"Wed Jul 26 2017 10:05:22 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"home-tagline-simplified","key":"cfl_ab_home"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":true,"value":"zHsmsn0lUi7ujqy0J-wrxSFhSoMUO_5wO_wXgQYkpTU","key":"XSRF-TOKEN"}],"responseTime":"633","body":"{\"data\":[],\"errors\":[{\"participantId\":{\"code\":2503,\"constraint\":\"ExistingParticipantIdConstraint\"}},{\"conversationId\":{\"code\":2501,\"constraint\":\"ExistingConversationIdConstraint\"}}]}"}],"_postman_id":"f627a80d-f860-4539-905f-48a3673f7e3c"},{"name":"Archive","event":[{"listen":"test","script":{"type":"text/javascript","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","tests[\"Body matches data\"] = responseBody.has(\"data\");","tests[\"Body matches id\"] = responseBody.has(\"id\");","","var jsonData = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"connection_user1_user2\", jsonData.data.id);"]}}],"id":"e7a426fa-2893-4423-89ba-e7c487a92f4d","request":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"receiver_id","value":"{{user_id_2}}","type":"text"},{"key":"intention","value":"other","type":"text"},{"key":"personal_message","value":"test","type":"text"},{"key":"","value":"","type":"text","disabled":true}]},"url":"{{host}}/api/v2/conversations/{{conversationId}}/archive","description":"<p>Sets the status of a conversation as ARCHIVED for the user doing the action.</p>\n<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>conversationId</td>\n<td>string</td>\n<td>false</td>\n<td>Id of conversation</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\">Response</h2>\n<p>Array of Conversation Object</p>\n","urlObject":{"path":["api","v2","conversations","{{conversationId}}","archive"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"ce2a87e3-716f-4eab-b9b8-59a8adc2ef34","name":"400: Bad Request","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer YTBlN2M4N2Q3ZDFkYzBiZWExYWVlNDBmZTk2MTA5NmM0YWI4ZGU5YTQ1MmM4OGUwZTY5MTE0YzM5M2UwMzRmZA","warning":""}],"body":{"mode":"formdata","formdata":[{"key":"receiver_id","value":"{{user_id_2}}","type":"text"},{"key":"intention","value":"other","type":"text"},{"key":"personal_message","value":"test","type":"text"},{"key":"","value":"","type":"text","disabled":true}]},"url":"{{host}}/api/v2/conversations/59494dd5279871501c8b4521/archive"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"name":"Allow","key":"Allow","value":"PATCH","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"no-cache","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json","description":""},{"name":"Date","key":"Date","value":"Mon, 26 Jun 2017 15:46:35 GMT","description":""},{"name":"Server","key":"Server","value":"nginx/1.4.6 (Ubuntu)","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Debug-Token","key":"X-Debug-Token","value":"747ca6","description":""},{"name":"X-Debug-Token-Link","key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/747ca6","description":""}],"cookie":[{"expires":"Wed Jun 13 2018 10:29:38 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"PHPSTORM","key":"XDEBUG_SESSION"},{"expires":"Thu Jun 13 2019 16:06:42 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"ebd47827-25ce-4d3e-93d5-f442a724196b","key":"ahoy_visitor"},{"expires":"Thu Jun 13 2019 16:06:44 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"GA1.1.439762883.1497370005","key":"_ga"},{"expires":"Wed Jun 13 2018 16:06:46 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"88b1060_819d3869-8c8e-480f-b382-8a4b6e3b7f8f-6139e386a-66afc2cca253-6cad","key":"__distillery"},{"expires":"Thu Jun 13 2019 16:06:47 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"251003481.9a892c380504e42262198dae416e15f2.1497370007155.1497370007155.1497370007155.1","key":"__hstc"},{"expires":"Fri Jun 11 2027 16:06:47 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"9a892c380504e42262198dae416e15f2","key":"hubspotutk"},{"expires":"Sun Jul 23 2017 07:54:57 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"v4","key":"cfl_ab_onboarding"},{"expires":"Sun Jul 23 2017 08:39:01 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"premium-v4","key":"cfl_ab_premium_onboarding"},{"expires":"Wed Jul 26 2017 10:05:21 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"10egq297k92oqjd5l0d61aurq5","key":"PHPSESSID"},{"expires":"Wed Jul 26 2017 10:05:22 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"home-tagline-simplified","key":"cfl_ab_home"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":true,"value":"zHsmsn0lUi7ujqy0J-wrxSFhSoMUO_5wO_wXgQYkpTU","key":"XSRF-TOKEN"}],"responseTime":"572","body":"{\"data\":[],\"errors\":[{\"participantId\":{\"code\":2503,\"constraint\":\"ExistingParticipantIdConstraint\"}},{\"conversationId\":{\"code\":2501,\"constraint\":\"ExistingConversationIdConstraint\"}}]}"},{"id":"e9443827-f282-4b47-93a6-d5cf2b41b1a6","name":"200: Ok","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer YTBlN2M4N2Q3ZDFkYzBiZWExYWVlNDBmZTk2MTA5NmM0YWI4ZGU5YTQ1MmM4OGUwZTY5MTE0YzM5M2UwMzRmZA"}],"body":{"mode":"formdata","formdata":[{"key":"receiver_id","value":"{{user_id_2}}","type":"text"},{"key":"intention","value":"other","type":"text"},{"key":"personal_message","value":"test","type":"text"},{"key":"","value":"","type":"text","disabled":true}]},"url":"{{host}}/api/v2/conversations/59494dd5279871501c8b4571/archive"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Allow","key":"Allow","value":"PATCH","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"no-cache","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json","description":""},{"name":"Date","key":"Date","value":"Mon, 26 Jun 2017 15:45:15 GMT","description":""},{"name":"Server","key":"Server","value":"nginx/1.4.6 (Ubuntu)","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Debug-Token","key":"X-Debug-Token","value":"9f5aae","description":""},{"name":"X-Debug-Token-Link","key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/9f5aae","description":""}],"cookie":[{"expires":"Wed Jun 13 2018 10:29:38 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"PHPSTORM","key":"XDEBUG_SESSION"},{"expires":"Thu Jun 13 2019 16:06:42 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"ebd47827-25ce-4d3e-93d5-f442a724196b","key":"ahoy_visitor"},{"expires":"Thu Jun 13 2019 16:06:44 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"GA1.1.439762883.1497370005","key":"_ga"},{"expires":"Wed Jun 13 2018 16:06:46 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"88b1060_819d3869-8c8e-480f-b382-8a4b6e3b7f8f-6139e386a-66afc2cca253-6cad","key":"__distillery"},{"expires":"Thu Jun 13 2019 16:06:47 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"251003481.9a892c380504e42262198dae416e15f2.1497370007155.1497370007155.1497370007155.1","key":"__hstc"},{"expires":"Fri Jun 11 2027 16:06:47 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"9a892c380504e42262198dae416e15f2","key":"hubspotutk"},{"expires":"Sun Jul 23 2017 07:54:57 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"v4","key":"cfl_ab_onboarding"},{"expires":"Sun Jul 23 2017 08:39:01 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"premium-v4","key":"cfl_ab_premium_onboarding"},{"expires":"Wed Jul 26 2017 10:05:21 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"10egq297k92oqjd5l0d61aurq5","key":"PHPSESSID"},{"expires":"Wed Jul 26 2017 10:05:22 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"home-tagline-simplified","key":"cfl_ab_home"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":true,"value":"zHsmsn0lUi7ujqy0J-wrxSFhSoMUO_5wO_wXgQYkpTU","key":"XSRF-TOKEN"}],"responseTime":"1864","body":"{\n    \"data\": {\n        \"59494dd5279871501c8b4571\": {\n            \"last_message\": {\n                \"author\": \"590b4ab927987180078b4569\",\n                \"text\": \"test\",\n                \"sent_at\": \"06/26/2017 15:12:07\"\n            },\n            \"message_count\": 3,\n            \"id\": \"59494dd5279871501c8b4571\",\n            \"created_at\": \"06/20/2017 16:31:17\",\n            \"updated_at\": \"06/26/2017 15:12:07\",\n            \"participants\": [\n                {\n                    \"spam\": false,\n                    \"user_id\": \"590b4ab927987180078b4569\",\n                    \"status\": \"active\",\n                    \"profile_info\": {\n                        \"first_name\": \"Test1\",\n                        \"last_name\": \"Test\",\n                        \"user_id\": \"590b4ab927987180078b4569\",\n                        \"role\": \"networker\",\n                        \"responsiveness\": 100,\n                        \"city\": {\n                            \"label\": \"Barcelona, Spain\",\n                            \"name\": \"Barcelona\",\n                            \"country\": \"Spain\",\n                            \"country_code\": \"ES\",\n                            \"coordinates\": {\n                                \"latitude\": 41.3888,\n                                \"longitude\": 2.15899\n                            },\n                            \"id\": \"56cc14c488b042411c0b5a28\"\n                        },\n                        \"areas\": [\n                            \"marketing\"\n                        ],\n                        \"photo\": \"https://s3.amazonaws.com/cofounderslab-testing/profiles/avatars/590b4adb3fe0a.jpeg\",\n                        \"use_avatar\": false,\n                        \"url\": \"http://10.50.50.50:8000/profile/test1-test\",\n                        \"headline\": \"test\",\n                        \"connection_status\": \"accepted\"\n                    },\n                    \"read\": true\n                },\n                {\n                    \"spam\": false,\n                    \"user_id\": \"57994537b43401c036026583\",\n                    \"status\": \"active\",\n                    \"profile_info\": {\n                        \"first_name\": \"Cristian\",\n                        \"last_name\": \"Gonzalez\",\n                        \"user_id\": \"57994537b43401c036026583\",\n                        \"premium_flag\": true,\n                        \"role\": \"founder\",\n                        \"responsiveness\": 20,\n                        \"city\": {\n                            \"label\": \"Barcelona, Spain\",\n                            \"name\": \"Barcelona\",\n                            \"country\": \"Spain\",\n                            \"country_code\": \"ES\",\n                            \"coordinates\": {\n                                \"latitude\": 41.3888,\n                                \"longitude\": 2.15899\n                            },\n                            \"id\": \"56cc14c488b042411c0b5a28\"\n                        },\n                        \"areas\": [\n                            \"engineering\"\n                        ],\n                        \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                        \"legacy_photo_url\": \"https://s3.amazonaws.com/cofounderslab-prod-media/user-71946_1441355485.jpg\",\n                        \"use_avatar\": false,\n                        \"url\": \"http://10.50.50.50:8000/profile/cristian-gonzalez-2\",\n                        \"connection_status\": \"accepted\"\n                    },\n                    \"read\": false\n                }\n            ],\n            \"messages\": [\n                {\n                    \"author\": \"590b4ab927987180078b4569\",\n                    \"text\": \"wrgwgera ff dfsdfff d\",\n                    \"sent_at\": \"06/20/2017 16:31:17\"\n                },\n                {\n                    \"author\": \"590b4ab927987180078b4569\",\n                    \"text\": \"test\",\n                    \"sent_at\": \"06/26/2017 15:11:30\"\n                },\n                {\n                    \"author\": \"590b4ab927987180078b4569\",\n                    \"text\": \"test\",\n                    \"sent_at\": \"06/26/2017 15:12:07\"\n                }\n            ],\n            \"current_participant\": {\n                \"spam\": false,\n                \"user_id\": \"590b4ab927987180078b4569\",\n                \"status\": \"active\",\n                \"profile_info\": {\n                    \"first_name\": \"Test1\",\n                    \"last_name\": \"Test\",\n                    \"user_id\": \"590b4ab927987180078b4569\",\n                    \"role\": \"networker\",\n                    \"responsiveness\": 100,\n                    \"city\": {\n                        \"label\": \"Barcelona, Spain\",\n                        \"name\": \"Barcelona\",\n                        \"country\": \"Spain\",\n                        \"country_code\": \"ES\",\n                        \"coordinates\": {\n                            \"latitude\": 41.3888,\n                            \"longitude\": 2.15899\n                        },\n                        \"id\": \"56cc14c488b042411c0b5a28\"\n                    },\n                    \"areas\": [\n                        \"marketing\"\n                    ],\n                    \"photo\": \"https://s3.amazonaws.com/cofounderslab-testing/profiles/avatars/590b4adb3fe0a.jpeg\",\n                    \"use_avatar\": false,\n                    \"url\": \"http://10.50.50.50:8000/profile/test1-test\",\n                    \"headline\": \"test\",\n                    \"connection_status\": \"accepted\"\n                },\n                \"read\": true\n            },\n            \"other_participants\": [\n                {\n                    \"spam\": false,\n                    \"user_id\": \"57994537b43401c036026583\",\n                    \"profile_info\": {\n                        \"first_name\": \"Cristian\",\n                        \"last_name\": \"Gonzalez\",\n                        \"user_id\": \"57994537b43401c036026583\",\n                        \"premium_flag\": true,\n                        \"role\": \"founder\",\n                        \"responsiveness\": 20,\n                        \"city\": {\n                            \"label\": \"Barcelona, Spain\",\n                            \"name\": \"Barcelona\",\n                            \"country\": \"Spain\",\n                            \"country_code\": \"ES\",\n                            \"coordinates\": {\n                                \"latitude\": 41.3888,\n                                \"longitude\": 2.15899\n                            },\n                            \"id\": \"56cc14c488b042411c0b5a28\"\n                        },\n                        \"areas\": [\n                            \"engineering\"\n                        ],\n                        \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                        \"legacy_photo_url\": \"https://s3.amazonaws.com/cofounderslab-prod-media/user-71946_1441355485.jpg\",\n                        \"use_avatar\": false,\n                        \"url\": \"http://10.50.50.50:8000/profile/cristian-gonzalez-2\",\n                        \"connection_status\": \"accepted\"\n                    },\n                    \"read\": false\n                }\n            ],\n            \"current_participant_credits\": 0,\n            \"unread_messages\": 0,\n            \"can_be_mark_as_spammer\": false\n        }\n    },\n    \"errors\": []\n}"}],"_postman_id":"e7a426fa-2893-4423-89ba-e7c487a92f4d"},{"name":"Restore","event":[{"listen":"test","script":{"type":"text/javascript","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","tests[\"Body matches data\"] = responseBody.has(\"data\");","tests[\"Body matches id\"] = responseBody.has(\"id\");","","var jsonData = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"connection_user1_user2\", jsonData.data.id);"]}}],"id":"895396f6-755f-46eb-91b8-efdec946397b","request":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"receiver_id","value":"{{user_id_2}}","type":"text"},{"key":"intention","value":"other","type":"text"},{"key":"personal_message","value":"test","type":"text"},{"key":"","value":"","type":"text","disabled":true}]},"url":"{{host}}/api/v2/conversations/{{conversationId}}/restore","description":"<p>Sets the status of a conversation as ACTIVE for the user doing the action.</p>\n<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>conversationId</td>\n<td>string</td>\n<td>false</td>\n<td>Id of conversation</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\">Response</h2>\n<p>Array of Conversation Object</p>\n","urlObject":{"path":["api","v2","conversations","{{conversationId}}","restore"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"44ee38d5-401d-435a-b74f-bfaa98853e8e","name":"200: Ok","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer YTBlN2M4N2Q3ZDFkYzBiZWExYWVlNDBmZTk2MTA5NmM0YWI4ZGU5YTQ1MmM4OGUwZTY5MTE0YzM5M2UwMzRmZA"}],"body":{"mode":"formdata","formdata":[{"key":"receiver_id","value":"{{user_id_2}}","type":"text"},{"key":"intention","value":"other","type":"text"},{"key":"personal_message","value":"test","type":"text"},{"key":"","value":"","type":"text","disabled":true}]},"url":"{{host}}/api/v2/conversations/59494dd5279871501c8b4571/restore"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Allow","key":"Allow","value":"PATCH","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"no-cache","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json","description":""},{"name":"Date","key":"Date","value":"Mon, 26 Jun 2017 15:48:07 GMT","description":""},{"name":"Server","key":"Server","value":"nginx/1.4.6 (Ubuntu)","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Debug-Token","key":"X-Debug-Token","value":"7f0d8d","description":""},{"name":"X-Debug-Token-Link","key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/7f0d8d","description":""}],"cookie":[{"expires":"Wed Jun 13 2018 10:29:38 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"PHPSTORM","key":"XDEBUG_SESSION"},{"expires":"Thu Jun 13 2019 16:06:42 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"ebd47827-25ce-4d3e-93d5-f442a724196b","key":"ahoy_visitor"},{"expires":"Thu Jun 13 2019 16:06:44 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"GA1.1.439762883.1497370005","key":"_ga"},{"expires":"Wed Jun 13 2018 16:06:46 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"88b1060_819d3869-8c8e-480f-b382-8a4b6e3b7f8f-6139e386a-66afc2cca253-6cad","key":"__distillery"},{"expires":"Thu Jun 13 2019 16:06:47 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"251003481.9a892c380504e42262198dae416e15f2.1497370007155.1497370007155.1497370007155.1","key":"__hstc"},{"expires":"Fri Jun 11 2027 16:06:47 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"9a892c380504e42262198dae416e15f2","key":"hubspotutk"},{"expires":"Sun Jul 23 2017 07:54:57 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"v4","key":"cfl_ab_onboarding"},{"expires":"Sun Jul 23 2017 08:39:01 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"premium-v4","key":"cfl_ab_premium_onboarding"},{"expires":"Wed Jul 26 2017 10:05:21 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"10egq297k92oqjd5l0d61aurq5","key":"PHPSESSID"},{"expires":"Wed Jul 26 2017 10:05:22 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"home-tagline-simplified","key":"cfl_ab_home"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":true,"value":"zHsmsn0lUi7ujqy0J-wrxSFhSoMUO_5wO_wXgQYkpTU","key":"XSRF-TOKEN"}],"responseTime":"2525","body":"{\n    \"data\": {\n        \"59494dd5279871501c8b4571\": {\n            \"last_message\": {\n                \"author\": \"590b4ab927987180078b4569\",\n                \"text\": \"test\",\n                \"sent_at\": \"06/26/2017 15:12:07\"\n            },\n            \"message_count\": 3,\n            \"id\": \"59494dd5279871501c8b4571\",\n            \"created_at\": \"06/20/2017 16:31:17\",\n            \"updated_at\": \"06/26/2017 15:12:07\",\n            \"participants\": [\n                {\n                    \"spam\": false,\n                    \"user_id\": \"590b4ab927987180078b4569\",\n                    \"status\": \"active\",\n                    \"profile_info\": {\n                        \"first_name\": \"Test1\",\n                        \"last_name\": \"Test\",\n                        \"user_id\": \"590b4ab927987180078b4569\",\n                        \"role\": \"networker\",\n                        \"responsiveness\": 100,\n                        \"city\": {\n                            \"label\": \"Barcelona, Spain\",\n                            \"name\": \"Barcelona\",\n                            \"country\": \"Spain\",\n                            \"country_code\": \"ES\",\n                            \"coordinates\": {\n                                \"latitude\": 41.3888,\n                                \"longitude\": 2.15899\n                            },\n                            \"id\": \"56cc14c488b042411c0b5a28\"\n                        },\n                        \"areas\": [\n                            \"marketing\"\n                        ],\n                        \"photo\": \"https://s3.amazonaws.com/cofounderslab-testing/profiles/avatars/590b4adb3fe0a.jpeg\",\n                        \"use_avatar\": false,\n                        \"url\": \"http://10.50.50.50:8000/profile/test1-test\",\n                        \"headline\": \"test\",\n                        \"connection_status\": \"accepted\"\n                    },\n                    \"read\": true\n                },\n                {\n                    \"spam\": false,\n                    \"user_id\": \"57994537b43401c036026583\",\n                    \"status\": \"active\",\n                    \"profile_info\": {\n                        \"first_name\": \"Cristian\",\n                        \"last_name\": \"Gonzalez\",\n                        \"user_id\": \"57994537b43401c036026583\",\n                        \"premium_flag\": true,\n                        \"role\": \"founder\",\n                        \"responsiveness\": 20,\n                        \"city\": {\n                            \"label\": \"Barcelona, Spain\",\n                            \"name\": \"Barcelona\",\n                            \"country\": \"Spain\",\n                            \"country_code\": \"ES\",\n                            \"coordinates\": {\n                                \"latitude\": 41.3888,\n                                \"longitude\": 2.15899\n                            },\n                            \"id\": \"56cc14c488b042411c0b5a28\"\n                        },\n                        \"areas\": [\n                            \"engineering\"\n                        ],\n                        \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                        \"legacy_photo_url\": \"https://s3.amazonaws.com/cofounderslab-prod-media/user-71946_1441355485.jpg\",\n                        \"use_avatar\": false,\n                        \"url\": \"http://10.50.50.50:8000/profile/cristian-gonzalez-2\",\n                        \"connection_status\": \"accepted\"\n                    },\n                    \"read\": false\n                }\n            ],\n            \"messages\": [\n                {\n                    \"author\": \"590b4ab927987180078b4569\",\n                    \"text\": \"wrgwgera ff dfsdfff d\",\n                    \"sent_at\": \"06/20/2017 16:31:17\"\n                },\n                {\n                    \"author\": \"590b4ab927987180078b4569\",\n                    \"text\": \"test\",\n                    \"sent_at\": \"06/26/2017 15:11:30\"\n                },\n                {\n                    \"author\": \"590b4ab927987180078b4569\",\n                    \"text\": \"test\",\n                    \"sent_at\": \"06/26/2017 15:12:07\"\n                }\n            ],\n            \"current_participant\": {\n                \"spam\": false,\n                \"user_id\": \"590b4ab927987180078b4569\",\n                \"status\": \"active\",\n                \"profile_info\": {\n                    \"first_name\": \"Test1\",\n                    \"last_name\": \"Test\",\n                    \"user_id\": \"590b4ab927987180078b4569\",\n                    \"role\": \"networker\",\n                    \"responsiveness\": 100,\n                    \"city\": {\n                        \"label\": \"Barcelona, Spain\",\n                        \"name\": \"Barcelona\",\n                        \"country\": \"Spain\",\n                        \"country_code\": \"ES\",\n                        \"coordinates\": {\n                            \"latitude\": 41.3888,\n                            \"longitude\": 2.15899\n                        },\n                        \"id\": \"56cc14c488b042411c0b5a28\"\n                    },\n                    \"areas\": [\n                        \"marketing\"\n                    ],\n                    \"photo\": \"https://s3.amazonaws.com/cofounderslab-testing/profiles/avatars/590b4adb3fe0a.jpeg\",\n                    \"use_avatar\": false,\n                    \"url\": \"http://10.50.50.50:8000/profile/test1-test\",\n                    \"headline\": \"test\",\n                    \"connection_status\": \"accepted\"\n                },\n                \"read\": true\n            },\n            \"other_participants\": [\n                {\n                    \"spam\": false,\n                    \"user_id\": \"57994537b43401c036026583\",\n                    \"profile_info\": {\n                        \"first_name\": \"Cristian\",\n                        \"last_name\": \"Gonzalez\",\n                        \"user_id\": \"57994537b43401c036026583\",\n                        \"premium_flag\": true,\n                        \"role\": \"founder\",\n                        \"responsiveness\": 20,\n                        \"city\": {\n                            \"label\": \"Barcelona, Spain\",\n                            \"name\": \"Barcelona\",\n                            \"country\": \"Spain\",\n                            \"country_code\": \"ES\",\n                            \"coordinates\": {\n                                \"latitude\": 41.3888,\n                                \"longitude\": 2.15899\n                            },\n                            \"id\": \"56cc14c488b042411c0b5a28\"\n                        },\n                        \"areas\": [\n                            \"engineering\"\n                        ],\n                        \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                        \"legacy_photo_url\": \"https://s3.amazonaws.com/cofounderslab-prod-media/user-71946_1441355485.jpg\",\n                        \"use_avatar\": false,\n                        \"url\": \"http://10.50.50.50:8000/profile/cristian-gonzalez-2\",\n                        \"connection_status\": \"accepted\"\n                    },\n                    \"read\": false\n                }\n            ],\n            \"current_participant_credits\": 0,\n            \"unread_messages\": 0,\n            \"can_be_mark_as_spammer\": false\n        }\n    },\n    \"errors\": []\n}"},{"id":"4e141198-e866-4018-8aa3-24d1fb6d394e","name":"400: Bad Request","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer YTBlN2M4N2Q3ZDFkYzBiZWExYWVlNDBmZTk2MTA5NmM0YWI4ZGU5YTQ1MmM4OGUwZTY5MTE0YzM5M2UwMzRmZA","warning":""}],"body":{"mode":"formdata","formdata":[{"key":"receiver_id","value":"{{user_id_2}}","type":"text"},{"key":"intention","value":"other","type":"text"},{"key":"personal_message","value":"test","type":"text"},{"key":"","value":"","type":"text","disabled":true}]},"url":"{{host}}/api/v2/conversations/59494dd5279871501c8b4521/archive"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"name":"Allow","key":"Allow","value":"PATCH","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"no-cache","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json","description":""},{"name":"Date","key":"Date","value":"Mon, 26 Jun 2017 15:46:35 GMT","description":""},{"name":"Server","key":"Server","value":"nginx/1.4.6 (Ubuntu)","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Debug-Token","key":"X-Debug-Token","value":"747ca6","description":""},{"name":"X-Debug-Token-Link","key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/747ca6","description":""}],"cookie":[{"expires":"Wed Jun 13 2018 10:29:38 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"PHPSTORM","key":"XDEBUG_SESSION"},{"expires":"Thu Jun 13 2019 16:06:42 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"ebd47827-25ce-4d3e-93d5-f442a724196b","key":"ahoy_visitor"},{"expires":"Thu Jun 13 2019 16:06:44 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"GA1.1.439762883.1497370005","key":"_ga"},{"expires":"Wed Jun 13 2018 16:06:46 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"88b1060_819d3869-8c8e-480f-b382-8a4b6e3b7f8f-6139e386a-66afc2cca253-6cad","key":"__distillery"},{"expires":"Thu Jun 13 2019 16:06:47 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"251003481.9a892c380504e42262198dae416e15f2.1497370007155.1497370007155.1497370007155.1","key":"__hstc"},{"expires":"Fri Jun 11 2027 16:06:47 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"9a892c380504e42262198dae416e15f2","key":"hubspotutk"},{"expires":"Sun Jul 23 2017 07:54:57 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"v4","key":"cfl_ab_onboarding"},{"expires":"Sun Jul 23 2017 08:39:01 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"premium-v4","key":"cfl_ab_premium_onboarding"},{"expires":"Wed Jul 26 2017 10:05:21 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"10egq297k92oqjd5l0d61aurq5","key":"PHPSESSID"},{"expires":"Wed Jul 26 2017 10:05:22 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"home-tagline-simplified","key":"cfl_ab_home"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":true,"value":"zHsmsn0lUi7ujqy0J-wrxSFhSoMUO_5wO_wXgQYkpTU","key":"XSRF-TOKEN"}],"responseTime":"572","body":"{\"data\":[],\"errors\":[{\"participantId\":{\"code\":2503,\"constraint\":\"ExistingParticipantIdConstraint\"}},{\"conversationId\":{\"code\":2501,\"constraint\":\"ExistingConversationIdConstraint\"}}]}"}],"_postman_id":"895396f6-755f-46eb-91b8-efdec946397b"},{"name":"Report Spammer","event":[{"listen":"test","script":{"type":"text/javascript","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","tests[\"Body matches data\"] = responseBody.has(\"data\");","tests[\"Body matches id\"] = responseBody.has(\"id\");","","var jsonData = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"connection_user1_user2\", jsonData.data.id);"]}}],"id":"414a14e6-b999-414e-a6f5-91f506d74d0d","request":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"message","value":"test","type":"text"},{"key":"","value":"","type":"text","disabled":true}]},"url":"{{host}}/api/v2/conversations/{{userId}}/report-spammer","description":"<p>Mark another user as a spammer.</p>\n<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>userId</td>\n<td>string</td>\n<td>false</td>\n<td>Id of spammer</td>\n</tr>\n<tr>\n<td>message</td>\n<td>string</td>\n<td>false</td>\n<td>explain why is spammer</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\">Response</h2>\n<p>Array of Conversation Object</p>\n","urlObject":{"path":["api","v2","conversations","{{userId}}","report-spammer"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"cd39fbe8-5fab-42d7-aab0-fe29bc952d91","name":"400: Bad Request","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer YTBlN2M4N2Q3ZDFkYzBiZWExYWVlNDBmZTk2MTA5NmM0YWI4ZGU5YTQ1MmM4OGUwZTY5MTE0YzM5M2UwMzRmZA","warning":""}],"body":{"mode":"formdata","formdata":[{"key":"receiver_id","value":"{{user_id_2}}","type":"text"},{"key":"intention","value":"other","type":"text"},{"key":"personal_message","value":"test","type":"text"},{"key":"","value":"","type":"text","disabled":true}]},"url":"{{host}}/api/v2/conversations/59494dd5279871501c8b4521/archive"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"name":"Allow","key":"Allow","value":"PATCH","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"no-cache","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json","description":""},{"name":"Date","key":"Date","value":"Mon, 26 Jun 2017 15:46:35 GMT","description":""},{"name":"Server","key":"Server","value":"nginx/1.4.6 (Ubuntu)","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Debug-Token","key":"X-Debug-Token","value":"747ca6","description":""},{"name":"X-Debug-Token-Link","key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/747ca6","description":""}],"cookie":[{"expires":"Wed Jun 13 2018 10:29:38 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"PHPSTORM","key":"XDEBUG_SESSION"},{"expires":"Thu Jun 13 2019 16:06:42 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"ebd47827-25ce-4d3e-93d5-f442a724196b","key":"ahoy_visitor"},{"expires":"Thu Jun 13 2019 16:06:44 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"GA1.1.439762883.1497370005","key":"_ga"},{"expires":"Wed Jun 13 2018 16:06:46 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"88b1060_819d3869-8c8e-480f-b382-8a4b6e3b7f8f-6139e386a-66afc2cca253-6cad","key":"__distillery"},{"expires":"Thu Jun 13 2019 16:06:47 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"251003481.9a892c380504e42262198dae416e15f2.1497370007155.1497370007155.1497370007155.1","key":"__hstc"},{"expires":"Fri Jun 11 2027 16:06:47 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"9a892c380504e42262198dae416e15f2","key":"hubspotutk"},{"expires":"Sun Jul 23 2017 07:54:57 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"v4","key":"cfl_ab_onboarding"},{"expires":"Sun Jul 23 2017 08:39:01 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"premium-v4","key":"cfl_ab_premium_onboarding"},{"expires":"Wed Jul 26 2017 10:05:21 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"10egq297k92oqjd5l0d61aurq5","key":"PHPSESSID"},{"expires":"Wed Jul 26 2017 10:05:22 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"home-tagline-simplified","key":"cfl_ab_home"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":true,"value":"zHsmsn0lUi7ujqy0J-wrxSFhSoMUO_5wO_wXgQYkpTU","key":"XSRF-TOKEN"}],"responseTime":"572","body":"{\"data\":[],\"errors\":[{\"participantId\":{\"code\":2503,\"constraint\":\"ExistingParticipantIdConstraint\"}},{\"conversationId\":{\"code\":2501,\"constraint\":\"ExistingConversationIdConstraint\"}}]}"},{"id":"f5b3e0a7-5639-4477-a17b-fe64109c6de4","name":"200: Ok","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer YTBlN2M4N2Q3ZDFkYzBiZWExYWVlNDBmZTk2MTA5NmM0YWI4ZGU5YTQ1MmM4OGUwZTY5MTE0YzM5M2UwMzRmZA"}],"body":{"mode":"formdata","formdata":[{"key":"receiver_id","value":"{{user_id_2}}","type":"text"},{"key":"intention","value":"other","type":"text"},{"key":"personal_message","value":"test","type":"text"},{"key":"","value":"","type":"text","disabled":true}]},"url":"{{host}}/api/v2/conversations/59494dd5279871501c8b4571/restore"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Allow","key":"Allow","value":"PATCH","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"no-cache","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json","description":""},{"name":"Date","key":"Date","value":"Mon, 26 Jun 2017 15:48:07 GMT","description":""},{"name":"Server","key":"Server","value":"nginx/1.4.6 (Ubuntu)","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Debug-Token","key":"X-Debug-Token","value":"7f0d8d","description":""},{"name":"X-Debug-Token-Link","key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/7f0d8d","description":""}],"cookie":[{"expires":"Wed Jun 13 2018 10:29:38 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"PHPSTORM","key":"XDEBUG_SESSION"},{"expires":"Thu Jun 13 2019 16:06:42 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"ebd47827-25ce-4d3e-93d5-f442a724196b","key":"ahoy_visitor"},{"expires":"Thu Jun 13 2019 16:06:44 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"GA1.1.439762883.1497370005","key":"_ga"},{"expires":"Wed Jun 13 2018 16:06:46 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"88b1060_819d3869-8c8e-480f-b382-8a4b6e3b7f8f-6139e386a-66afc2cca253-6cad","key":"__distillery"},{"expires":"Thu Jun 13 2019 16:06:47 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"251003481.9a892c380504e42262198dae416e15f2.1497370007155.1497370007155.1497370007155.1","key":"__hstc"},{"expires":"Fri Jun 11 2027 16:06:47 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"9a892c380504e42262198dae416e15f2","key":"hubspotutk"},{"expires":"Sun Jul 23 2017 07:54:57 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"v4","key":"cfl_ab_onboarding"},{"expires":"Sun Jul 23 2017 08:39:01 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"premium-v4","key":"cfl_ab_premium_onboarding"},{"expires":"Wed Jul 26 2017 10:05:21 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"10egq297k92oqjd5l0d61aurq5","key":"PHPSESSID"},{"expires":"Wed Jul 26 2017 10:05:22 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"home-tagline-simplified","key":"cfl_ab_home"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":true,"value":"zHsmsn0lUi7ujqy0J-wrxSFhSoMUO_5wO_wXgQYkpTU","key":"XSRF-TOKEN"}],"responseTime":"2525","body":"{\n    \"data\": {\n        \"59494dd5279871501c8b4571\": {\n            \"last_message\": {\n                \"author\": \"590b4ab927987180078b4569\",\n                \"text\": \"test\",\n                \"sent_at\": \"06/26/2017 15:12:07\"\n            },\n            \"message_count\": 3,\n            \"id\": \"59494dd5279871501c8b4571\",\n            \"created_at\": \"06/20/2017 16:31:17\",\n            \"updated_at\": \"06/26/2017 15:12:07\",\n            \"participants\": [\n                {\n                    \"spam\": false,\n                    \"user_id\": \"590b4ab927987180078b4569\",\n                    \"status\": \"active\",\n                    \"profile_info\": {\n                        \"first_name\": \"Test1\",\n                        \"last_name\": \"Test\",\n                        \"user_id\": \"590b4ab927987180078b4569\",\n                        \"role\": \"networker\",\n                        \"responsiveness\": 100,\n                        \"city\": {\n                            \"label\": \"Barcelona, Spain\",\n                            \"name\": \"Barcelona\",\n                            \"country\": \"Spain\",\n                            \"country_code\": \"ES\",\n                            \"coordinates\": {\n                                \"latitude\": 41.3888,\n                                \"longitude\": 2.15899\n                            },\n                            \"id\": \"56cc14c488b042411c0b5a28\"\n                        },\n                        \"areas\": [\n                            \"marketing\"\n                        ],\n                        \"photo\": \"https://s3.amazonaws.com/cofounderslab-testing/profiles/avatars/590b4adb3fe0a.jpeg\",\n                        \"use_avatar\": false,\n                        \"url\": \"http://10.50.50.50:8000/profile/test1-test\",\n                        \"headline\": \"test\",\n                        \"connection_status\": \"accepted\"\n                    },\n                    \"read\": true\n                },\n                {\n                    \"spam\": false,\n                    \"user_id\": \"57994537b43401c036026583\",\n                    \"status\": \"active\",\n                    \"profile_info\": {\n                        \"first_name\": \"Cristian\",\n                        \"last_name\": \"Gonzalez\",\n                        \"user_id\": \"57994537b43401c036026583\",\n                        \"premium_flag\": true,\n                        \"role\": \"founder\",\n                        \"responsiveness\": 20,\n                        \"city\": {\n                            \"label\": \"Barcelona, Spain\",\n                            \"name\": \"Barcelona\",\n                            \"country\": \"Spain\",\n                            \"country_code\": \"ES\",\n                            \"coordinates\": {\n                                \"latitude\": 41.3888,\n                                \"longitude\": 2.15899\n                            },\n                            \"id\": \"56cc14c488b042411c0b5a28\"\n                        },\n                        \"areas\": [\n                            \"engineering\"\n                        ],\n                        \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                        \"legacy_photo_url\": \"https://s3.amazonaws.com/cofounderslab-prod-media/user-71946_1441355485.jpg\",\n                        \"use_avatar\": false,\n                        \"url\": \"http://10.50.50.50:8000/profile/cristian-gonzalez-2\",\n                        \"connection_status\": \"accepted\"\n                    },\n                    \"read\": false\n                }\n            ],\n            \"messages\": [\n                {\n                    \"author\": \"590b4ab927987180078b4569\",\n                    \"text\": \"wrgwgera ff dfsdfff d\",\n                    \"sent_at\": \"06/20/2017 16:31:17\"\n                },\n                {\n                    \"author\": \"590b4ab927987180078b4569\",\n                    \"text\": \"test\",\n                    \"sent_at\": \"06/26/2017 15:11:30\"\n                },\n                {\n                    \"author\": \"590b4ab927987180078b4569\",\n                    \"text\": \"test\",\n                    \"sent_at\": \"06/26/2017 15:12:07\"\n                }\n            ],\n            \"current_participant\": {\n                \"spam\": false,\n                \"user_id\": \"590b4ab927987180078b4569\",\n                \"status\": \"active\",\n                \"profile_info\": {\n                    \"first_name\": \"Test1\",\n                    \"last_name\": \"Test\",\n                    \"user_id\": \"590b4ab927987180078b4569\",\n                    \"role\": \"networker\",\n                    \"responsiveness\": 100,\n                    \"city\": {\n                        \"label\": \"Barcelona, Spain\",\n                        \"name\": \"Barcelona\",\n                        \"country\": \"Spain\",\n                        \"country_code\": \"ES\",\n                        \"coordinates\": {\n                            \"latitude\": 41.3888,\n                            \"longitude\": 2.15899\n                        },\n                        \"id\": \"56cc14c488b042411c0b5a28\"\n                    },\n                    \"areas\": [\n                        \"marketing\"\n                    ],\n                    \"photo\": \"https://s3.amazonaws.com/cofounderslab-testing/profiles/avatars/590b4adb3fe0a.jpeg\",\n                    \"use_avatar\": false,\n                    \"url\": \"http://10.50.50.50:8000/profile/test1-test\",\n                    \"headline\": \"test\",\n                    \"connection_status\": \"accepted\"\n                },\n                \"read\": true\n            },\n            \"other_participants\": [\n                {\n                    \"spam\": false,\n                    \"user_id\": \"57994537b43401c036026583\",\n                    \"profile_info\": {\n                        \"first_name\": \"Cristian\",\n                        \"last_name\": \"Gonzalez\",\n                        \"user_id\": \"57994537b43401c036026583\",\n                        \"premium_flag\": true,\n                        \"role\": \"founder\",\n                        \"responsiveness\": 20,\n                        \"city\": {\n                            \"label\": \"Barcelona, Spain\",\n                            \"name\": \"Barcelona\",\n                            \"country\": \"Spain\",\n                            \"country_code\": \"ES\",\n                            \"coordinates\": {\n                                \"latitude\": 41.3888,\n                                \"longitude\": 2.15899\n                            },\n                            \"id\": \"56cc14c488b042411c0b5a28\"\n                        },\n                        \"areas\": [\n                            \"engineering\"\n                        ],\n                        \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                        \"legacy_photo_url\": \"https://s3.amazonaws.com/cofounderslab-prod-media/user-71946_1441355485.jpg\",\n                        \"use_avatar\": false,\n                        \"url\": \"http://10.50.50.50:8000/profile/cristian-gonzalez-2\",\n                        \"connection_status\": \"accepted\"\n                    },\n                    \"read\": false\n                }\n            ],\n            \"current_participant_credits\": 0,\n            \"unread_messages\": 0,\n            \"can_be_mark_as_spammer\": false\n        }\n    },\n    \"errors\": []\n}"}],"_postman_id":"414a14e6-b999-414e-a6f5-91f506d74d0d"}],"id":"cbd73f84-9476-4ee5-ba2f-8a25db9f2fb3","description":"<p>Messages between users.</p>\n<h2 id=\"message-object\">Message Object</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Paramter</td>\n<td>Type</td>\n<td>Description</td>\n</tr>\n<tr>\n<td>author</td>\n<td>string</td>\n<td>Id of author message</td>\n</tr>\n<tr>\n<td>text</td>\n<td>string</td>\n<td>Message Text</td>\n</tr>\n<tr>\n<td>sent_at</td>\n<td>DateTime</td>\n<td>Date of sent message</td>\n</tr>\n<tr>\n<td>photo</td>\n<td>string</td>\n<td>Photo url</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"participant-object\">Participant Object</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>spam</td>\n<td>boolean</td>\n<td>Participant is a spammer?</td>\n</tr>\n<tr>\n<td>user_id</td>\n<td>string</td>\n<td>User id</td>\n</tr>\n<tr>\n<td>read_at</td>\n<td>DateTime</td>\n<td>When participant read conversation. Only when Participant is myself</td>\n</tr>\n<tr>\n<td>status</td>\n<td>string</td>\n<td>Status of conversation (active, archived). Only when Participant is myself.</td>\n</tr>\n<tr>\n<td>profile_info</td>\n<td>Profile Object</td>\n<td>Profile info</td>\n</tr>\n<tr>\n<td>read</td>\n<td>boolean</td>\n<td>Participant read conversation? Only when Participant is myself.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"conversation-object\">Conversation Object</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>string</td>\n<td>Conversation Id</td>\n</tr>\n<tr>\n<td>last_message</td>\n<td>Message Object</td>\n<td>Last message Sent</td>\n</tr>\n<tr>\n<td>message_count</td>\n<td>integer</td>\n<td>Number of messages sent</td>\n</tr>\n<tr>\n<td>created_at</td>\n<td>DateTime</td>\n<td>Date of created conversation</td>\n</tr>\n<tr>\n<td>updated_at</td>\n<td>DateTime</td>\n<td>Date of updated conversation</td>\n</tr>\n<tr>\n<td>participants</td>\n<td>Array Participant Object</td>\n<td>Participants in conversation</td>\n</tr>\n<tr>\n<td>messages</td>\n<td>Array Message Object</td>\n<td>Messages in conversation</td>\n</tr>\n<tr>\n<td>current_participants_credits</td>\n<td>integer</td>\n<td>Premium credits of user</td>\n</tr>\n<tr>\n<td>can_be_mark_as_spammer</td>\n<td>boolean</td>\n<td>User can mark other participant as spammer</td>\n</tr>\n<tr>\n<td>current_participant</td>\n<td>Participant Object</td>\n<td>Own Participant Object</td>\n</tr>\n<tr>\n<td>other_participants</td>\n<td>Array of Participant Object</td>\n<td>Other participants</td>\n</tr>\n<tr>\n<td>unread_messages</td>\n<td>integer</td>\n<td>Number of unread messages</td>\n</tr>\n</tbody>\n</table>\n</div><pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">{\n{\n      \"last_message\": {\n        \"author\": \"590b4ab927987180078b4569\",\n        \"text\": \"test\",\n        \"sent_at\": \"06/26/2017 15:12:07\"\n      },\n      \"message_count\": 3,\n      \"id\": \"59494dd5279871501c8b4571\",\n      \"created_at\": \"06/20/2017 16:31:17\",\n      \"updated_at\": \"06/26/2017 15:12:07\",\n      \"participants\": [\n        {\n          \"spam\": false,\n          \"user_id\": \"590b4ab927987180078b4569\",\n          \"status\": \"active\",\n          \"profile_info\": {\n            \"first_name\": \"Test1\",\n            \"last_name\": \"Test\",\n            \"user_id\": \"590b4ab927987180078b4569\",\n            \"role\": \"networker\",\n            \"responsiveness\": 100,\n            \"city\": {\n              \"label\": \"Barcelona, Spain\",\n              \"name\": \"Barcelona\",\n              \"country\": \"Spain\",\n              \"country_code\": \"ES\",\n              \"coordinates\": {\n                \"latitude\": 41.3888,\n                \"longitude\": 2.15899\n              },\n              \"id\": \"56cc14c488b042411c0b5a28\"\n            },\n            \"areas\": [\n              \"marketing\"\n            ],\n            \"photo\": \"https://s3.amazonaws.com/cofounderslab-testing/profiles/avatars/590b4adb3fe0a.jpeg\",\n            \"use_avatar\": false,\n            \"url\": \"http://10.50.50.50:8000/profile/test1-test\",\n            \"headline\": \"test\",\n            \"connection_status\": \"accepted\"\n          },\n          \"read\": true\n        },\n        {\n          \"spam\": false,\n          \"user_id\": \"57994537b43401c036026583\",\n          \"status\": \"active\",\n          \"profile_info\": {\n            \"first_name\": \"Cristian\",\n            \"last_name\": \"Gonzalez\",\n            \"user_id\": \"57994537b43401c036026583\",\n            \"premium_flag\": true,\n            \"role\": \"founder\",\n            \"responsiveness\": 20,\n            \"city\": {\n              \"label\": \"Barcelona, Spain\",\n              \"name\": \"Barcelona\",\n              \"country\": \"Spain\",\n              \"country_code\": \"ES\",\n              \"coordinates\": {\n                \"latitude\": 41.3888,\n                \"longitude\": 2.15899\n              },\n              \"id\": \"56cc14c488b042411c0b5a28\"\n            },\n            \"areas\": [\n              \"engineering\"\n            ],\n            \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n            \"legacy_photo_url\": \"https://s3.amazonaws.com/cofounderslab-prod-media/user-71946_1441355485.jpg\",\n            \"use_avatar\": false,\n            \"url\": \"http://10.50.50.50:8000/profile/cristian-gonzalez-2\",\n            \"connection_status\": \"accepted\"\n          },\n          \"read\": false\n        }\n      ],\n      \"messages\": [\n        {\n          \"author\": \"590b4ab927987180078b4569\",\n          \"text\": \"wrgwgera ff dfsdfff d\",\n          \"sent_at\": \"06/20/2017 16:31:17\"\n        },\n        {\n          \"author\": \"590b4ab927987180078b4569\",\n          \"text\": \"test\",\n          \"sent_at\": \"06/26/2017 15:11:30\"\n        },\n        {\n          \"author\": \"590b4ab927987180078b4569\",\n          \"text\": \"test\",\n          \"sent_at\": \"06/26/2017 15:12:07\"\n        }\n      ],\n      \"current_participant\": {\n        \"spam\": false,\n        \"user_id\": \"590b4ab927987180078b4569\",\n        \"status\": \"active\",\n        \"profile_info\": {\n          \"first_name\": \"Test1\",\n          \"last_name\": \"Test\",\n          \"user_id\": \"590b4ab927987180078b4569\",\n          \"role\": \"networker\",\n          \"responsiveness\": 100,\n          \"city\": {\n            \"label\": \"Barcelona, Spain\",\n            \"name\": \"Barcelona\",\n            \"country\": \"Spain\",\n            \"country_code\": \"ES\",\n            \"coordinates\": {\n              \"latitude\": 41.3888,\n              \"longitude\": 2.15899\n            },\n            \"id\": \"56cc14c488b042411c0b5a28\"\n          },\n          \"areas\": [\n            \"marketing\"\n          ],\n          \"photo\": \"https://s3.amazonaws.com/cofounderslab-testing/profiles/avatars/590b4adb3fe0a.jpeg\",\n          \"use_avatar\": false,\n          \"url\": \"http://10.50.50.50:8000/profile/test1-test\",\n          \"headline\": \"test\",\n          \"connection_status\": \"accepted\"\n        },\n        \"read\": true\n      },\n      \"other_participants\": {\n        \"1\": {\n          \"spam\": false,\n          \"user_id\": \"57994537b43401c036026583\",\n          \"profile_info\": {\n            \"first_name\": \"Cristian\",\n            \"last_name\": \"Gonzalez\",\n            \"user_id\": \"57994537b43401c036026583\",\n            \"premium_flag\": true,\n            \"role\": \"founder\",\n            \"responsiveness\": 20,\n            \"city\": {\n              \"label\": \"Barcelona, Spain\",\n              \"name\": \"Barcelona\",\n              \"country\": \"Spain\",\n              \"country_code\": \"ES\",\n              \"coordinates\": {\n                \"latitude\": 41.3888,\n                \"longitude\": 2.15899\n              },\n              \"id\": \"56cc14c488b042411c0b5a28\"\n            },\n            \"areas\": [\n              \"engineering\"\n            ],\n            \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n            \"legacy_photo_url\": \"https://s3.amazonaws.com/cofounderslab-prod-media/user-71946_1441355485.jpg\",\n            \"use_avatar\": false,\n            \"url\": \"http://10.50.50.50:8000/profile/cristian-gonzalez-2\",\n            \"connection_status\": \"accepted\"\n          },\n          \"read\": false\n        }\n      },\n      \"current_participant_credits\": 0,\n      \"unread_messages\": 0,\n      \"can_be_mark_as_spammer\": false\n    }\n</code></pre>\n","_postman_id":"cbd73f84-9476-4ee5-ba2f-8a25db9f2fb3"},{"name":"Marketing","item":[{"name":"SendContactMessage","event":[{"listen":"test","script":{"type":"text/javascript","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","tests[\"Body matches data\"] = responseBody.has(\"data\");","tests[\"Body matches id\"] = responseBody.has(\"id\");","","var jsonData = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"connection_user1_user2\", jsonData.data.id);"]}}],"id":"0d385a8a-c3fc-48e1-8bb3-f94988e558f0","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token_1}}"}],"body":{"mode":"formdata","formdata":[{"key":"name","value":"test","type":"text"},{"key":"email","value":"test@test.com","type":"text"},{"key":"subject","value":"Test Contact Message","type":"text"},{"key":"feel","value":"love_it","type":"text"},{"key":"message","value":"Testing Contact Message API","type":"text"}]},"url":"{{host}}/api/v2/send-contact-message","description":"<p>Send a contact message to CofoundersLab</p>\n<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>string</td>\n<td>true</td>\n<td>User contact name</td>\n</tr>\n<tr>\n<td>email</td>\n<td>string</td>\n<td>true</td>\n<td>User contact email</td>\n</tr>\n<tr>\n<td>subject</td>\n<td>string</td>\n<td>true</td>\n<td>Contact message subject</td>\n</tr>\n<tr>\n<td>feel</td>\n<td>string</td>\n<td>false</td>\n<td>Feel about app (disappointed, indifferent, love_it)</td>\n</tr>\n<tr>\n<td>message</td>\n<td>string</td>\n<td>true</td>\n<td>Contact message body</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\">Response</h2>\n<p>Array of ContactMessage Object</p>\n","urlObject":{"path":["api","v2","send-contact-message"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"cf9038e9-3382-4e92-b9e6-41edee6b5039","name":"400: Bad Request","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token_1}}","warning":""},{"key":"name","value":"test","warning":"","disabled":true},{"key":"email","value":"test@test.com","warning":""},{"key":"subject","value":"Test Contact Message","warning":""},{"key":"feel","value":"love_it","warning":""},{"key":"message","value":"Testing Contact Message API","warning":""}],"body":{"mode":"formdata","formdata":[{"key":"message","value":"test","type":"text"},{"key":"","value":"","type":"text","disabled":true}]},"url":"{{host}}/api/v2/send-contact-message"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"name":"Allow","key":"Allow","value":"POST","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"no-cache","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json","description":""},{"name":"Date","key":"Date","value":"Mon, 26 Jun 2017 15:13:14 GMT","description":""},{"name":"Server","key":"Server","value":"nginx/1.4.6 (Ubuntu)","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Debug-Token","key":"X-Debug-Token","value":"0890ca","description":""},{"name":"X-Debug-Token-Link","key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/0890ca","description":""}],"cookie":[{"expires":"Wed Jun 13 2018 10:29:38 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"PHPSTORM","key":"XDEBUG_SESSION"},{"expires":"Thu Jun 13 2019 16:06:42 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"ebd47827-25ce-4d3e-93d5-f442a724196b","key":"ahoy_visitor"},{"expires":"Thu Jun 13 2019 16:06:44 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"GA1.1.439762883.1497370005","key":"_ga"},{"expires":"Wed Jun 13 2018 16:06:46 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"88b1060_819d3869-8c8e-480f-b382-8a4b6e3b7f8f-6139e386a-66afc2cca253-6cad","key":"__distillery"},{"expires":"Thu Jun 13 2019 16:06:47 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"251003481.9a892c380504e42262198dae416e15f2.1497370007155.1497370007155.1497370007155.1","key":"__hstc"},{"expires":"Fri Jun 11 2027 16:06:47 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"9a892c380504e42262198dae416e15f2","key":"hubspotutk"},{"expires":"Sun Jul 23 2017 07:54:57 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"v4","key":"cfl_ab_onboarding"},{"expires":"Sun Jul 23 2017 08:39:01 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"premium-v4","key":"cfl_ab_premium_onboarding"},{"expires":"Wed Jul 26 2017 10:05:21 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"10egq297k92oqjd5l0d61aurq5","key":"PHPSESSID"},{"expires":"Wed Jul 26 2017 10:05:22 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"home-tagline-simplified","key":"cfl_ab_home"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":true,"value":"zHsmsn0lUi7ujqy0J-wrxSFhSoMUO_5wO_wXgQYkpTU","key":"XSRF-TOKEN"}],"responseTime":"1361","body":"{\n    \"data\": [],\n    \"errors\": [\n        {\n            \"name\": {\n                \"code\": 1003,\n                \"constraint\": \"NotNull\"\n            }\n        },\n        {\n            \"name\": {\n                \"code\": 1001,\n                \"constraint\": \"NotBlank\"\n            }\n        }\n    ]\n}"},{"id":"f074858b-9fe0-46a1-93cd-07c009f4a0b2","name":"200: Ok","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer ZjU5YWNjZDRjYjczZmFmZDcwNDQwZWQ2MTIzYzBjOTQ5MTE5NDU0YjhkYzQyYjg0MmIxNzM2MjM4NTU3NjZhMg"},{"key":"name","value":"test"},{"key":"email","value":"test@test.com"},{"key":"subject","value":"Test Contact Message"},{"key":"feel","value":"love_it"},{"key":"message","value":"Testing Contact Message API"}],"body":{"mode":"formdata","formdata":[{"key":"message","value":"test","type":"text"},{"key":"","value":"","type":"text","disabled":true}]},"url":"{{host}}/api/v2/send-contact-message"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Allow","key":"Allow","value":"POST","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"no-cache","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json","description":""},{"name":"Date","key":"Date","value":"Mon, 26 Jun 2017 15:12:08 GMT","description":""},{"name":"Server","key":"Server","value":"nginx/1.4.6 (Ubuntu)","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Debug-Token","key":"X-Debug-Token","value":"f294f1","description":""},{"name":"X-Debug-Token-Link","key":"X-Debug-Token-Link","value":"http://localhost:8000/_profiler/f294f1","description":""}],"cookie":[{"expires":"Wed Jun 13 2018 10:29:38 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"PHPSTORM","key":"XDEBUG_SESSION"},{"expires":"Thu Jun 13 2019 16:06:42 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"ebd47827-25ce-4d3e-93d5-f442a724196b","key":"ahoy_visitor"},{"expires":"Thu Jun 13 2019 16:06:44 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"GA1.1.439762883.1497370005","key":"_ga"},{"expires":"Wed Jun 13 2018 16:06:46 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"88b1060_819d3869-8c8e-480f-b382-8a4b6e3b7f8f-6139e386a-66afc2cca253-6cad","key":"__distillery"},{"expires":"Thu Jun 13 2019 16:06:47 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"251003481.9a892c380504e42262198dae416e15f2.1497370007155.1497370007155.1497370007155.1","key":"__hstc"},{"expires":"Fri Jun 11 2027 16:06:47 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"9a892c380504e42262198dae416e15f2","key":"hubspotutk"},{"expires":"Sun Jul 23 2017 07:54:57 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"v4","key":"cfl_ab_onboarding"},{"expires":"Sun Jul 23 2017 08:39:01 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"premium-v4","key":"cfl_ab_premium_onboarding"},{"expires":"Wed Jul 26 2017 10:05:21 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"10egq297k92oqjd5l0d61aurq5","key":"PHPSESSID"},{"expires":"Wed Jul 26 2017 10:05:22 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"home-tagline-simplified","key":"cfl_ab_home"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":true,"value":"zHsmsn0lUi7ujqy0J-wrxSFhSoMUO_5wO_wXgQYkpTU","key":"XSRF-TOKEN"}],"responseTime":"2287","body":"{\n    \"data\": {\n        \"id\": \"5953a2857374a0a0580041b9\",\n        \"name\": \"test\",\n        \"email\": \"test@test.com\",\n        \"subject\": \"Test Contact Message\",\n        \"feel\": \"love_it\",\n        \"message\": \"Testing Contact Message API\",\n        \"sent_at\": \"06/28/2017 12:35:17\",\n        \"ip_address\": \"127.0.0.1\",\n        \"user_agent\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36\"\n    },\n    \"errors\": []\n}"}],"_postman_id":"0d385a8a-c3fc-48e1-8bb3-f94988e558f0"}],"id":"b079e8e4-e7d2-46d4-ac92-4373f2e5bca7","_postman_id":"b079e8e4-e7d2-46d4-ac92-4373f2e5bca7","description":""},{"name":"Notifications","item":[{"name":"MarkNotificationsAsRead","event":[{"listen":"test","script":{"type":"text/javascript","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"]}}],"id":"ec68a0fc-7a69-4d5f-b26b-2363bcdd70d1","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token_1}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/api/v2/notification/read/{{type}}","description":"<p>Set user notifications as read. If type is global-all, all notifications will be set as read.</p>\n<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>type</td>\n<td>string</td>\n<td>true</td>\n<td>Notification type (global-all, global-discuss, new-answer, new-answer-follower, new-upvote, new-question-follower, new-favorite-to, new-favorite-me, new-favorite-mutual, new-connection-requested, new-connection-accepted)</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\">Response</h2>\n<p>Empty body with http code 200.</p>\n","urlObject":{"path":["api","v2","notification","read","{{type}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"20be18dd-44ed-41d4-866e-9d7c33adc29d","name":"400: Bad Request","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token_1}}","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"message","value":"test","type":"text"},{"key":"","value":"","type":"text","disabled":true}]},"url":"{{host}}/api/v2/notification/read/new-connection-unknow"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"name":"Allow","key":"Allow","value":"POST","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"no-cache","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json","description":""},{"name":"Date","key":"Date","value":"Mon, 26 Jun 2017 15:13:14 GMT","description":""},{"name":"Server","key":"Server","value":"nginx/1.4.6 (Ubuntu)","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Debug-Token","key":"X-Debug-Token","value":"0890ca","description":""},{"name":"X-Debug-Token-Link","key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/0890ca","description":""}],"cookie":[{"expires":"Wed Jun 13 2018 10:29:38 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"PHPSTORM","key":"XDEBUG_SESSION"},{"expires":"Thu Jun 13 2019 16:06:42 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"ebd47827-25ce-4d3e-93d5-f442a724196b","key":"ahoy_visitor"},{"expires":"Thu Jun 13 2019 16:06:44 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"GA1.1.439762883.1497370005","key":"_ga"},{"expires":"Wed Jun 13 2018 16:06:46 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"88b1060_819d3869-8c8e-480f-b382-8a4b6e3b7f8f-6139e386a-66afc2cca253-6cad","key":"__distillery"},{"expires":"Thu Jun 13 2019 16:06:47 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"251003481.9a892c380504e42262198dae416e15f2.1497370007155.1497370007155.1497370007155.1","key":"__hstc"},{"expires":"Fri Jun 11 2027 16:06:47 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"9a892c380504e42262198dae416e15f2","key":"hubspotutk"},{"expires":"Sun Jul 23 2017 07:54:57 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"v4","key":"cfl_ab_onboarding"},{"expires":"Sun Jul 23 2017 08:39:01 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"premium-v4","key":"cfl_ab_premium_onboarding"},{"expires":"Wed Jul 26 2017 10:05:21 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"10egq297k92oqjd5l0d61aurq5","key":"PHPSESSID"},{"expires":"Wed Jul 26 2017 10:05:22 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"home-tagline-simplified","key":"cfl_ab_home"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":true,"value":"zHsmsn0lUi7ujqy0J-wrxSFhSoMUO_5wO_wXgQYkpTU","key":"XSRF-TOKEN"}],"responseTime":"1361","body":"{\n    \"data\": [],\n    \"errors\": [\n        {\n            \"type\": {\n                \"code\": 1501,\n                \"constraint\": \"Choice\"\n            }\n        }\n    ]\n}"},{"id":"c3b44775-3557-4047-9db6-96942b1892aa","name":"200: Ok","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token_1}}"}],"body":{"mode":"formdata","formdata":[{"key":"","value":"","type":"text","disabled":true}]},"url":"{{host}}/api/v2/notification/read/{{notification_type}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Allow","key":"Allow","value":"POST","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"no-cache","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json","description":""},{"name":"Date","key":"Date","value":"Mon, 26 Jun 2017 15:12:08 GMT","description":""},{"name":"Server","key":"Server","value":"nginx/1.4.6 (Ubuntu)","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Debug-Token","key":"X-Debug-Token","value":"f294f1","description":""},{"name":"X-Debug-Token-Link","key":"X-Debug-Token-Link","value":"http://localhost:8000/_profiler/f294f1","description":""}],"cookie":[{"expires":"Wed Jun 13 2018 10:29:38 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"PHPSTORM","key":"XDEBUG_SESSION"},{"expires":"Thu Jun 13 2019 16:06:42 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"ebd47827-25ce-4d3e-93d5-f442a724196b","key":"ahoy_visitor"},{"expires":"Thu Jun 13 2019 16:06:44 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"GA1.1.439762883.1497370005","key":"_ga"},{"expires":"Wed Jun 13 2018 16:06:46 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"88b1060_819d3869-8c8e-480f-b382-8a4b6e3b7f8f-6139e386a-66afc2cca253-6cad","key":"__distillery"},{"expires":"Thu Jun 13 2019 16:06:47 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"251003481.9a892c380504e42262198dae416e15f2.1497370007155.1497370007155.1497370007155.1","key":"__hstc"},{"expires":"Fri Jun 11 2027 16:06:47 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"9a892c380504e42262198dae416e15f2","key":"hubspotutk"},{"expires":"Sun Jul 23 2017 07:54:57 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"v4","key":"cfl_ab_onboarding"},{"expires":"Sun Jul 23 2017 08:39:01 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"premium-v4","key":"cfl_ab_premium_onboarding"},{"expires":"Wed Jul 26 2017 10:05:21 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"10egq297k92oqjd5l0d61aurq5","key":"PHPSESSID"},{"expires":"Wed Jul 26 2017 10:05:22 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"home-tagline-simplified","key":"cfl_ab_home"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":true,"value":"zHsmsn0lUi7ujqy0J-wrxSFhSoMUO_5wO_wXgQYkpTU","key":"XSRF-TOKEN"}],"responseTime":"2287","body":"{\n    \"data\": \"\",\n    \"errors\": []\n}"}],"_postman_id":"ec68a0fc-7a69-4d5f-b26b-2363bcdd70d1"},{"name":"SearchUserNotifications","event":[{"listen":"test","script":{"type":"text/javascript","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"]}}],"id":"a164ae8a-2503-4209-abf9-c4040a7e1b7f","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token_1}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/api/v2/notification/search","description":"<p>Returns a collection of user notifications.</p>\n<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>read</td>\n<td>boolean</td>\n<td>false</td>\n<td>Read status (1, 0). Default 1</td>\n</tr>\n<tr>\n<td>types</td>\n<td>array(string)</td>\n<td>false</td>\n<td>Types are: global-discuss global-connections, global-favorites</td>\n</tr>\n<tr>\n<td>page</td>\n<td>integer</td>\n<td>false</td>\n<td>Results page. Default 0</td>\n</tr>\n<tr>\n<td>page_size</td>\n<td>integer</td>\n<td>false</td>\n<td>Results per page. Default 30</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\">Response</h2>\n<p>Array of Notification Object</p>\n","urlObject":{"path":["api","v2","notification","search"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"68d012b4-d2be-4e27-9717-bdf04cd7258f","name":"400: Bad Request","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token_1}}"}],"body":{"mode":"formdata","formdata":[{"key":"message","value":"test","type":"text"},{"key":"","value":"","type":"text","disabled":true}]},"url":{"raw":"{{host}}/api/v2/notification/search?read=test","host":["{{host}}"],"path":["api","v2","notification","search"],"query":[{"key":"read","value":"test"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"name":"Allow","key":"Allow","value":"POST","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"no-cache","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json","description":""},{"name":"Date","key":"Date","value":"Mon, 26 Jun 2017 15:13:14 GMT","description":""},{"name":"Server","key":"Server","value":"nginx/1.4.6 (Ubuntu)","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Debug-Token","key":"X-Debug-Token","value":"0890ca","description":""},{"name":"X-Debug-Token-Link","key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/0890ca","description":""}],"cookie":[{"expires":"Wed Jun 13 2018 10:29:38 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"PHPSTORM","key":"XDEBUG_SESSION"},{"expires":"Thu Jun 13 2019 16:06:42 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"ebd47827-25ce-4d3e-93d5-f442a724196b","key":"ahoy_visitor"},{"expires":"Thu Jun 13 2019 16:06:44 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"GA1.1.439762883.1497370005","key":"_ga"},{"expires":"Wed Jun 13 2018 16:06:46 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"88b1060_819d3869-8c8e-480f-b382-8a4b6e3b7f8f-6139e386a-66afc2cca253-6cad","key":"__distillery"},{"expires":"Thu Jun 13 2019 16:06:47 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"251003481.9a892c380504e42262198dae416e15f2.1497370007155.1497370007155.1497370007155.1","key":"__hstc"},{"expires":"Fri Jun 11 2027 16:06:47 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"9a892c380504e42262198dae416e15f2","key":"hubspotutk"},{"expires":"Sun Jul 23 2017 07:54:57 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"v4","key":"cfl_ab_onboarding"},{"expires":"Sun Jul 23 2017 08:39:01 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"premium-v4","key":"cfl_ab_premium_onboarding"},{"expires":"Wed Jul 26 2017 10:05:21 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"10egq297k92oqjd5l0d61aurq5","key":"PHPSESSID"},{"expires":"Wed Jul 26 2017 10:05:22 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"home-tagline-simplified","key":"cfl_ab_home"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":true,"value":"zHsmsn0lUi7ujqy0J-wrxSFhSoMUO_5wO_wXgQYkpTU","key":"XSRF-TOKEN"}],"responseTime":"1361","body":"{\n    \"data\": [],\n    \"errors\": [\n        {\n            \"read\": {\n                \"code\": 1007,\n                \"constraint\": \"Type\"\n            }\n        }\n    ]\n}"},{"id":"ef0abd3b-95f6-4a18-94b4-1ac39b87b4fd","name":"200: Ok","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer ZjU5YWNjZDRjYjczZmFmZDcwNDQwZWQ2MTIzYzBjOTQ5MTE5NDU0YjhkYzQyYjg0MmIxNzM2MjM4NTU3NjZhMg"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{host}}/api/v2/notification/search?types[]=global-connections","host":["{{host}}"],"path":["api","v2","notification","search"],"query":[{"key":"types[]","value":"global-connections"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Allow","key":"Allow","value":"POST","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"no-cache","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json","description":""},{"name":"Date","key":"Date","value":"Mon, 26 Jun 2017 15:12:08 GMT","description":""},{"name":"Server","key":"Server","value":"nginx/1.4.6 (Ubuntu)","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Debug-Token","key":"X-Debug-Token","value":"f294f1","description":""},{"name":"X-Debug-Token-Link","key":"X-Debug-Token-Link","value":"http://localhost:8000/_profiler/f294f1","description":""}],"cookie":[{"expires":"Wed Jun 13 2018 10:29:38 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"PHPSTORM","key":"XDEBUG_SESSION"},{"expires":"Thu Jun 13 2019 16:06:42 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"ebd47827-25ce-4d3e-93d5-f442a724196b","key":"ahoy_visitor"},{"expires":"Thu Jun 13 2019 16:06:44 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"GA1.1.439762883.1497370005","key":"_ga"},{"expires":"Wed Jun 13 2018 16:06:46 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"88b1060_819d3869-8c8e-480f-b382-8a4b6e3b7f8f-6139e386a-66afc2cca253-6cad","key":"__distillery"},{"expires":"Thu Jun 13 2019 16:06:47 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"251003481.9a892c380504e42262198dae416e15f2.1497370007155.1497370007155.1497370007155.1","key":"__hstc"},{"expires":"Fri Jun 11 2027 16:06:47 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"9a892c380504e42262198dae416e15f2","key":"hubspotutk"},{"expires":"Sun Jul 23 2017 07:54:57 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"v4","key":"cfl_ab_onboarding"},{"expires":"Sun Jul 23 2017 08:39:01 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"premium-v4","key":"cfl_ab_premium_onboarding"},{"expires":"Wed Jul 26 2017 10:05:21 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"10egq297k92oqjd5l0d61aurq5","key":"PHPSESSID"},{"expires":"Wed Jul 26 2017 10:05:22 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"home-tagline-simplified","key":"cfl_ab_home"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":true,"value":"zHsmsn0lUi7ujqy0J-wrxSFhSoMUO_5wO_wXgQYkpTU","key":"XSRF-TOKEN"}],"responseTime":"2287","body":"{\n    \"data\": [\n        {\n            \"id\": \"594d33557374a0f5060041b4\",\n            \"type\": \"new-connection-accepted\",\n            \"read\": true,\n            \"args\": {\n                \"name\": \"Victor Herrero\",\n                \"body\": \"\",\n                \"url\": \"\"\n            },\n            \"sent_at\": \"Jun 23\"\n        },\n        {\n            \"id\": \"594d33557374a0f5060041f5\",\n            \"type\": \"new-connection-requested\",\n            \"read\": true,\n            \"args\": {\n                \"name\": \"Thomas Anderson\",\n                \"body\": \"\",\n                \"url\": \"\"\n            },\n            \"sent_at\": \"07/18/2017 07:59:49\"\n        }\n    ],\n    \"meta\": {\n        \"page\": 0,\n        \"page_size\": 30,\n        \"result_count\": 1,\n        \"page_last\": 0,\n        \"order_by\": {\n            \"sentAt\": \"DESC\"\n        }\n    }\n}"}],"_postman_id":"a164ae8a-2503-4209-abf9-c4040a7e1b7f"},{"name":"GetNotificationsCounters","event":[{"listen":"test","script":{"type":"text/javascript","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;"]}}],"id":"9d71a5e8-c9d4-4cdc-bb21-3e6f8afdb880","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token_1}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/api/v2/notification/counters","description":"<p>Get user unread notifications counters as array.</p>\n<h2 id=\"response\">Response</h2>\n<p>Array of Notification counters</p>\n","urlObject":{"path":["api","v2","notification","counters"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"800622c5-30f3-4528-a8e7-9a333c176f7a","name":"200: Ok","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer ZjU5YWNjZDRjYjczZmFmZDcwNDQwZWQ2MTIzYzBjOTQ5MTE5NDU0YjhkYzQyYjg0MmIxNzM2MjM4NTU3NjZhMg"}],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/api/v2/notification/counters"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Allow","key":"Allow","value":"POST","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"no-cache","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json","description":""},{"name":"Date","key":"Date","value":"Mon, 26 Jun 2017 15:12:08 GMT","description":""},{"name":"Server","key":"Server","value":"nginx/1.4.6 (Ubuntu)","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Debug-Token","key":"X-Debug-Token","value":"f294f1","description":""},{"name":"X-Debug-Token-Link","key":"X-Debug-Token-Link","value":"http://localhost:8000/_profiler/f294f1","description":""}],"cookie":[{"expires":"Wed Jun 13 2018 10:29:38 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"PHPSTORM","key":"XDEBUG_SESSION"},{"expires":"Thu Jun 13 2019 16:06:42 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"ebd47827-25ce-4d3e-93d5-f442a724196b","key":"ahoy_visitor"},{"expires":"Thu Jun 13 2019 16:06:44 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"GA1.1.439762883.1497370005","key":"_ga"},{"expires":"Wed Jun 13 2018 16:06:46 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"88b1060_819d3869-8c8e-480f-b382-8a4b6e3b7f8f-6139e386a-66afc2cca253-6cad","key":"__distillery"},{"expires":"Thu Jun 13 2019 16:06:47 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"251003481.9a892c380504e42262198dae416e15f2.1497370007155.1497370007155.1497370007155.1","key":"__hstc"},{"expires":"Fri Jun 11 2027 16:06:47 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"9a892c380504e42262198dae416e15f2","key":"hubspotutk"},{"expires":"Sun Jul 23 2017 07:54:57 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"v4","key":"cfl_ab_onboarding"},{"expires":"Sun Jul 23 2017 08:39:01 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"premium-v4","key":"cfl_ab_premium_onboarding"},{"expires":"Wed Jul 26 2017 10:05:21 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"10egq297k92oqjd5l0d61aurq5","key":"PHPSESSID"},{"expires":"Wed Jul 26 2017 10:05:22 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"home-tagline-simplified","key":"cfl_ab_home"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":true,"value":"zHsmsn0lUi7ujqy0J-wrxSFhSoMUO_5wO_wXgQYkpTU","key":"XSRF-TOKEN"}],"responseTime":"2287","body":"{\n    \"data\": {\n        \"global-all\": 3,\n        \"new-answer\": 7,\n        \"new-answer-follower\": 15,\n        \"new-upvote\": 8,\n        \"new-question-follower\": 2,\n        \"new-favorite-to\": 1,\n        \"new-favorite-me\": 3,\n        \"new-favorite-mutual\": 2,\n        \"global-discuss\": 4,\n        \"new-connection-requested\": 20,\n        \"new-connection-accepted\": 5,\n        \"unread_messages\": 5\n    },\n    \"errors\": []\n}"}],"_postman_id":"9d71a5e8-c9d4-4cdc-bb21-3e6f8afdb880"}],"id":"d894e7c0-aae6-4d44-90e7-e668791a5264","_postman_id":"d894e7c0-aae6-4d44-90e7-e668791a5264","description":""},{"name":"Potential Connections","item":[{"name":"View","event":[{"listen":"test","script":{"type":"text/javascript","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","tests[\"Body matches data\"] = responseBody.has(\"data\");","tests[\"Body matches id\"] = responseBody.has(\"id\");","","var jsonData = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"connection_user1_user2\", jsonData.data.id);"]}}],"id":"3131ed06-6f12-4e8b-9a87-26adf3d0613b","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"receiver_id","value":"{{user_id_2}}","type":"text"},{"key":"intention","value":"other","type":"text"},{"key":"personal_message","value":"test","type":"text"},{"key":"","value":"","type":"text","disabled":true}]},"url":"{{host}}/api/v2/potential-connections","description":"<p>Gets all the potential connections filtered by query parameters for the user</p>\n<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>page</td>\n<td>integer</td>\n<td>false</td>\n<td>Page if use pagination. Default 0</td>\n</tr>\n<tr>\n<td>page_size</td>\n<td>integer</td>\n<td>false</td>\n<td>Page size. Default 10</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\">Response</h2>\n<p>Array of Potential Connections Object</p>\n","urlObject":{"path":["api","v2","potential-connections"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"3675005b-ad9f-47f7-a754-f892457952ba","name":"200: OK","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[{"key":"receiver_id","value":"{{user_id_2}}","type":"text"},{"key":"intention","value":"other","type":"text"},{"key":"personal_message","value":"test","type":"text"},{"key":"","value":"","type":"text","disabled":true}]},"url":"{{host}}/api/v2/potential-connections"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Allow","key":"Allow","value":"GET","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"no-cache","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json","description":""},{"name":"Date","key":"Date","value":"Thu, 18 May 2017 11:54:59 GMT","description":""},{"name":"Server","key":"Server","value":"nginx/1.4.6 (Ubuntu)","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Debug-Token","key":"X-Debug-Token","value":"01a320","description":""},{"name":"X-Debug-Token-Link","key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/01a320","description":""}],"cookie":[{"expires":"Sat Jun 03 2017 15:37:29 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"v2","key":"cfl_ab_onboarding"},{"expires":"Wed Jun 07 2017 17:15:03 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"qh4thca8fjji51djn7poi17sb7","key":"PHPSESSID"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":true,"value":"GQtE69lKP5yYoAWhp_CM992Zqzo72iwVVs1d3mt_B0E","key":"XSRF-TOKEN"}],"responseTime":"410","body":"{\n    \"data\": [\n        {\n            \"id\": \"59d4c4f127987155048b456b\",\n            \"users\": [\n                {\n                    \"$id\": \"57994537b43401c036026583\"\n                },\n                {\n                    \"$id\": \"579944feb43401c03601e16d\"\n                }\n            ],\n            \"profiles_info\": [\n                {\n                    \"first_name\": \"Cristian\",\n                    \"last_name\": \"Gonzalez\",\n                    \"user_id\": \"57994537b43401c036026583\",\n                    \"premium_flag\": true,\n                    \"role\": \"founder\",\n                    \"responsiveness\": 22.73,\n                    \"city\": {\n                        \"label\": \"Barcelona, Spain\",\n                        \"name\": \"Barcelona\",\n                        \"region\": \"Catalunya\",\n                        \"region_code\": \"CT\",\n                        \"country\": \"Spain\",\n                        \"country_code\": \"ES\",\n                        \"id\": \"56cc14c488b042411c0b5a28\"\n                    },\n                    \"areas\": [\n                        \"engineering\"\n                    ],\n                    \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                    \"legacy_photo_url\": \"https://s3.amazonaws.com/cofounderslab-prod-media/user-71946_1441355485.jpg\",\n                    \"use_avatar\": false,\n                    \"url\": \"http://10.50.50.50:8000/profile/cristian-gonzalez-2\",\n                    \"headline\": \"CTO at CoFoundersLab\",\n                    \"connection_status\": \"accepted\"\n                },\n                {\n                    \"first_name\": \"Alejandro\",\n                    \"last_name\": \"Cremades\",\n                    \"user_id\": \"579944feb43401c03601e16d\",\n                    \"premium_flag\": true,\n                    \"role\": \"founder\",\n                    \"responsiveness\": 83.67,\n                    \"city\": {\n                        \"label\": \"New York, New York, US\",\n                        \"name\": \"New York\",\n                        \"region\": \"New York\",\n                        \"region_code\": \"NY\",\n                        \"country\": \"United States\",\n                        \"country_code\": \"US\",\n                        \"id\": \"56cc14c588b042411c0bab51\"\n                    },\n                    \"areas\": [\n                        \"business-development\"\n                    ],\n                    \"photo\": \"https://s3.amazonaws.com/cofounderslab-prod-media/user-54209_1463793579.jpg\",\n                    \"legacy_photo_url\": \"https://s3.amazonaws.com/cofounderslab-prod-media/user-54209_1463793579.jpg\",\n                    \"use_avatar\": false,\n                    \"url\": \"http://10.50.50.50:8000/profile/alejandro-cremades\",\n                    \"headline\": \"Executive Chairman at CoFoundersLab\",\n                    \"connection_status\": \"not_existing_connection\"\n                }\n            ],\n            \"score\": 4,\n            \"score_social_networks\": 0,\n            \"score_profile_info\": 0,\n            \"score_mutual_connections\": 4,\n            \"created_at\": \"2017-10-04T11:24:33+0000\"\n        },\n        {\n            \"id\": \"59d4c4f127987155048b456c\",\n            \"users\": [\n                {\n                    \"$id\": \"57994537b43401c036026583\"\n                },\n                {\n                    \"$id\": \"585815294e121c8527e86638\"\n                }\n            ],\n            \"profiles_info\": [\n                {\n                    \"first_name\": \"Cristian\",\n                    \"last_name\": \"Gonzalez\",\n                    \"user_id\": \"57994537b43401c036026583\",\n                    \"premium_flag\": true,\n                    \"role\": \"founder\",\n                    \"responsiveness\": 22.73,\n                    \"city\": {\n                        \"label\": \"Barcelona, Spain\",\n                        \"name\": \"Barcelona\",\n                        \"region\": \"Catalunya\",\n                        \"region_code\": \"CT\",\n                        \"country\": \"Spain\",\n                        \"country_code\": \"ES\",\n                        \"id\": \"56cc14c488b042411c0b5a28\"\n                    },\n                    \"areas\": [\n                        \"engineering\"\n                    ],\n                    \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                    \"legacy_photo_url\": \"https://s3.amazonaws.com/cofounderslab-prod-media/user-71946_1441355485.jpg\",\n                    \"use_avatar\": false,\n                    \"url\": \"http://10.50.50.50:8000/profile/cristian-gonzalez-2\",\n                    \"headline\": \"CTO at CoFoundersLab\",\n                    \"connection_status\": \"accepted\"\n                },\n                {\n                    \"first_name\": \"Eli\",\n                    \"last_name\": \"Epstein\",\n                    \"user_id\": \"585815294e121c8527e86638\",\n                    \"premium_flag\": true,\n                    \"role\": \"networker\",\n                    \"responsiveness\": 100,\n                    \"city\": {\n                        \"label\": \"New York, New York, US\",\n                        \"name\": \"New York\",\n                        \"region\": \"New York\",\n                        \"region_code\": \"NY\",\n                        \"country\": \"United States of America\",\n                        \"country_code\": \"US\",\n                        \"id\": \"56cc14c588b042411c0bab51\"\n                    },\n                    \"areas\": [\n                        \"marketing\",\n                        \"public-relations\"\n                    ],\n                    \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                    \"use_avatar\": false,\n                    \"url\": \"http://10.50.50.50:8000/profile/eli-epstein-new-york-rgxta\",\n                    \"headline\": \"Head of Content at CoFoundersLab\",\n                    \"connection_status\": \"not_existing_connection\"\n                }\n            ],\n            \"score\": 3,\n            \"score_social_networks\": 0,\n            \"score_profile_info\": 0,\n            \"score_mutual_connections\": 3,\n            \"created_at\": \"2017-10-04T11:24:33+0000\"\n        },\n        {\n            \"id\": \"59d4c4f127987155048b456f\",\n            \"users\": [\n                {\n                    \"$id\": \"57994537b43401c036026583\"\n                },\n                {\n                    \"$id\": \"58d3b3993eab4663013eb2d1\"\n                }\n            ],\n            \"profiles_info\": [\n                {\n                    \"first_name\": \"Cristian\",\n                    \"last_name\": \"Gonzalez\",\n                    \"user_id\": \"57994537b43401c036026583\",\n                    \"premium_flag\": true,\n                    \"role\": \"founder\",\n                    \"responsiveness\": 22.73,\n                    \"city\": {\n                        \"label\": \"Barcelona, Spain\",\n                        \"name\": \"Barcelona\",\n                        \"region\": \"Catalunya\",\n                        \"region_code\": \"CT\",\n                        \"country\": \"Spain\",\n                        \"country_code\": \"ES\",\n                        \"id\": \"56cc14c488b042411c0b5a28\"\n                    },\n                    \"areas\": [\n                        \"engineering\"\n                    ],\n                    \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                    \"legacy_photo_url\": \"https://s3.amazonaws.com/cofounderslab-prod-media/user-71946_1441355485.jpg\",\n                    \"use_avatar\": false,\n                    \"url\": \"http://10.50.50.50:8000/profile/cristian-gonzalez-2\",\n                    \"headline\": \"CTO at CoFoundersLab\",\n                    \"connection_status\": \"accepted\"\n                },\n                {\n                    \"first_name\": \"Javier\",\n                    \"last_name\": \"Romero\",\n                    \"user_id\": \"58d3b3993eab4663013eb2d1\",\n                    \"role\": \"networker\",\n                    \"responsiveness\": 100,\n                    \"city\": {\n                        \"label\": \"Barcelona, Spain\",\n                        \"name\": \"Barcelona\",\n                        \"region\": \"\",\n                        \"region_code\": \"\",\n                        \"country\": \"Spain\",\n                        \"country_code\": \"ES\",\n                        \"id\": \"56cc14c488b042411c0b5a28\"\n                    },\n                    \"areas\": [\n                        \"engineering\",\n                        \"product-management\"\n                    ],\n                    \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                    \"use_avatar\": false,\n                    \"url\": \"http://10.50.50.50:8000/profile/javier-romero-1\",\n                    \"headline\": \"Senior Developer at CoFoundersLab\",\n                    \"connection_status\": \"accepted\"\n                }\n            ],\n            \"score\": 3,\n            \"score_social_networks\": 0,\n            \"score_profile_info\": 0,\n            \"score_mutual_connections\": 3,\n            \"created_at\": \"2017-10-04T11:24:33+0000\"\n        },\n        {\n            \"id\": \"59d4c4f127987155048b4572\",\n            \"users\": [\n                {\n                    \"$id\": \"57994537b43401c036026583\"\n                },\n                {\n                    \"$id\": \"58bfd79289161c9d5759d290\"\n                }\n            ],\n            \"profiles_info\": [\n                {\n                    \"first_name\": \"Cristian\",\n                    \"last_name\": \"Gonzalez\",\n                    \"user_id\": \"57994537b43401c036026583\",\n                    \"premium_flag\": true,\n                    \"role\": \"founder\",\n                    \"responsiveness\": 22.73,\n                    \"city\": {\n                        \"label\": \"Barcelona, Spain\",\n                        \"name\": \"Barcelona\",\n                        \"region\": \"Catalunya\",\n                        \"region_code\": \"CT\",\n                        \"country\": \"Spain\",\n                        \"country_code\": \"ES\",\n                        \"id\": \"56cc14c488b042411c0b5a28\"\n                    },\n                    \"areas\": [\n                        \"engineering\"\n                    ],\n                    \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                    \"legacy_photo_url\": \"https://s3.amazonaws.com/cofounderslab-prod-media/user-71946_1441355485.jpg\",\n                    \"use_avatar\": false,\n                    \"url\": \"http://10.50.50.50:8000/profile/cristian-gonzalez-2\",\n                    \"headline\": \"CTO at CoFoundersLab\",\n                    \"connection_status\": \"accepted\"\n                },\n                {\n                    \"first_name\": \"Judit\",\n                    \"last_name\": \"Sánchez Garrido\",\n                    \"user_id\": \"58bfd79289161c9d5759d290\",\n                    \"role\": \"founder\",\n                    \"responsiveness\": 100,\n                    \"city\": {\n                        \"label\": \"Barcelona, Spain\",\n                        \"name\": \"Barcelona\",\n                        \"region\": \"Catalunya\",\n                        \"region_code\": \"CT\",\n                        \"country\": \"Spain\",\n                        \"country_code\": \"ES\",\n                        \"id\": \"56cc14c488b042411c0b5a28\"\n                    },\n                    \"areas\": [\n                        \"programming-development\",\n                        \"design\",\n                        \"business-development\"\n                    ],\n                    \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                    \"avatar\": 1,\n                    \"use_avatar\": false,\n                    \"url\": \"http://10.50.50.50:8000/profile/judit-sanchez-garrido\",\n                    \"headline\": \"CoFounder at JellyBrains & Founder at JodieHag // Front End Developer\",\n                    \"connection_status\": \"accepted\"\n                }\n            ],\n            \"score\": 3,\n            \"score_social_networks\": 0,\n            \"score_profile_info\": 0,\n            \"score_mutual_connections\": 3,\n            \"created_at\": \"2017-10-04T11:24:33+0000\"\n        },\n        {\n            \"id\": \"59d4c4f127987155048b4573\",\n            \"users\": [\n                {\n                    \"$id\": \"57994537b43401c036026583\"\n                },\n                {\n                    \"$id\": \"591599b077ab46150daf9a98\"\n                }\n            ],\n            \"profiles_info\": [\n                {\n                    \"first_name\": \"Cristian\",\n                    \"last_name\": \"Gonzalez\",\n                    \"user_id\": \"57994537b43401c036026583\",\n                    \"premium_flag\": true,\n                    \"role\": \"founder\",\n                    \"responsiveness\": 22.73,\n                    \"city\": {\n                        \"label\": \"Barcelona, Spain\",\n                        \"name\": \"Barcelona\",\n                        \"region\": \"Catalunya\",\n                        \"region_code\": \"CT\",\n                        \"country\": \"Spain\",\n                        \"country_code\": \"ES\",\n                        \"id\": \"56cc14c488b042411c0b5a28\"\n                    },\n                    \"areas\": [\n                        \"engineering\"\n                    ],\n                    \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                    \"legacy_photo_url\": \"https://s3.amazonaws.com/cofounderslab-prod-media/user-71946_1441355485.jpg\",\n                    \"use_avatar\": false,\n                    \"url\": \"http://10.50.50.50:8000/profile/cristian-gonzalez-2\",\n                    \"headline\": \"CTO at CoFoundersLab\",\n                    \"connection_status\": \"accepted\"\n                },\n                {\n                    \"first_name\": \"Bern\",\n                    \"last_name\": \"Rodríguez\",\n                    \"user_id\": \"591599b077ab46150daf9a98\",\n                    \"role\": \"founder\",\n                    \"responsiveness\": 100,\n                    \"city\": {\n                        \"label\": \"Barcelona, Spain\",\n                        \"name\": \"Barcelona\",\n                        \"region\": \"Catalunya\",\n                        \"region_code\": \"CT\",\n                        \"country\": \"Spain\",\n                        \"country_code\": \"ES\",\n                        \"id\": \"597b6838e0ab4660798b456e\"\n                    },\n                    \"areas\": [\n                        \"engineering\",\n                        \"strategy\",\n                        \"product-management\"\n                    ],\n                    \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                    \"use_avatar\": false,\n                    \"url\": \"http://10.50.50.50:8000/profile/bern-rodriguez\",\n                    \"headline\": \"CEO\",\n                    \"connection_status\": \"not_existing_connection\"\n                }\n            ],\n            \"score\": 3,\n            \"score_social_networks\": 0,\n            \"score_profile_info\": 0,\n            \"score_mutual_connections\": 3,\n            \"created_at\": \"2017-10-04T11:24:33+0000\"\n        },\n        {\n            \"id\": \"59d4c4f127987155048b456d\",\n            \"users\": [\n                {\n                    \"$id\": \"57994537b43401c036026583\"\n                },\n                {\n                    \"$id\": \"57994541b43401c03602724e\"\n                }\n            ],\n            \"profiles_info\": [\n                {\n                    \"first_name\": \"Cristian\",\n                    \"last_name\": \"Gonzalez\",\n                    \"user_id\": \"57994537b43401c036026583\",\n                    \"premium_flag\": true,\n                    \"role\": \"founder\",\n                    \"responsiveness\": 22.73,\n                    \"city\": {\n                        \"label\": \"Barcelona, Spain\",\n                        \"name\": \"Barcelona\",\n                        \"region\": \"Catalunya\",\n                        \"region_code\": \"CT\",\n                        \"country\": \"Spain\",\n                        \"country_code\": \"ES\",\n                        \"id\": \"56cc14c488b042411c0b5a28\"\n                    },\n                    \"areas\": [\n                        \"engineering\"\n                    ],\n                    \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                    \"legacy_photo_url\": \"https://s3.amazonaws.com/cofounderslab-prod-media/user-71946_1441355485.jpg\",\n                    \"use_avatar\": false,\n                    \"url\": \"http://10.50.50.50:8000/profile/cristian-gonzalez-2\",\n                    \"headline\": \"CTO at CoFoundersLab\",\n                    \"connection_status\": \"accepted\"\n                },\n                {\n                    \"first_name\": \"Aseem\",\n                    \"last_name\": \"Singhal\",\n                    \"user_id\": \"57994541b43401c03602724e\",\n                    \"premium_flag\": false,\n                    \"role\": \"founder\",\n                    \"responsiveness\": 99.4,\n                    \"city\": {\n                        \"label\": \"Delhi, India\",\n                        \"name\": \"Delhi\",\n                        \"region\": \"\",\n                        \"region_code\": \"\",\n                        \"country\": \"India\",\n                        \"country_code\": \"IN\",\n                        \"id\": \"56cc14c488b042411c0b6152\"\n                    },\n                    \"areas\": [\n                        \"programming-development\"\n                    ],\n                    \"photo\": \"https://s3.amazonaws.com/cofounderslab-prod-media/user-75569_1445705288.jpg\",\n                    \"legacy_photo_url\": \"https://s3.amazonaws.com/cofounderslab-prod-media/user-75569_1445705288.jpg\",\n                    \"use_avatar\": false,\n                    \"url\": \"http://10.50.50.50:8000/profile/programming-development-aseem-singhal-delhi-covnko\",\n                    \"connection_status\": \"not_existing_connection\"\n                }\n            ],\n            \"score\": 1,\n            \"score_social_networks\": 0,\n            \"score_profile_info\": 0,\n            \"score_mutual_connections\": 1,\n            \"created_at\": \"2017-10-04T11:24:33+0000\"\n        },\n        {\n            \"id\": \"59d4c4f127987155048b456e\",\n            \"users\": [\n                {\n                    \"$id\": \"57994537b43401c036026583\"\n                },\n                {\n                    \"$id\": \"57994554b43401c0360286e5\"\n                }\n            ],\n            \"profiles_info\": [\n                {\n                    \"first_name\": \"Cristian\",\n                    \"last_name\": \"Gonzalez\",\n                    \"user_id\": \"57994537b43401c036026583\",\n                    \"premium_flag\": true,\n                    \"role\": \"founder\",\n                    \"responsiveness\": 22.73,\n                    \"city\": {\n                        \"label\": \"Barcelona, Spain\",\n                        \"name\": \"Barcelona\",\n                        \"region\": \"Catalunya\",\n                        \"region_code\": \"CT\",\n                        \"country\": \"Spain\",\n                        \"country_code\": \"ES\",\n                        \"id\": \"56cc14c488b042411c0b5a28\"\n                    },\n                    \"areas\": [\n                        \"engineering\"\n                    ],\n                    \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                    \"legacy_photo_url\": \"https://s3.amazonaws.com/cofounderslab-prod-media/user-71946_1441355485.jpg\",\n                    \"use_avatar\": false,\n                    \"url\": \"http://10.50.50.50:8000/profile/cristian-gonzalez-2\",\n                    \"headline\": \"CTO at CoFoundersLab\",\n                    \"connection_status\": \"accepted\"\n                },\n                {\n                    \"first_name\": \"Andrew\",\n                    \"last_name\": \"Vasylyk\",\n                    \"user_id\": \"57994554b43401c0360286e5\",\n                    \"premium_flag\": false,\n                    \"role\": \"founder\",\n                    \"responsiveness\": 99.82,\n                    \"city\": {\n                        \"label\": \"Toronto, Canada\",\n                        \"name\": \"Toronto\",\n                        \"region\": \"\",\n                        \"region_code\": \"\",\n                        \"country\": \"Canada\",\n                        \"country_code\": \"CA\",\n                        \"id\": \"56cc14c488b042411c0b5473\"\n                    },\n                    \"areas\": [\n                        \"design\",\n                        \"engineering\",\n                        \"programming-development\"\n                    ],\n                    \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                    \"legacy_photo_url\": \"https://s3.amazonaws.com/cofounderslab-prod-media/user-90259_1467533512.png\",\n                    \"use_avatar\": false,\n                    \"url\": \"http://10.50.50.50:8000/profile/design-andrew-vasylyk-toronto-l1oko\",\n                    \"headline\": \"Hardcore entrepreneur, direct, honest. \",\n                    \"connection_status\": \"not_existing_connection\"\n                }\n            ],\n            \"score\": 1,\n            \"score_social_networks\": 0,\n            \"score_profile_info\": 0,\n            \"score_mutual_connections\": 1,\n            \"created_at\": \"2017-10-04T11:24:33+0000\"\n        },\n        {\n            \"id\": \"59d4c4f127987155048b4570\",\n            \"users\": [\n                {\n                    \"$id\": \"57994537b43401c036026583\"\n                },\n                {\n                    \"$id\": \"58cea86d3eab46b675eac88f\"\n                }\n            ],\n            \"profiles_info\": [\n                {\n                    \"first_name\": \"Cristian\",\n                    \"last_name\": \"Gonzalez\",\n                    \"user_id\": \"57994537b43401c036026583\",\n                    \"premium_flag\": true,\n                    \"role\": \"founder\",\n                    \"responsiveness\": 22.73,\n                    \"city\": {\n                        \"label\": \"Barcelona, Spain\",\n                        \"name\": \"Barcelona\",\n                        \"region\": \"Catalunya\",\n                        \"region_code\": \"CT\",\n                        \"country\": \"Spain\",\n                        \"country_code\": \"ES\",\n                        \"id\": \"56cc14c488b042411c0b5a28\"\n                    },\n                    \"areas\": [\n                        \"engineering\"\n                    ],\n                    \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                    \"legacy_photo_url\": \"https://s3.amazonaws.com/cofounderslab-prod-media/user-71946_1441355485.jpg\",\n                    \"use_avatar\": false,\n                    \"url\": \"http://10.50.50.50:8000/profile/cristian-gonzalez-2\",\n                    \"headline\": \"CTO at CoFoundersLab\",\n                    \"connection_status\": \"accepted\"\n                },\n                {\n                    \"first_name\": \"Frank\",\n                    \"last_name\": \"A\",\n                    \"user_id\": \"58cea86d3eab46b675eac88f\",\n                    \"role\": \"founder\",\n                    \"responsiveness\": 100,\n                    \"city\": {\n                        \"label\": \"New York, New York, US\",\n                        \"name\": \"New York\",\n                        \"region\": \"New York\",\n                        \"region_code\": \"NY\",\n                        \"country\": \"United States of America\",\n                        \"country_code\": \"US\",\n                        \"id\": \"56cc14c588b042411c0bab51\"\n                    },\n                    \"areas\": [\n                        \"design\"\n                    ],\n                    \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                    \"use_avatar\": false,\n                    \"url\": \"http://10.50.50.50:8000/profile/frank-a\",\n                    \"headline\": \"UI/UX designer\",\n                    \"connection_status\": \"not_existing_connection\"\n                }\n            ],\n            \"score\": 1,\n            \"score_social_networks\": 0,\n            \"score_profile_info\": 0,\n            \"score_mutual_connections\": 1,\n            \"created_at\": \"2017-10-04T11:24:33+0000\"\n        },\n        {\n            \"id\": \"59d4c4f127987155048b4571\",\n            \"users\": [\n                {\n                    \"$id\": \"57994537b43401c036026583\"\n                },\n                {\n                    \"$id\": \"5911b47d6e121caf6c33adc6\"\n                }\n            ],\n            \"profiles_info\": [\n                {\n                    \"first_name\": \"Cristian\",\n                    \"last_name\": \"Gonzalez\",\n                    \"user_id\": \"57994537b43401c036026583\",\n                    \"premium_flag\": true,\n                    \"role\": \"founder\",\n                    \"responsiveness\": 22.73,\n                    \"city\": {\n                        \"label\": \"Barcelona, Spain\",\n                        \"name\": \"Barcelona\",\n                        \"region\": \"Catalunya\",\n                        \"region_code\": \"CT\",\n                        \"country\": \"Spain\",\n                        \"country_code\": \"ES\",\n                        \"id\": \"56cc14c488b042411c0b5a28\"\n                    },\n                    \"areas\": [\n                        \"engineering\"\n                    ],\n                    \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                    \"legacy_photo_url\": \"https://s3.amazonaws.com/cofounderslab-prod-media/user-71946_1441355485.jpg\",\n                    \"use_avatar\": false,\n                    \"url\": \"http://10.50.50.50:8000/profile/cristian-gonzalez-2\",\n                    \"headline\": \"CTO at CoFoundersLab\",\n                    \"connection_status\": \"accepted\"\n                },\n                {\n                    \"first_name\": \"Garry\",\n                    \"last_name\": \"\",\n                    \"user_id\": \"5911b47d6e121caf6c33adc6\",\n                    \"role\": \"founder\",\n                    \"city\": {\n                        \"label\": \"Mumbai, India\",\n                        \"name\": \"Mumbai\",\n                        \"region\": \"\",\n                        \"region_code\": \"\",\n                        \"country\": \"India\",\n                        \"country_code\": \"IN\",\n                        \"id\": \"56cc14c488b042411c0b6154\"\n                    },\n                    \"areas\": [\n                        \"recruiting\",\n                        \"business-development\",\n                        \"engineering\"\n                    ],\n                    \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                    \"use_avatar\": false,\n                    \"url\": \"http://10.50.50.50:8000/profile/garry\",\n                    \"headline\": \"Owner of Staffing firm\",\n                    \"connection_status\": \"not_existing_connection\"\n                }\n            ],\n            \"score\": 1,\n            \"score_social_networks\": 0,\n            \"score_profile_info\": 0,\n            \"score_mutual_connections\": 1,\n            \"created_at\": \"2017-10-04T11:24:33+0000\"\n        },\n        {\n            \"id\": \"59d4c4f127987155048b4574\",\n            \"users\": [\n                {\n                    \"$id\": \"57994537b43401c036026583\"\n                },\n                {\n                    \"$id\": \"579944a4b43401c03600e2c5\"\n                }\n            ],\n            \"profiles_info\": [\n                {\n                    \"first_name\": \"Cristian\",\n                    \"last_name\": \"Gonzalez\",\n                    \"user_id\": \"57994537b43401c036026583\",\n                    \"premium_flag\": true,\n                    \"role\": \"founder\",\n                    \"responsiveness\": 22.73,\n                    \"city\": {\n                        \"label\": \"Barcelona, Spain\",\n                        \"name\": \"Barcelona\",\n                        \"region\": \"Catalunya\",\n                        \"region_code\": \"CT\",\n                        \"country\": \"Spain\",\n                        \"country_code\": \"ES\",\n                        \"id\": \"56cc14c488b042411c0b5a28\"\n                    },\n                    \"areas\": [\n                        \"engineering\"\n                    ],\n                    \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                    \"legacy_photo_url\": \"https://s3.amazonaws.com/cofounderslab-prod-media/user-71946_1441355485.jpg\",\n                    \"use_avatar\": false,\n                    \"url\": \"http://10.50.50.50:8000/profile/cristian-gonzalez-2\",\n                    \"headline\": \"CTO at CoFoundersLab\",\n                    \"connection_status\": \"accepted\"\n                },\n                {\n                    \"first_name\": \"Kasia\",\n                    \"last_name\": \"Whiteis\",\n                    \"user_id\": \"579944a4b43401c03600e2c5\",\n                    \"premium_flag\": true,\n                    \"role\": \"founder\",\n                    \"responsiveness\": 80.95,\n                    \"city\": {\n                        \"label\": \"Germantown, Maryland, US\",\n                        \"name\": \"Germantown\",\n                        \"region\": \"Maryland\",\n                        \"region_code\": \"MD\",\n                        \"country\": \"United States\",\n                        \"country_code\": \"US\",\n                        \"id\": \"56cc14c588b042411c0b8182\"\n                    },\n                    \"areas\": [\n                        \"operations\"\n                    ],\n                    \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                    \"legacy_photo_url\": \"https://s3.amazonaws.com/cofounderslab-prod-media/user-22688_1453393771.jpg\",\n                    \"use_avatar\": false,\n                    \"url\": \"http://10.50.50.50:8000/profile/kasia-whiteis-1\",\n                    \"headline\": \".\",\n                    \"connection_status\": \"not_existing_connection\"\n                }\n            ],\n            \"score\": 1,\n            \"score_social_networks\": 0,\n            \"score_profile_info\": 0,\n            \"score_mutual_connections\": 1,\n            \"created_at\": \"2017-10-04T11:24:33+0000\"\n        }\n    ],\n    \"meta\": {\n        \"page\": 0,\n        \"page_size\": \"10\",\n        \"result_count\": 18,\n        \"page_last\": 1,\n        \"order_by\": {\n            \"score\": \"DESC\"\n        }\n    }\n}"},{"id":"48a08b52-27c4-45d2-83fb-7dee6204bf8b","name":"401: Unauthorized","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[{"key":"receiver_id","value":"{{user_id_2}}","type":"text"},{"key":"intention","value":"other","type":"text"},{"key":"personal_message","value":"test","type":"text"},{"key":"","value":"","type":"text","disabled":true}]},"url":"{{host}}/api/v2/{{userId}}/potential-connections"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"name":"Allow","key":"Allow","value":"GET","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"no-store, private","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json","description":""},{"name":"Date","key":"Date","value":"Thu, 18 May 2017 11:55:28 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.4.6 (Ubuntu)","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"WWW-Authenticate","key":"WWW-Authenticate","value":"Bearer realm=\"Service\", error=\"access_denied\", error_description=\"OAuth2 authentication required\"","description":""},{"name":"X-Debug-Token","key":"X-Debug-Token","value":"067951","description":""},{"name":"X-Debug-Token-Link","key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/067951","description":""}],"cookie":[{"expires":"Sat Jun 03 2017 15:37:29 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"v2","key":"cfl_ab_onboarding"},{"expires":"Wed Jun 07 2017 17:15:03 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"qh4thca8fjji51djn7poi17sb7","key":"PHPSESSID"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":true,"value":"GQtE69lKP5yYoAWhp_CM992Zqzo72iwVVs1d3mt_B0E","key":"XSRF-TOKEN"}],"responseTime":"296","body":"{\"error\":\"access_denied\",\"error_description\":\"OAuth2 authentication required\"}"}],"_postman_id":"3131ed06-6f12-4e8b-9a87-26adf3d0613b"},{"name":"Worker","event":[{"listen":"test","script":{"type":"text/javascript","exec":["tests[\"Status code is 200\"] = responseCode.code === 200;","","tests[\"Body matches data\"] = responseBody.has(\"data\");","tests[\"Body matches id\"] = responseBody.has(\"id\");","","var jsonData = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"connection_user1_user2\", jsonData.data.id);"]}}],"id":"548bc8bc-a585-4caa-bd39-74a160df6a75","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"receiver_id","value":"{{user_id_2}}","type":"text"},{"key":"intention","value":"other","type":"text"},{"key":"personal_message","value":"test","type":"text"},{"key":"","value":"","type":"text","disabled":true}]},"url":"{{host}}/api/v2/potential-connections","description":"<p>Show potential connections</p>\n<h2 id=\"response\">Response</h2>\n<p>Array of PotentialConnection Object</p>\n","urlObject":{"path":["api","v2","potential-connections"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"2d4dcf31-afb5-48c5-b89b-cfb09d3a6909","name":"401: Unauthorized","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[{"key":"receiver_id","value":"{{user_id_2}}","type":"text"},{"key":"intention","value":"other","type":"text"},{"key":"personal_message","value":"test","type":"text"},{"key":"","value":"","type":"text","disabled":true}]},"url":{"raw":"{{host}}/api/v2/potential-connections?access_token={{access_token_1}}","host":["{{host}}"],"path":["api","v2","potential-connections"],"query":[{"key":"access_token","value":"{{access_token_1}}"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"name":"Allow","key":"Allow","value":"GET","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"no-store, private","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json","description":""},{"name":"Date","key":"Date","value":"Thu, 18 May 2017 11:55:28 GMT","description":""},{"name":"Pragma","key":"Pragma","value":"no-cache","description":""},{"name":"Server","key":"Server","value":"nginx/1.4.6 (Ubuntu)","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"WWW-Authenticate","key":"WWW-Authenticate","value":"Bearer realm=\"Service\", error=\"access_denied\", error_description=\"OAuth2 authentication required\"","description":""},{"name":"X-Debug-Token","key":"X-Debug-Token","value":"067951","description":""},{"name":"X-Debug-Token-Link","key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/067951","description":""}],"cookie":[{"expires":"Sat Jun 03 2017 15:37:29 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"v2","key":"cfl_ab_onboarding"},{"expires":"Wed Jun 07 2017 17:15:03 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"qh4thca8fjji51djn7poi17sb7","key":"PHPSESSID"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":true,"value":"GQtE69lKP5yYoAWhp_CM992Zqzo72iwVVs1d3mt_B0E","key":"XSRF-TOKEN"}],"responseTime":"296","body":"{\"error\":\"access_denied\",\"error_description\":\"OAuth2 authentication required\"}"},{"id":"2e3e807c-d510-42a0-b018-78b8387c2135","name":"200: OK","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[{"key":"receiver_id","value":"{{user_id_2}}","type":"text"},{"key":"intention","value":"other","type":"text"},{"key":"personal_message","value":"test","type":"text"},{"key":"","value":"","type":"text","disabled":true}]},"url":{"raw":"{{host}}/api/v2/potential-connections?access_token={{access_token_1}}","host":["{{host}}"],"path":["api","v2","potential-connections"],"query":[{"key":"access_token","value":"{{access_token_1}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Allow","key":"Allow","value":"GET","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"no-cache","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json","description":""},{"name":"Date","key":"Date","value":"Thu, 18 May 2017 11:54:59 GMT","description":""},{"name":"Server","key":"Server","value":"nginx/1.4.6 (Ubuntu)","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Debug-Token","key":"X-Debug-Token","value":"01a320","description":""},{"name":"X-Debug-Token-Link","key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/01a320","description":""}],"cookie":[{"expires":"Sat Jun 03 2017 15:37:29 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"v2","key":"cfl_ab_onboarding"},{"expires":"Wed Jun 07 2017 17:15:03 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"qh4thca8fjji51djn7poi17sb7","key":"PHPSESSID"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":true,"value":"GQtE69lKP5yYoAWhp_CM992Zqzo72iwVVs1d3mt_B0E","key":"XSRF-TOKEN"}],"responseTime":"410","body":"{\n    \"data\": [\n        {\n            \"id\": \"591c6514279871621b8b458e\",\n            \"users\": [\n                {\n                    \"$id\": \"5914347f2798715c4e8b4567\"\n                },\n                {\n                    \"$id\": \"5914347f2798715c4e8b4569\"\n                }\n            ],\n            \"profiles_info\": [\n                {\n                    \"first_name\": \"Test\",\n                    \"last_name\": \"User\",\n                    \"user_id\": \"57994539b43401c036026872\",\n                    \"premium_flag\": false,\n                    \"role\": \"founder\",\n                    \"responsiveness\": 100,\n                    \"city\": {\n                        \"label\": \"Madrid, Spain\",\n                        \"name\": \"Madrid\",\n                        \"country\": \"Spain\",\n                        \"country_code\": \"ES\",\n                        \"id\": \"56cc14c488b042411c0b5a26\"\n                    },\n                    \"areas\": [\n                        \"product-management\",\n                        \"engineering\"\n                    ],\n                    \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar2.jpg\",\n                    \"avatar\": 2,\n                    \"use_avatar\": true,\n                    \"url\": \"http://cofounderslab.com/profile/test-user\",\n                    \"headline\": \"Some headline\"\n                }\n            ]\n        }\n    ],\n    \"meta\": {\n        \"page\": 0,\n        \"page_size\": 10,\n        \"result_count\": 1,\n        \"page_last\": 0,\n        \"order_by\": {\n            \"sentAt\": \"desc\"\n        }\n    }\n}"}],"_postman_id":"548bc8bc-a585-4caa-bd39-74a160df6a75"}],"id":"33820185-a451-4ec3-9b0a-fcef4d636b67","description":"<p>Users can retrieve a list of other users that they will already know.</p>\n<h2 id=\"potential-connection-object\">Potential Connection Object</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Paramter</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>String</td>\n<td>Potential connection ID</td>\n</tr>\n<tr>\n<td>users</td>\n<td>Array</td>\n<td>Id's of Potentially connected users</td>\n</tr>\n<tr>\n<td>profiles_info</td>\n<td>Array</td>\n<td>Array with User Profile Objects</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"33820185-a451-4ec3-9b0a-fcef4d636b67"},{"name":"Profile","item":[{"name":"Get","id":"89b5cb97-bd4d-4e78-9915-79f3c156c1b5","request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"first_name","value":"Test","type":"text"},{"key":"last_name","value":"LN","type":"text"}]},"url":"{{host}}/api/v2/profile/{{user_id}}","urlObject":{"path":["api","v2","profile","{{user_id}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"b4d0843d-6e27-4394-a4d5-2638cf538738","name":"200: Ok","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{access_token_1}}"}],"body":{"mode":"formdata","formdata":[{"key":"first_name","value":"Test","type":"text"},{"key":"last_name","value":"LN","type":"text"}]},"url":"{{host}}/api/v2/profile/{{user_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"Allow","key":"Allow","value":"GET","description":""},{"name":"Cache-Control","key":"Cache-Control","value":"no-cache","description":""},{"name":"Connection","key":"Connection","value":"keep-alive","description":""},{"name":"Content-Type","key":"Content-Type","value":"application/json","description":""},{"name":"Date","key":"Date","value":"Thu, 20 Jul 2017 15:34:14 GMT","description":""},{"name":"Server","key":"Server","value":"nginx/1.4.6 (Ubuntu)","description":""},{"name":"Transfer-Encoding","key":"Transfer-Encoding","value":"chunked","description":""},{"name":"X-Debug-Token","key":"X-Debug-Token","value":"87b13a","description":""},{"name":"X-Debug-Token-Link","key":"X-Debug-Token-Link","value":"http://10.50.50.50:8000/_profiler/87b13a","description":""}],"cookie":[{"expires":"Wed Jun 13 2018 10:29:38 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"PHPSTORM","key":"XDEBUG_SESSION"},{"expires":"Thu Jun 13 2019 16:06:42 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"ebd47827-25ce-4d3e-93d5-f442a724196b","key":"ahoy_visitor"},{"expires":"Thu Jun 13 2019 16:06:44 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"GA1.1.439762883.1497370005","key":"_ga"},{"expires":"Wed Jun 13 2018 16:06:46 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"88b1060_819d3869-8c8e-480f-b382-8a4b6e3b7f8f-6139e386a-66afc2cca253-6cad","key":"__distillery"},{"expires":"Thu Jun 13 2019 16:06:47 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"251003481.9a892c380504e42262198dae416e15f2.1497370007155.1497370007155.1497370007155.1","key":"__hstc"},{"expires":"Fri Jun 11 2027 16:06:47 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"9a892c380504e42262198dae416e15f2","key":"hubspotutk"},{"expires":"Sat Aug 19 2017 14:51:20 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"jsqbhrmurhappk0fhqct8olo82","key":"PHPSESSID"},{"expires":"Sat Aug 19 2017 14:51:20 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"home-tagline-simplified","key":"cfl_ab_home"},{"expires":"Sat Aug 19 2017 14:51:59 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"v4","key":"cfl_ab_onboarding"},{"expires":"Sat Aug 19 2017 14:51:59 GMT+0000 (Coordinated Universal Time)","hostOnly":true,"httpOnly":true,"domain":"10.50.50.50","path":"/","secure":false,"session":false,"value":"premium-v4","key":"cfl_ab_premium_onboarding"},{"expires":"Invalid Date","hostOnly":true,"httpOnly":false,"domain":"10.50.50.50","path":"/","secure":false,"session":true,"value":"sX7jI4ZD1YgQM71HSPE6sMiJcPzA31fBD7XYCsP1Zk8","key":"XSRF-TOKEN"}],"responseTime":"1491","body":"{\"data\":[{\"strength_level\":\"all-star\",\"first_name\":\"Javier\",\"last_name\":\"Romero\",\"user_id\":\"58d3b3993eab4663013eb2d1\",\"photo_file_name\":\"https:\\/\\/s3.amazonaws.com\\/cofounderslab-testing\\/profiles\\/avatars\\/592c427239bd1.jpeg\",\"summary\":\"I'm an web developer with more than 5 years of experience, loving his work and his good practices. Specialized in PHP language and Symfony2 framework.\\n\\nCurrently, I work in the Backend team of CoFoundersLab, where, as a team, we define the architecture and development of the platform.\",\"linkedin_url\":\"https:\\/\\/www.linkedin.com\\/in\\/francisco-javier-romero-bizarro-93491964\\/\",\"educations\":[{\"college\":\"IES Jaume Balmes\",\"degree\":\"Software Application Developer Disciplina acad\\u00e9mica Computer Software and Media Applications\",\"from\":2007,\"to\":2009},{\"college\":\"IES Jaume Balmes\",\"degree\":\"Management Information Systems Disciplina acad\\u00e9mica Management Information Systems and Services\",\"from\":2009,\"to\":2011}],\"working_experiences\":[{\"company\":\"Diprotech\",\"position\":\"Project Engineer\",\"description\":\"OOP, MVC, LAMP, Scrum\\nPHP 5.3, VisualBasic\\nJquery, JSON, CSS, Twitter Bootstrap, Facebook, Sockets and Websockets\\nDatabase: Mysql, SQLite, SQL Server\\nFrameworks: Symfony 1.4 and 2, Magento, ExtJS (Sencha)\\nVersion Control Systems: Git and SVN\\nPHPUnit, Selenium IDE\\nAPIs Generation\\n\\nFeatured Projects:\\n\\nCuatrecasas - website www.cuatrecasas.com\\nUOC - Booking system UOC\\nDigital factory - website www.digital-factory.es\\nBeaprincess - website www.beaprincess.com\\nSpotlio - CMS for aplications Android and Iphone\\nService Vision - Video-Assist HD\\nAutoescuelas Carballo - Facebook aplication\\nE-motiva - Manager Poll\\nBarcelona Guide Bureau - CMS\\nGreenPowerMonitor - Web and Api Mobile\",\"from_year\":2011,\"from_month\":12,\"to_year\":2013,\"to_month\":6,\"current\":false},{\"company\":\"BeRepublic\",\"position\":\"Senior Developer\",\"description\":\"OOP, MVC, LAMP, Scrum\\nPHP 5.3\\nJava\\nJquery, JSON, CSS, Twitter Bootstrap, Facebook\\nDatabase: Mysql, MS Sql, SqlServer, PostgreSql\\nFrameworks: Symfony 2, Wordpress, Spring, Hibernate\\nVersion Control Systems: SVN Git\\nAmazon: S3, EC2, Webservices\\nMailing: Campaign Commander (Smart Focus), Selligent\\n\\nFeatured Projects:\\n\\nMangalis - website http:\\/\\/www.mangalis.com\\nInaugure - website http:\\/\\/www.inaugure.com\\nBarcel\\u00f3 Hotels - Newsletters CMS\\nAjuntament de Barcelona - Newsletters CMS\\nObra Social \\\"La Caixa\\\" - Newsletters CMS\\nBanc Sabadell - Dynamic Landing http:\\/\\/citagestor.bancsabadell.com\\/\\nBritish American Tobacco (Pall Mall) - http:\\/\\/www.yourmoments.es\\nBritish American Tobacco (Lucky Strike) - http:\\/\\/www,true-car.es\\nJack Daniels - Facebook App's\\nPepe Jeans - Landings\\nLavazza - Tazzina d'oro 2014 - http:\\/\\/www.tazzinadoro.com\\nTMB - Barcelona Smart Moving - https:\\/\\/www.barcelonasmartmoving.com\",\"from_year\":2013,\"from_month\":6,\"to_year\":2017,\"to_month\":2,\"current\":false},{\"company\":\"CoFoundersLab\",\"position\":\"Senior Developer\",\"description\":\"As the largest community of entrepreneurial-minded people, the CofoundersLab platform focuses on a variety of resources for businesses starting with team building, certification courses designed to help grow businesses and funding among other things; Meetup events in 45+ cities.\",\"from_year\":2017,\"from_month\":3,\"to_year\":0,\"to_month\":1,\"current\":true}],\"certifications\":[],\"coworking_spaces\":[],\"use_header_background\":false,\"use_avatar\":false,\"accelerators\":[],\"open_to\":[{\"role\":\"founder\",\"enabled\":true,\"remote\":false}],\"looking_for\":[{\"role\":\"founder\",\"enabled\":true,\"remote\":false}],\"id\":\"58d3b3993eab4663013eb2d2\",\"created_at\":\"2017-03-23T11:38:01+0000\",\"role\":\"networker\",\"looking_role\":\"networker\",\"intention\":\"both\",\"city\":{\"label\":\"Barcelona, Spain\",\"name\":\"Barcelona\",\"country\":\"Spain\",\"country_code\":\"ES\",\"id\":\"56cc14c488b042411c0b5a28\"},\"birth_date\":\"07\\/18\\/1986\",\"url\":\"http:\\/\\/10.50.50.50:8000\\/profile\\/javier-romero-1\",\"responsiveness\":100,\"strength\":100,\"headline\":\"Senior Developer at CoFoundersLab\",\"updated_at\":\"2017-07-19T08:35:30+0000\",\"favorited\":false}],\"meta\":{\"page\":0,\"page_size\":10,\"result_count\":1,\"page_last\":0,\"order_by\":[]}}"}],"_postman_id":"89b5cb97-bd4d-4e78-9915-79f3c156c1b5"},{"name":"Update","id":"1ae3329e-c18d-47b0-b1c5-c1fc1d82f12c","request":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"first_name","value":"Test","type":"text"},{"key":"last_name","value":"LN","type":"text"}]},"url":"{{host}}/api/v2/profile","urlObject":{"path":["api","v2","profile"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1ae3329e-c18d-47b0-b1c5-c1fc1d82f12c"},{"name":"Update Skills","id":"9cc195e7-6033-4cf5-9e4b-72d5d674e500","request":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"skills","value":"[]","type":"text"},{"key":"looking_skills","value":"[]","type":"text"}]},"url":"{{host}}/api/v2/profile/skills","urlObject":{"path":["api","v2","profile","skills"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9cc195e7-6033-4cf5-9e4b-72d5d674e500"},{"name":"Add Open To","id":"e66f1b67-297a-44a9-b2a7-e79824028cf4","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/api/v2/profile/open_to","urlObject":{"path":["api","v2","profile","open_to"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e66f1b67-297a-44a9-b2a7-e79824028cf4"},{"name":"Photo","id":"ffd8ad4b-737e-ce17-4b40-49bc6fbe42cd","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/api/v2/profile/{{profileId}}/photo","description":"<p>Update the photo of a user.</p>\n<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>photo</td>\n<td>file</td>\n<td>true</td>\n<td>Photo file</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\">Response</h2>\n<p>Return the url of the image just uploaded.</p>\n","urlObject":{"path":["api","v2","profile","{{profileId}}","photo"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ffd8ad4b-737e-ce17-4b40-49bc6fbe42cd"},{"name":"Update Open To","id":"97e58e34-e65e-465b-aef0-0538db06ad26","request":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/api/v2/profile/open_to/{{open_to_id}}","urlObject":{"path":["api","v2","profile","open_to","{{open_to_id}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"97e58e34-e65e-465b-aef0-0538db06ad26"},{"name":"Remove Open To","id":"9e6c990f-c613-4432-8fb0-24dfe03c2eec","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/api/v2/profile/open_to/{{open_to_id}}","urlObject":{"path":["api","v2","profile","open_to","{{open_to_id}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9e6c990f-c613-4432-8fb0-24dfe03c2eec"},{"name":"Enable Open To","id":"a2ceae8b-7dcb-47be-9b00-cb9477349146","request":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/api/v2/profile/open_to/{{open_to_id}}/enable","urlObject":{"path":["api","v2","profile","open_to","{{open_to_id}}","enable"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a2ceae8b-7dcb-47be-9b00-cb9477349146"},{"name":"Disable Open To","id":"3ccfd4c3-7de3-4efc-8687-04b172e49bf8","request":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/api/v2/profile/open_to/{{open_to_id}}/disable","urlObject":{"path":["api","v2","profile","open_to","{{open_to_id}}","disable"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3ccfd4c3-7de3-4efc-8687-04b172e49bf8"},{"name":"Add Looking For","id":"e1757b89-4d23-4cbf-82b5-12ca7e0521ae","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/api/v2/profile/looking_for","urlObject":{"path":["api","v2","profile","looking_for"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e1757b89-4d23-4cbf-82b5-12ca7e0521ae"},{"name":"Update Looking For","id":"a8763462-68b8-44d5-a976-ebd535e2053a","request":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/api/v2/profile/looking_for/{{looking_for_id}}","urlObject":{"path":["api","v2","profile","looking_for","{{looking_for_id}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a8763462-68b8-44d5-a976-ebd535e2053a"},{"name":"Remove Looking For","id":"8facad15-fbe5-41c6-b4ec-5c7954a6739a","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/api/v2/profile/looking_for/{{looking_for_id}}","urlObject":{"path":["api","v2","profile","looking_for","{{looking_for_id}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8facad15-fbe5-41c6-b4ec-5c7954a6739a"},{"name":"Enable Looking For","id":"1bb35af2-5959-4d0d-be0e-b3250462d4a9","request":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/api/v2/profile/looking_for/{{looking_for_id}}/enable","urlObject":{"path":["api","v2","profile","looking_for","{{looking_for_id}}","enable"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1bb35af2-5959-4d0d-be0e-b3250462d4a9"},{"name":"Disable Looking For","id":"8536a84c-d80d-4c0c-b5c9-51a754c83d5d","request":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/api/v2/profile/looking_for/{{looking_for_id}}/disable","urlObject":{"path":["api","v2","profile","looking_for","{{looking_for_id}}","disable"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8536a84c-d80d-4c0c-b5c9-51a754c83d5d"},{"name":"Block User Profile","id":"d765b778-0945-489e-9546-c289968996a1","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"message","value":"He is annoying me","type":"text"}]},"url":"{{host}}/api/v2/user/{{ target_user_id }}/block","urlObject":{"path":["api","v2","user","{{ target_user_id }}","block"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"51e250d8-d6e1-4e5f-94a4-fe1b5da279f6","name":"400: User already blocked","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"message","value":"He is annoying me","type":"text"}]},"url":"{{host}}/api/v2/user/{{target_user_id}}/block"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[],"responseTime":"0","body":"{\n    \"data\": [],\n    \"errors\": [\n        {\n            \"\": {\n                \"code\": 3005,\n                \"constraint\": \"AlreadyBlockedException\"\n            }\n        }\n    ]\n}"},{"id":"5929cbc2-8ff7-440b-b196-357109e631b7","name":"400: No reason provided","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"message","value":"He is annoying me","type":"text","disabled":true}]},"url":"{{host}}/api/v2/user/{{ target_user_id }}/block"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[],"responseTime":"0","body":"{\n    \"data\": [],\n    \"errors\": [\n        {\n            \"message\": {\n                \"code\": 1001,\n                \"constraint\": \"NotBlank\"\n            }\n        },\n        {\n            \"message\": {\n                \"code\": 1003,\n                \"constraint\": \"NotNull\"\n            }\n        }\n    ]\n}"},{"id":"708a8219-7a37-457c-91fe-9a4be5bd3c94","name":"200: User blocked successful","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"formdata","formdata":[{"key":"message","value":"He is annoying me","type":"text"}]},"url":"{{host}}/api/v2/user/{{target_user_id}}/block"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[],"responseTime":"0","body":"{\n    \"data\": \"598d7a0e7374a005330041a9\",\n    \"errors\": []\n}"}],"_postman_id":"d765b778-0945-489e-9546-c289968996a1"},{"name":"Unlock User Profile","id":"2b1e51c9-9092-4476-a4c4-3cfd0a3f3c91","request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/api/v2/user/{{ target_user_id }}/unlock","urlObject":{"path":["api","v2","user","{{ target_user_id }}","unlock"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"94836e8a-22b6-422e-b156-2b938cbe267d","name":"200: User unlocked successful","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/api/v2/user/{{ target_user_id }}/unlock"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[],"responseTime":"0","body":"{\n    \"data\": \"598d7a0e7374a005330041a9\",\n    \"errors\": []\n}"},{"id":"9c5082bf-e572-466c-bd6d-4acef615b3a1","name":"400: User already unlocked","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{access_token}}"}],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/api/v2/user/{{ target_user_id }}/unlock"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[],"responseTime":"0","body":"{\n    \"data\": [],\n    \"errors\": [\n        {\n            \"\": {\n                \"code\": 3006,\n                \"constraint\": \"AlreadyUnlockedException\"\n            }\n        }\n    ]\n}"}],"_postman_id":"2b1e51c9-9092-4476-a4c4-3cfd0a3f3c91"}],"id":"b2983ea0-4773-43f8-9ab7-d558ce0eb4a7","description":"<p>User Profile.</p>\n<h2 id=\"profile-object\">Profile Object</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>String</td>\n<td>Profile ID</td>\n</tr>\n<tr>\n<td>strength_level</td>\n<td>String</td>\n<td>Profile strength. Can be: beginner, intermediate, all-star</td>\n</tr>\n<tr>\n<td>first_name</td>\n<td>String</td>\n<td>First Name</td>\n</tr>\n<tr>\n<td>last_name</td>\n<td>String</td>\n<td>Last Name</td>\n</tr>\n<tr>\n<td>user_id</td>\n<td>String</td>\n<td>User ID</td>\n</tr>\n<tr>\n<td>photo_file_name</td>\n<td>String</td>\n<td>Photo url</td>\n</tr>\n<tr>\n<td>summary</td>\n<td>String</td>\n<td>Profile summary</td>\n</tr>\n<tr>\n<td>linkedin_url</td>\n<td>String</td>\n<td>LinkedIn profile url</td>\n</tr>\n<tr>\n<td>facebook_url</td>\n<td>String</td>\n<td>Facebook profile url</td>\n</tr>\n<tr>\n<td>twitter_url</td>\n<td>String</td>\n<td>Twitter profile url</td>\n</tr>\n<tr>\n<td>educations</td>\n<td>Array</td>\n<td>Array of Education Object</td>\n</tr>\n<tr>\n<td>working_experiences</td>\n<td>Array</td>\n<td>Array of Working Experiences Object</td>\n</tr>\n<tr>\n<td>certifications</td>\n<td>Array</td>\n<td>Array of Certification Object</td>\n</tr>\n<tr>\n<td>coworking_spaces</td>\n<td>Array</td>\n<td>Array of Coworking Space Object</td>\n</tr>\n<tr>\n<td>use_header_background</td>\n<td>Boolean</td>\n<td>User use header background</td>\n</tr>\n<tr>\n<td>header_background</td>\n<td>String</td>\n<td>Header background url</td>\n</tr>\n<tr>\n<td>use_avatar</td>\n<td>Boolean</td>\n<td>User use avatar</td>\n</tr>\n<tr>\n<td>avatar</td>\n<td>String</td>\n<td>Avatar url</td>\n</tr>\n<tr>\n<td>legacy_photo_url</td>\n<td>String</td>\n<td>Legacy photo url</td>\n</tr>\n<tr>\n<td>accelerators</td>\n<td>Array</td>\n<td>Array of Accelerator Object</td>\n</tr>\n<tr>\n<td>open_to</td>\n<td>Array</td>\n<td>Array of OpenTo Object</td>\n</tr>\n<tr>\n<td>looking_for</td>\n<td>Array</td>\n<td>Array of LookingFor Object</td>\n</tr>\n<tr>\n<td>created_at</td>\n<td>DateTime</td>\n<td>Date of created profile</td>\n</tr>\n<tr>\n<td>updated_at</td>\n<td>DateTime</td>\n<td>Date of updated profile</td>\n</tr>\n<tr>\n<td>role</td>\n<td>String</td>\n<td>User role. Can be: networker, founder, adviser, intern, team-member</td>\n</tr>\n<tr>\n<td>looking_role</td>\n<td>String</td>\n<td>User looking role. Can be: networker, founder, adviser, intern, team-member</td>\n</tr>\n<tr>\n<td>intention</td>\n<td>String</td>\n<td>User intention to join. Can be: be-joined, joined-other, both</td>\n</tr>\n<tr>\n<td>city</td>\n<td>City Object</td>\n<td>City of user</td>\n</tr>\n<tr>\n<td>birth_date</td>\n<td>DateTime</td>\n<td>Date of bithdate user</td>\n</tr>\n<tr>\n<td>url</td>\n<td>String</td>\n<td>Profile url</td>\n</tr>\n<tr>\n<td>headline</td>\n<td>String</td>\n<td>Profile headline</td>\n</tr>\n<tr>\n<td>responsiveness</td>\n<td>Integer</td>\n<td>Level of responsiveness</td>\n</tr>\n<tr>\n<td>strength</td>\n<td>Integer</td>\n<td>Level of strength</td>\n</tr>\n<tr>\n<td>favorited</td>\n<td>Boolean</td>\n<td>User is favorite from current user</td>\n</tr>\n<tr>\n<td>skills</td>\n<td>Array</td>\n<td>Array of skills</td>\n</tr>\n<tr>\n<td>looking_skills</td>\n<td>Array</td>\n<td>Array of looking skills</td>\n</tr>\n<tr>\n<td>achievement</td>\n<td>String</td>\n<td>Profile achievement</td>\n</tr>\n<tr>\n<td>quote</td>\n<td>String</td>\n<td>Profile quote</td>\n</tr>\n<tr>\n<td>startup_experience</td>\n<td>String</td>\n<td>User's startup experience. Can be: first-time-founder, one-startup, two-plus</td>\n</tr>\n<tr>\n<td>premium_flag</td>\n<td>Boolean</td>\n<td>Indicates is the user is a premium member or not</td>\n</tr>\n<tr>\n<td>connection_status</td>\n<td>String</td>\n<td>Indicates is the looged in user has a connection with the profile's user. The possible values are: 'pending', 'accepted', 'passed', 'not_existing_connection'</td>\n</tr>\n<tr>\n<td>connection_id</td>\n<td>String</td>\n<td>If the connection exist this filed will contain its id.</td>\n</tr>\n<tr>\n<td>connection_author_id</td>\n<td>String</td>\n<td>Id of the author of the connection request</td>\n</tr>\n</tbody>\n</table>\n</div><pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">{\n            \"strength_level\": \"all-star\",\n            \"first_name\": \"Javier\",\n            \"last_name\": \"Romero\",\n            \"user_id\": \"58d3b3993eab4663013eb2d1\",\n            \"photo_file_name\": \"https://s3.amazonaws.com/cofounderslab-testing/profiles/avatars/592c427239bd1.jpeg\",\n            \"summary\": \"I'm an web developer with more than 5 years of experience, loving his work and his good practices. Specialized in PHP language and Symfony2 framework.\\n\\nCurrently, I work in the Backend team of CoFoundersLab, where, as a team, we define the architecture and development of the platform.\",\n            \"linkedin_url\": \"https://www.linkedin.com/in/francisco-javier-romero-bizarro-93491964/\",\n            \"educations\": [\n                {\n                    \"college\": \"IES Jaume Balmes\",\n                    \"degree\": \"Software Application Developer Disciplina académica Computer Software and Media Applications\",\n                    \"from\": 2007,\n                    \"to\": 2009\n                },\n                {\n                    \"college\": \"IES Jaume Balmes\",\n                    \"degree\": \"Management Information Systems Disciplina académica Management Information Systems and Services\",\n                    \"from\": 2009,\n                    \"to\": 2011\n                }\n            ],\n            \"working_experiences\": [\n                {\n                    \"company\": \"Diprotech\",\n                    \"position\": \"Project Engineer\",\n                    \"description\": \"OOP, MVC, LAMP, Scrum\\nPHP 5.3, VisualBasic\\nJquery, JSON, CSS, Twitter Bootstrap, Facebook, Sockets and Websockets\\nDatabase: Mysql, SQLite, SQL Server\\nFrameworks: Symfony 1.4 and 2, Magento, ExtJS (Sencha)\\nVersion Control Systems: Git and SVN\\nPHPUnit, Selenium IDE\\nAPIs Generation\\n\\nFeatured Projects:\\n\\nCuatrecasas - website www.cuatrecasas.com\\nUOC - Booking system UOC\\nDigital factory - website www.digital-factory.es\\nBeaprincess - website www.beaprincess.com\\nSpotlio - CMS for aplications Android and Iphone\\nService Vision - Video-Assist HD\\nAutoescuelas Carballo - Facebook aplication\\nE-motiva - Manager Poll\\nBarcelona Guide Bureau - CMS\\nGreenPowerMonitor - Web and Api Mobile\",\n                    \"from_year\": 2011,\n                    \"from_month\": 12,\n                    \"to_year\": 2013,\n                    \"to_month\": 6,\n                    \"current\": false\n                },\n                {\n                    \"company\": \"BeRepublic\",\n                    \"position\": \"Senior Developer\",\n                    \"description\": \"OOP, MVC, LAMP, Scrum\\nPHP 5.3\\nJava\\nJquery, JSON, CSS, Twitter Bootstrap, Facebook\\nDatabase: Mysql, MS Sql, SqlServer, PostgreSql\\nFrameworks: Symfony 2, Wordpress, Spring, Hibernate\\nVersion Control Systems: SVN Git\\nAmazon: S3, EC2, Webservices\\nMailing: Campaign Commander (Smart Focus), Selligent\\n\\nFeatured Projects:\\n\\nMangalis - website http://www.mangalis.com\\nInaugure - website http://www.inaugure.com\\nBarceló Hotels - Newsletters CMS\\nAjuntament de Barcelona - Newsletters CMS\\nObra Social \\\"La Caixa\\\" - Newsletters CMS\\nBanc Sabadell - Dynamic Landing http://citagestor.bancsabadell.com/\\nBritish American Tobacco (Pall Mall) - http://www.yourmoments.es\\nBritish American Tobacco (Lucky Strike) - http://www,true-car.es\\nJack Daniels - Facebook App's\\nPepe Jeans - Landings\\nLavazza - Tazzina d'oro 2014 - http://www.tazzinadoro.com\\nTMB - Barcelona Smart Moving - https://www.barcelonasmartmoving.com\",\n                    \"from_year\": 2013,\n                    \"from_month\": 6,\n                    \"to_year\": 2017,\n                    \"to_month\": 2,\n                    \"current\": false\n                },\n                {\n                    \"company\": \"CoFoundersLab\",\n                    \"position\": \"Senior Developer\",\n                    \"description\": \"As the largest community of entrepreneurial-minded people, the CofoundersLab platform focuses on a variety of resources for businesses starting with team building, certification courses designed to help grow businesses and funding among other things; Meetup events in 45+ cities.\",\n                    \"from_year\": 2017,\n                    \"from_month\": 3,\n                    \"to_year\": 0,\n                    \"to_month\": 1,\n                    \"current\": true\n                }\n            ],\n            \"certifications\": [],\n            \"coworking_spaces\": [],\n            \"use_header_background\": false,\n            \"use_avatar\": false,\n            \"accelerators\": [],\n            \"open_to\": [\n                {\n                    \"role\": \"founder\",\n                    \"enabled\": true,\n                    \"remote\": false\n                }\n            ],\n            \"looking_for\": [\n                {\n                    \"role\": \"founder\",\n                    \"enabled\": true,\n                    \"remote\": false\n                }\n            ],\n            \"id\": \"58d3b3993eab4663013eb2d2\",\n            \"created_at\": \"2017-03-23T11:38:01+0000\",\n            \"role\": \"networker\",\n            \"looking_role\": \"networker\",\n            \"intention\": \"both\",\n            \"city\": {\n                \"label\": \"Barcelona, Spain\",\n                \"name\": \"Barcelona\",\n                \"country\": \"Spain\",\n                \"country_code\": \"ES\",\n                \"id\": \"56cc14c488b042411c0b5a28\"\n            },\n            \"birth_date\": \"07/18/1986\",\n            \"url\": \"http://10.50.50.50:8000/profile/javier-romero-1\",\n            \"responsiveness\": 100,\n            \"strength\": 100,\n            \"headline\": \"Senior Developer at CoFoundersLab\",\n            \"updated_at\": \"2017-07-19T08:35:30+0000\",\n            \"favorited\": false,\n            \"premium_flag\": true,\n            \"connection_status\": \"non_existing_connection\",\n            \"connection_id\": \"58d3b3993eab4663013eb2d1\",\n            \"connection_author_id\": \"58d3b3993eab4663013eb211\"\n        }\n</code></pre>\n<h2 id=\"accelerator-object\">Accelerator Object</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>name</td>\n<td>String</td>\n<td>Name of accelerator</td>\n</tr>\n<tr>\n<td>edition</td>\n<td>String</td>\n<td>Edition of accelerator</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"certification-object\">Certification Object</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>title</td>\n<td>String</td>\n<td>Title of certification</td>\n</tr>\n<tr>\n<td>issuer</td>\n<td>String</td>\n<td>Issuer of certification</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"city-object\">City Object</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>String</td>\n<td>City ID</td>\n</tr>\n<tr>\n<td>label</td>\n<td>String</td>\n<td>Label to show</td>\n</tr>\n<tr>\n<td>name</td>\n<td>String</td>\n<td>City name</td>\n</tr>\n<tr>\n<td>country</td>\n<td>String</td>\n<td>Country name</td>\n</tr>\n<tr>\n<td>country_code</td>\n<td>String</td>\n<td>Country ISO</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"coworking-space-object\">Coworking Space Object</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</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>Title of coworking</td>\n</tr>\n<tr>\n<td>from</td>\n<td>Integer</td>\n<td>Age start in coworking</td>\n</tr>\n<tr>\n<td>to</td>\n<td>Integer</td>\n<td>Age end in coworking</td>\n</tr>\n<tr>\n<td>current</td>\n<td>Boolean</td>\n<td>Is actual cowork?</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"education-object\">Education Object</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>college</td>\n<td>String</td>\n<td>College</td>\n</tr>\n<tr>\n<td>degree</td>\n<td>String</td>\n<td>Degree</td>\n</tr>\n<tr>\n<td>from</td>\n<td>Integer</td>\n<td>Age start degree</td>\n</tr>\n<tr>\n<td>to</td>\n<td>Integer</td>\n<td>Age end degree</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"lookingfor-object\">LookingFor Object</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>role</td>\n<td>String</td>\n<td>Looking role. Can be: founder, adviser, employee, freelance</td>\n</tr>\n<tr>\n<td>enabled</td>\n<td>Boolean</td>\n<td>Looking is enabled?</td>\n</tr>\n<tr>\n<td>about</td>\n<td>String</td>\n<td>Looking about</td>\n</tr>\n<tr>\n<td>skills</td>\n<td>Array</td>\n<td>Array of looking skills</td>\n</tr>\n<tr>\n<td>city</td>\n<td>City Object</td>\n<td>City where looking</td>\n</tr>\n<tr>\n<td>remote</td>\n<td>Boolean</td>\n<td>Looking remote users?</td>\n</tr>\n<tr>\n<td>investment</td>\n<td>String</td>\n<td>Looking investment</td>\n</tr>\n<tr>\n<td>weekly_hours</td>\n<td>Integer</td>\n<td>Hours per weekly</td>\n</tr>\n<tr>\n<td>position</td>\n<td>String</td>\n<td>Looking position</td>\n</tr>\n<tr>\n<td>time_commitment</td>\n<td>Integer</td>\n<td>Time commitment</td>\n</tr>\n<tr>\n<td>compensation</td>\n<td>String</td>\n<td>Compensation</td>\n</tr>\n<tr>\n<td>equity_compensation</td>\n<td>String</td>\n<td>Equity compensation</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"opento-object\">OpenTo Object</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>role</td>\n<td>String</td>\n<td>Looking role. Can be: founder, adviser, employee, freelance</td>\n</tr>\n<tr>\n<td>enabled</td>\n<td>Boolean</td>\n<td>Looking is enabled?</td>\n</tr>\n<tr>\n<td>about</td>\n<td>String</td>\n<td>Looking about</td>\n</tr>\n<tr>\n<td>skills</td>\n<td>Array</td>\n<td>Array of looking skills</td>\n</tr>\n<tr>\n<td>city</td>\n<td>City Object</td>\n<td>City where looking</td>\n</tr>\n<tr>\n<td>remote</td>\n<td>Boolean</td>\n<td>Looking remote users?</td>\n</tr>\n<tr>\n<td>investment</td>\n<td>String</td>\n<td>Looking investment</td>\n</tr>\n<tr>\n<td>weekly_hours</td>\n<td>Integer</td>\n<td>Hours per weekly</td>\n</tr>\n<tr>\n<td>time_commitment</td>\n<td>Integer</td>\n<td>Time commitment</td>\n</tr>\n<tr>\n<td>compensation</td>\n<td>String</td>\n<td>Compensation</td>\n</tr>\n<tr>\n<td>how_can_help</td>\n<td>String</td>\n<td>How the adviser can help</td>\n</tr>\n<tr>\n<td>key_accomplishments</td>\n<td>String</td>\n<td>Adviser's key accomplishments</td>\n</tr>\n<tr>\n<td>num_founded_startups</td>\n<td>int</td>\n<td>Number of founded startups</td>\n</tr>\n<tr>\n<td>num_operated_startups</td>\n<td>int</td>\n<td>Number of operated startups</td>\n</tr>\n<tr>\n<td>years_operating_startups</td>\n<td>int</td>\n<td>Years Operating Startups</td>\n</tr>\n<tr>\n<td>num_advised_businesses</td>\n<td>int</td>\n<td>Number of advised businesses</td>\n</tr>\n<tr>\n<td>years_advising_businesses</td>\n<td>int</td>\n<td>Years advising businesses</td>\n</tr>\n<tr>\n<td>advisory_experience</td>\n<td>Array</td>\n<td>Working Experience Objects</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"working-experience-object\">Working Experience Object</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>company</td>\n<td>String</td>\n<td>Company</td>\n</tr>\n<tr>\n<td>position</td>\n<td>String</td>\n<td>Position in company</td>\n</tr>\n<tr>\n<td>description</td>\n<td>String</td>\n<td>Description in company</td>\n</tr>\n<tr>\n<td>from_year</td>\n<td>Integer</td>\n<td>Year start in company</td>\n</tr>\n<tr>\n<td>from_month</td>\n<td>Integer</td>\n<td>Month start in company</td>\n</tr>\n<tr>\n<td>to_year</td>\n<td>Integer</td>\n<td>Year end in company</td>\n</tr>\n<tr>\n<td>to_month</td>\n<td>Integer</td>\n<td>Month end in company</td>\n</tr>\n<tr>\n<td>current</td>\n<td>Boolean</td>\n<td>Is actual company?</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"b2983ea0-4773-43f8-9ab7-d558ce0eb4a7"},{"name":"Discuss - Items","item":[{"name":"Item","id":"422e389d-7141-dd78-ea19-23746c786052","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/api/v2/discuss/items","description":"<p>Gets a specific item by id.</p>\n<h2 id=\"response\">Response</h2>\n<p>Return an array that contains inside the data two fields:</p>\n<ul>\n<li>question: Item Object representing the questions.</li>\n<li>answers: Array of Item Objects paginated including the first page (number 0).</li>\n</ul>\n","urlObject":{"path":["api","v2","discuss","items"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"eae57b79-248a-24d3-e7ee-ab2e94b1960d","name":"200 : OK","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/api/v2/discuss/items/123412341234"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":"0","body":"{\n    \"data\": {\n        \"question\": {\n            \"id\": \"584f9e71b434012123054ef4\",\n            \"updated\": false,\n            \"type\": \"question\",\n            \"user_id\": \"579944feb43401c03601e16d\",\n            \"subject\": \"What is your best advice for first time entrepreneurs?\",\n            \"body\": \"\\n                    \\n                    A good friend is taking the leap of faith and starting her own business. Would love to hear your words of wisdom so that I can share with her :)                    \",\n            \"follow_count\": 310,\n            \"vote_score\": 299,\n            \"user_editable\": true,\n            \"user_following\": false,\n            \"child_updated\": \"2017-09-06T08:25:00+0000\",\n            \"is_anonymous\": false,\n            \"embedded_topics\": [\n                {\n                    \"topic_id\": \"584f9c8eb434012123004787\",\n                    \"created_at\": \"2014-10-03T00:45:54+0000\",\n                    \"name\": \"Entrepreneurship\",\n                    \"description\": \"Entrepreneurship is the process of setting up a business, including deciding the business model, acquiring and organizing the necessary factors of production such as funding and human resources. The entrepreneur takes the overall responsibility over the new business.\",\n                    \"item_count\": 0,\n                    \"question_count\": 412,\n                    \"answer_count\": 0,\n                    \"view_count\": 0,\n                    \"follow_count\": 16093,\n                    \"share_count\": 0,\n                    \"url\": \"entrepreneurship\"\n                },\n                {\n                    \"topic_id\": \"584f9c8eb43401212300431f\",\n                    \"created_at\": \"2013-07-18T03:42:14+0000\",\n                    \"name\": \"Advisors\",\n                    \"description\": \"Advisors are people who are experts in certain disciplines or subjects and who give counsel or advice to others on their area of expertise. FounderDating has thousands of advisors in hundreds of business topics.\",\n                    \"item_count\": 0,\n                    \"question_count\": 42,\n                    \"answer_count\": 0,\n                    \"view_count\": 0,\n                    \"follow_count\": 510,\n                    \"share_count\": 0,\n                    \"url\": \"advisors\"\n                },\n                {\n                    \"topic_id\": \"584f9c8eb434012123004a07\",\n                    \"created_at\": \"2014-10-03T00:45:54+0000\",\n                    \"name\": \"Startups\",\n                    \"item_count\": 0,\n                    \"question_count\": 637,\n                    \"answer_count\": 0,\n                    \"view_count\": 0,\n                    \"follow_count\": 13832,\n                    \"share_count\": 0,\n                    \"url\": \"startups\"\n                }\n            ],\n            \"user_profile_info\": {\n                \"first_name\": \"Alejandro\",\n                \"last_name\": \"Cremades\",\n                \"user_id\": \"579944feb43401c03601e16d\",\n                \"premium_flag\": true,\n                \"influencer_flag\": false,\n                \"role\": \"founder\",\n                \"responsiveness\": 82.69,\n                \"city\": {\n                    \"label\": \"New York, New York, US\",\n                    \"name\": \"New York\",\n                    \"region\": \"New York\",\n                    \"region_code\": \"NY\",\n                    \"country\": \"United States\",\n                    \"country_code\": \"US\",\n                    \"id\": \"56cc14c588b042411c0bab51\"\n                },\n                \"areas\": [\n                    \"business-development\"\n                ],\n                \"photo\": \"https://s3.amazonaws.com/cofounderslab-prod-media/user-54209_1463793579.jpg\",\n                \"legacy_photo_url\": \"https://s3.amazonaws.com/cofounderslab-prod-media/user-54209_1463793579.jpg\",\n                \"use_avatar\": false,\n                \"url\": \"http://10.50.50.50:8000/profile/alejandro-cremades\",\n                \"headline\": \"Executive Chairman at CoFoundersLab\",\n                \"connection_status\": \"not_existing_connection\"\n            },\n            \"url\": \"http://10.50.50.50:8000/discuss/what-is-your-best-advice-for-first-time-entrepreneurs\",\n            \"created_at\": \"08/28/2016 07:25:44\",\n            \"updated_at\": \"08/28/2016 07:25:44\",\n            \"answer_count\": 207,\n            \"body_plain\": \"\\n                    \\n                    A good friend is taking the leap of faith and starting her own business. Would love to hear your words of wisdom so that I can share with her :)                    \"\n        },\n        \"answers\": {\n            \"data\": [\n                {\n                    \"id\": \"584f9e87b43401212305f3f5\",\n                    \"updated\": false,\n                    \"type\": \"answer\",\n                    \"user_id\": \"584f9dc3b434012123040245\",\n                    \"subject\": \"What is your best advice for first time entrepreneurs?\",\n                    \"body\": \"<p>You've got the passion. You've got the work ethic. You know you can do that thing better than anyone else. All that remains is the money. Formulate the business and cash flow plans out 3 years, as realistically and as conservatively as you can predict. Secure a source of additional financing during the rough spots without giving away equity.</p><p>After paying yourself more than what you're worth as a worker elsewhere, and after paying the business the same as a coequal partner, where does the business' financial health stand versus your family's financial needs over the next 5 years.</p><p>Now look at your plan. Knowing that it's wrong, if you think its wrong on the upside, proceeded. If you think its wrong on the downside, rethink the business.</p>\",\n                    \"vote_score\": 0,\n                    \"user_editable\": true,\n                    \"user_following\": false,\n                    \"embedded_topics\": [],\n                    \"user_profile_info\": {\n                        \"first_name\": \"Gabe\",\n                        \"last_name\": \"Micchelli\",\n                        \"user_id\": \"584f9dc3b434012123040245\",\n                        \"premium_flag\": false,\n                        \"role\": \"adviser\",\n                        \"city\": {\n                            \"label\": \"Brooklyn, New York, US\",\n                            \"name\": \"Brooklyn\",\n                            \"region\": \"New York\",\n                            \"region_code\": \"NY\",\n                            \"country\": \"United States of America\",\n                            \"country_code\": \"US\",\n                            \"id\": \"56cc14c588b042411c0babe5\"\n                        },\n                        \"areas\": [],\n                        \"photo\": \"https://media.licdn.com/mpr/mprx/0_0WJlRnRf1Gz349j5diLBHAQo37XF4npQj7X-EHRdGpzXWsl6E2Ltw7UdtaqSxZp6j2XBwRVu34ZXVbThEGeO2Ssfn4ZkVb8LdGePMnQ7iGdSVrAudQZt0AxE5Z\",\n                        \"legacy_photo_url\": \"https://media.licdn.com/mpr/mprx/0_0WJlRnRf1Gz349j5diLBHAQo37XF4npQj7X-EHRdGpzXWsl6E2Ltw7UdtaqSxZp6j2XBwRVu34ZXVbThEGeO2Ssfn4ZkVb8LdGePMnQ7iGdSVrAudQZt0AxE5Z\",\n                        \"use_avatar\": false,\n                        \"url\": \"http://10.50.50.50:8000/profile/gabe-micchelli-brooklyn-sz46tz\",\n                        \"headline\": \"Business Development and Marketing Professional - Medical Devices\",\n                        \"connection_status\": \"not_existing_connection\"\n                    },\n                    \"url\": \"http://10.50.50.50:8000/discuss/what-is-your-best-advice-for-first-time-entrepreneurs\",\n                    \"created_at\": \"09/09/2016 10:14:38\",\n                    \"updated_at\": \"09/09/2016 10:14:38\",\n                    \"body_plain\": \"You've got the passion. You've got the work ethic. You know you can do that thing better than anyone else. All that remains is the money. Formulate the business and cash flow plans out 3 years, as realistically and as conservatively as you can predict. Secure a source of additional financing during the rough spots without giving away equity.After paying yourself more than what you're worth as a worker elsewhere, and after paying the business the same as a coequal partner, where does the business' financial health stand versus your family's financial needs over the next 5 years.Now look at your plan. Knowing that it's wrong, if you think its wrong on the upside, proceeded. If you think its wrong on the downside, rethink the business.\"\n                },\n                {\n                    \"id\": \"584f9e87b43401212305f048\",\n                    \"updated\": false,\n                    \"type\": \"answer\",\n                    \"user_id\": \"584f9e09b43401212304cf01\",\n                    \"subject\": \"What is your best advice for first time entrepreneurs?\",\n                    \"body\": \"Cash Flow Analysis must coincide with Plan!  If you can't make it work within your anticipated funding and revenue generation then you need to adjust  strategies / activities\",\n                    \"vote_score\": 3,\n                    \"user_editable\": true,\n                    \"user_following\": false,\n                    \"embedded_topics\": [],\n                    \"user_profile_info\": {\n                        \"first_name\": \"Dave\",\n                        \"last_name\": \"McCarty\",\n                        \"user_id\": \"584f9e09b43401212304cf01\",\n                        \"premium_flag\": false,\n                        \"role\": \"founder\",\n                        \"city\": {\n                            \"label\": \"Fort Myers, Florida, US\",\n                            \"name\": \"Fort Myers\",\n                            \"region\": \"Florida\",\n                            \"region_code\": \"FL\",\n                            \"country\": \"United States of America\",\n                            \"country_code\": \"US\",\n                            \"id\": \"56cc14c588b042411c0bae6a\"\n                        },\n                        \"areas\": [\n                            \"business-development\",\n                            \"sales\",\n                            \"growth\",\n                            \"marketing\",\n                            \"product-management\"\n                        ],\n                        \"photo\": \"https://www.gravatar.com/avatar/cf4cb5a31407db6fd74ed90ddbf36933.jpg?s=170&d=https://cofounderslab.com/img/profile_avatars/avatar0.jpg\",\n                        \"legacy_photo_url\": \"https://www.gravatar.com/avatar/cf4cb5a31407db6fd74ed90ddbf36933.jpg?s=170&d=https://cofounderslab.com/img/profile_avatars/avatar0.jpg\",\n                        \"use_avatar\": false,\n                        \"url\": \"http://10.50.50.50:8000/profile/business-development-dave-mccarty-fort-myers-qqy7tz\",\n                        \"headline\": \"Sales & Marketing Consultant w/ Startup Success\",\n                        \"connection_status\": \"not_existing_connection\"\n                    },\n                    \"url\": \"http://10.50.50.50:8000/discuss/what-is-your-best-advice-for-first-time-entrepreneurs\",\n                    \"created_at\": \"08/28/2016 08:56:28\",\n                    \"updated_at\": \"08/28/2016 08:56:28\",\n                    \"body_plain\": \"Cash Flow Analysis must coincide with Plan!  If you can't make it work within your anticipated funding and revenue generation then you need to adjust  strategies / activities\"\n                },\n                {\n                    \"id\": \"584f9e87b43401212305f03f\",\n                    \"updated\": false,\n                    \"type\": \"answer\",\n                    \"user_id\": \"584f9d10b43401212301b137\",\n                    \"subject\": \"What is your best advice for first time entrepreneurs?\",\n                    \"body\": \"When you take that leap of faith do so with the knowledge that there is no safety net like you may have enjoyed in a corporate environment. Learn how to fly quickly our the bottom will approach rapidly. Almost every first time entrepreneur I know has either hit the bottom hard or come very close before finding their wings. And nobody knows how to fly when they first take that leap even if they believe they can. Be ready to fail, learn and try different approaches very quickly. Terminal velocity does not wait for you to over-deliberate.\",\n                    \"vote_score\": 5,\n                    \"user_editable\": true,\n                    \"user_following\": false,\n                    \"embedded_topics\": [],\n                    \"user_profile_info\": {\n                        \"first_name\": \"Jeff\",\n                        \"last_name\": \"Perlman\",\n                        \"user_id\": \"584f9d10b43401212301b137\",\n                        \"premium_flag\": false,\n                        \"role\": \"founder\",\n                        \"city\": {\n                            \"label\": \"Takoradi, Ghana\",\n                            \"name\": \"Takoradi\",\n                            \"region\": \"\",\n                            \"region_code\": \"\",\n                            \"country\": \"Ghana\",\n                            \"country_code\": \"GH\",\n                            \"id\": \"56cc14c488b042411c0b5cce\"\n                        },\n                        \"areas\": [\n                            \"business-development\",\n                            \"product-management\",\n                            \"marketing\"\n                        ],\n                        \"photo\": \"https://media.licdn.com/mpr/mprx/0_YMl-NqWznBgf61fgYoPpczwvqzhfFK_gxRfxtznJpTTuhlA1jWrOrPitB17\",\n                        \"legacy_photo_url\": \"https://media.licdn.com/mpr/mprx/0_YMl-NqWznBgf61fgYoPpczwvqzhfFK_gxRfxtznJpTTuhlA1jWrOrPitB17\",\n                        \"use_avatar\": false,\n                        \"url\": \"http://10.50.50.50:8000/profile/business-development-jeff-perlman-takoradi-gtw1tz\",\n                        \"headline\": \"CEO helping all your business apps get along. OneSaas. Now everyone's happy.\",\n                        \"connection_status\": \"not_existing_connection\"\n                    },\n                    \"url\": \"http://10.50.50.50:8000/discuss/what-is-your-best-advice-for-first-time-entrepreneurs\",\n                    \"created_at\": \"08/28/2016 08:20:38\",\n                    \"updated_at\": \"08/28/2016 08:20:38\",\n                    \"body_plain\": \"When you take that leap of faith do so with the knowledge that there is no safety net like you may have enjoyed in a corporate environment. Learn how to fly quickly our the bottom will approach rapidly. Almost every first time entrepreneur I know has either hit the bottom hard or come very close before finding their wings. And nobody knows how to fly when they first take that leap even if they believe they can. Be ready to fail, learn and try different approaches very quickly. Terminal velocity does not wait for you to over-deliberate.\"\n                },\n                {\n                    \"id\": \"584f9e87b43401212305f045\",\n                    \"updated\": false,\n                    \"type\": \"answer\",\n                    \"user_id\": \"584f9e0cb43401212304d76b\",\n                    \"subject\": \"What is your best advice for first time entrepreneurs?\",\n                    \"body\": \"A clear plan and persistence \",\n                    \"vote_score\": 3,\n                    \"user_editable\": true,\n                    \"user_following\": false,\n                    \"embedded_topics\": [],\n                    \"user_profile_info\": {\n                        \"first_name\": \"John\",\n                        \"last_name\": \"Bailey\",\n                        \"user_id\": \"584f9e0cb43401212304d76b\",\n                        \"premium_flag\": false,\n                        \"role\": \"founder\",\n                        \"responsiveness\": 92.31,\n                        \"city\": {\n                            \"label\": \"Boston, Massachusetts, US\",\n                            \"name\": \"Boston\",\n                            \"region\": \"Massachusetts\",\n                            \"region_code\": \"MA\",\n                            \"country\": \"United States\",\n                            \"country_code\": \"US\",\n                            \"id\": \"56cc14c588b042411c0bdb59\"\n                        },\n                        \"areas\": [\n                            \"fundraising\"\n                        ],\n                        \"photo\": \"https://media.licdn.com/mpr/mprx/0_0lRMo26HGkIkZJ3aYR6smzFwGFbSyMTmYR6RO-ba-sIDyvGmYZFRukQw_kwkEvmSj86R0FFartFDfe7edVE9jcbHbtFSfe1DYVEUe2Ue-enkf0CkYYssmPHNGS\",\n                        \"legacy_photo_url\": \"https://media.licdn.com/mpr/mprx/0_0lRMo26HGkIkZJ3aYR6smzFwGFbSyMTmYR6RO-ba-sIDyvGmYZFRukQw_kwkEvmSj86R0FFartFDfe7edVE9jcbHbtFSfe1DYVEUe2Ue-enkf0CkYYssmPHNGS\",\n                        \"use_avatar\": false,\n                        \"url\": \"http://10.50.50.50:8000/profile/john-bailey\",\n                        \"headline\": \"Accomplished Leader, Business Partner, Integrative Thinker, Startup CFO\",\n                        \"connection_status\": \"not_existing_connection\"\n                    },\n                    \"url\": \"http://10.50.50.50:8000/discuss/what-is-your-best-advice-for-first-time-entrepreneurs\",\n                    \"created_at\": \"08/28/2016 08:51:04\",\n                    \"updated_at\": \"08/28/2016 08:51:04\",\n                    \"body_plain\": \"A clear plan and persistence \"\n                },\n                {\n                    \"id\": \"584f9e87b43401212305f058\",\n                    \"updated\": false,\n                    \"type\": \"answer\",\n                    \"user_id\": \"584f9d98b434012123038081\",\n                    \"subject\": \"What is your best advice for first time entrepreneurs?\",\n                    \"body\": \"Be green!<div><br></div><div>Design enviro-friendly structures into the offerings from Day 1. This will save money/resources and provide marketing benefits (ask me how).</div><div><br></div><div>That said, I'd suggest that you'd get more useful answers if you told us a bit about the business--and aimed for more substance than a word or two.</div>\",\n                    \"vote_score\": 0,\n                    \"user_editable\": true,\n                    \"user_following\": false,\n                    \"embedded_topics\": [],\n                    \"user_profile_info\": {\n                        \"first_name\": \"Shel\",\n                        \"last_name\": \"Horowitz\",\n                        \"user_id\": \"584f9d98b434012123038081\",\n                        \"premium_flag\": false,\n                        \"influencer_flag\": false,\n                        \"role\": \"founder\",\n                        \"responsiveness\": 96.3,\n                        \"city\": {\n                            \"label\": \"Springfield, Massachusetts, US\",\n                            \"name\": \"Springfield\",\n                            \"region\": \"Massachusetts\",\n                            \"region_code\": \"MA\",\n                            \"country\": \"United States\",\n                            \"country_code\": \"US\",\n                            \"id\": \"56cc14c588b042411c0b7f3e\"\n                        },\n                        \"areas\": [],\n                        \"photo\": \"https://media.licdn.com/mpr/mprx/0_mbkvkpkuCdCW4Juc2FLUFgdmkdAWORhc2FV4CjUCfSKoJVtMmBLMhBTnOaM\",\n                        \"legacy_photo_url\": \"https://media.licdn.com/mpr/mprx/0_mbkvkpkuCdCW4Juc2FLUFgdmkdAWORhc2FV4CjUCfSKoJVtMmBLMhBTnOaM\",\n                        \"use_avatar\": false,\n                        \"url\": \"http://10.50.50.50:8000/profile/shel-horowitz\",\n                        \"headline\": \"I help organizations thrive by building social transformation into your products, your services, and your marketing\",\n                        \"connection_status\": \"not_existing_connection\"\n                    },\n                    \"url\": \"http://10.50.50.50:8000/discuss/what-is-your-best-advice-for-first-time-entrepreneurs\",\n                    \"created_at\": \"08/28/2016 13:46:13\",\n                    \"updated_at\": \"08/28/2016 13:46:13\",\n                    \"body_plain\": \"Be green!Design enviro-friendly structures into the offerings from Day 1. This will save money/resources and provide marketing benefits (ask me how).That said, I'd suggest that you'd get more useful answers if you told us a bit about the business--and aimed for more substance than a word or two.\"\n                },\n                {\n                    \"id\": \"584f9e87b43401212305f063\",\n                    \"updated\": false,\n                    \"type\": \"answer\",\n                    \"user_id\": \"57994549b43401c036027c08\",\n                    \"subject\": \"What is your best advice for first time entrepreneurs?\",\n                    \"body\": \"Start. Now.<div><br></div><div>Then, be agile.</div><div><br></div><div>That means - make changes, fail fast. Fix things as they happen, don't try to build/create/plan every detail perfectly. (Unless you're building medical equipment, etc.)</div><div><br></div><div>Get something out there. You'll learn plenty as you start doing it.</div>\",\n                    \"vote_score\": 1,\n                    \"user_editable\": true,\n                    \"user_following\": false,\n                    \"embedded_topics\": [],\n                    \"user_profile_info\": {\n                        \"first_name\": \"Dave\",\n                        \"last_name\": \"Tavres\",\n                        \"user_id\": \"57994549b43401c036027c08\",\n                        \"premium_flag\": false,\n                        \"influencer_flag\": false,\n                        \"role\": \"founder\",\n                        \"responsiveness\": 55.56,\n                        \"city\": {\n                            \"label\": \"Anaheim, California, US\",\n                            \"name\": \"Anaheim\",\n                            \"region\": \"California\",\n                            \"region_code\": \"CA\",\n                            \"country\": \"United States\",\n                            \"country_code\": \"US\",\n                            \"id\": \"56cc14c588b042411c0bd16a\"\n                        },\n                        \"areas\": [\n                            \"product-management\",\n                            \"business-development\"\n                        ],\n                        \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                        \"legacy_photo_url\": \"https://s3.amazonaws.com/cofounderslab-prod-media/user-78351_1449822675.jpg\",\n                        \"use_avatar\": false,\n                        \"url\": \"http://10.50.50.50:8000/profile/dave-tavres\",\n                        \"headline\": \"Geek, agilist, entrepreneur, Disney fan, history nut, DeLorean owner, technology fan\",\n                        \"connection_status\": \"not_existing_connection\"\n                    },\n                    \"url\": \"http://10.50.50.50:8000/discuss/what-is-your-best-advice-for-first-time-entrepreneurs\",\n                    \"created_at\": \"08/28/2016 19:59:34\",\n                    \"updated_at\": \"08/28/2016 19:59:34\",\n                    \"body_plain\": \"Start. Now.Then, be agile.That means - make changes, fail fast. Fix things as they happen, don't try to build/create/plan every detail perfectly. (Unless you're building medical equipment, etc.)Get something out there. You'll learn plenty as you start doing it.\"\n                },\n                {\n                    \"id\": \"584f9e87b43401212305f064\",\n                    \"updated\": false,\n                    \"type\": \"answer\",\n                    \"user_id\": \"584f9dfeb43401212304b0d1\",\n                    \"subject\": \"What is your best advice for first time entrepreneurs?\",\n                    \"body\": \"Find a good support system. Mentor like Alejandro can help in areas like funding, but also look for others once you build your business model. Possibly use the Business Model Canvas to work through to identify areas where you can use help. \",\n                    \"vote_score\": 0,\n                    \"user_editable\": true,\n                    \"user_following\": false,\n                    \"embedded_topics\": [],\n                    \"user_profile_info\": {\n                        \"first_name\": \"George\",\n                        \"last_name\": \"Vukotich\",\n                        \"user_id\": \"584f9dfeb43401212304b0d1\",\n                        \"premium_flag\": false,\n                        \"role\": \"networker\",\n                        \"city\": {\n                            \"label\": \"Chicago, Illinois, US\",\n                            \"name\": \"Chicago\",\n                            \"region\": \"Illinois\",\n                            \"region_code\": \"IL\",\n                            \"country\": \"United States of America\",\n                            \"country_code\": \"US\",\n                            \"id\": \"56cc14c588b042411c0bb75e\"\n                        },\n                        \"areas\": [],\n                        \"photo\": \"https://www.gravatar.com/avatar/1738c2359dcb1d6a4fc5cf3c3abf1d0d.jpg?s=170&d=https://cofounderslab.com/img/profile_avatars/avatar0.jpg\",\n                        \"legacy_photo_url\": \"https://www.gravatar.com/avatar/1738c2359dcb1d6a4fc5cf3c3abf1d0d.jpg?s=170&d=https://cofounderslab.com/img/profile_avatars/avatar0.jpg\",\n                        \"use_avatar\": false,\n                        \"url\": \"http://10.50.50.50:8000/profile/george-vukotich-chicago-sqk7tz\",\n                        \"headline\": \"Advisor / Educator - Startup Companies/Incubators/Accelerators\",\n                        \"connection_status\": \"not_existing_connection\"\n                    },\n                    \"url\": \"http://10.50.50.50:8000/discuss/what-is-your-best-advice-for-first-time-entrepreneurs\",\n                    \"created_at\": \"08/28/2016 20:21:22\",\n                    \"updated_at\": \"08/28/2016 20:21:22\",\n                    \"body_plain\": \"Find a good support system. Mentor like Alejandro can help in areas like funding, but also look for others once you build your business model. Possibly use the Business Model Canvas to work through to identify areas where you can use help. \"\n                },\n                {\n                    \"id\": \"584f9e87b43401212305f049\",\n                    \"updated\": false,\n                    \"type\": \"answer\",\n                    \"user_id\": \"584f9de5b43401212304677d\",\n                    \"subject\": \"What is your best advice for first time entrepreneurs?\",\n                    \"body\": \"rock it\\n\\n\",\n                    \"vote_score\": 4,\n                    \"user_editable\": true,\n                    \"user_following\": false,\n                    \"embedded_topics\": [],\n                    \"user_profile_info\": {\n                        \"first_name\": \"Stanford\",\n                        \"last_name\": \"Crane\",\n                        \"user_id\": \"584f9de5b43401212304677d\",\n                        \"premium_flag\": false,\n                        \"role\": \"networker\",\n                        \"city\": {\n                            \"label\": \"San Francisco, California, US\",\n                            \"name\": \"San Francisco\",\n                            \"region\": \"California\",\n                            \"region_code\": \"CA\",\n                            \"country\": \"United States of America\",\n                            \"country_code\": \"US\",\n                            \"id\": \"56cc14c588b042411c0bd26e\"\n                        },\n                        \"areas\": [],\n                        \"photo\": \"https://www.gravatar.com/avatar/3ff9d21f582cb1e6b808d4294d34d275.jpg?s=170&d=https://cofounderslab.com/img/profile_avatars/avatar0.jpg\",\n                        \"legacy_photo_url\": \"https://www.gravatar.com/avatar/3ff9d21f582cb1e6b808d4294d34d275.jpg?s=170&d=https://cofounderslab.com/img/profile_avatars/avatar0.jpg\",\n                        \"use_avatar\": false,\n                        \"url\": \"http://10.50.50.50:8000/profile/stanford-crane-san-francisco-ydp6tz\",\n                        \"headline\": \"Founder at Cyber Security Incubator\",\n                        \"connection_status\": \"not_existing_connection\"\n                    },\n                    \"url\": \"http://10.50.50.50:8000/discuss/what-is-your-best-advice-for-first-time-entrepreneurs\",\n                    \"created_at\": \"08/28/2016 09:05:25\",\n                    \"updated_at\": \"08/28/2016 09:05:25\",\n                    \"body_plain\": \"rock it\\n\\n\"\n                },\n                {\n                    \"id\": \"584f9e87b43401212305f04e\",\n                    \"updated\": false,\n                    \"type\": \"answer\",\n                    \"user_id\": \"57994477b43401c036005a56\",\n                    \"subject\": \"What is your best advice for first time entrepreneurs?\",\n                    \"body\": \"Do the things that scare you the most and learn to manage your fear. IMHO, managing fear and trusting your gut are the two most important personal skills to being a successful entrepreneur. \",\n                    \"vote_score\": 0,\n                    \"user_editable\": true,\n                    \"user_following\": false,\n                    \"embedded_topics\": [],\n                    \"user_profile_info\": {\n                        \"first_name\": \"Chanel\",\n                        \"last_name\": \"Carlascio\",\n                        \"user_id\": \"57994477b43401c036005a56\",\n                        \"premium_flag\": true,\n                        \"role\": \"founder\",\n                        \"responsiveness\": 60,\n                        \"city\": {\n                            \"label\": \"Portland, Oregon, US\",\n                            \"name\": \"Portland\",\n                            \"region\": \"Oregon\",\n                            \"region_code\": \"OR\",\n                            \"country\": \"United States of America\",\n                            \"country_code\": \"US\",\n                            \"id\": \"56cc14c588b042411c0be35d\"\n                        },\n                        \"areas\": [\n                            \"business-development\"\n                        ],\n                        \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                        \"avatar\": 0,\n                        \"use_avatar\": true,\n                        \"url\": \"http://10.50.50.50:8000/profile/portland-or-b2b-services-business-developer-founder-chanel-carlascio-5858\",\n                        \"connection_status\": \"not_existing_connection\"\n                    },\n                    \"url\": \"http://10.50.50.50:8000/discuss/what-is-your-best-advice-for-first-time-entrepreneurs\",\n                    \"created_at\": \"08/28/2016 10:08:54\",\n                    \"updated_at\": \"08/28/2016 10:08:54\",\n                    \"body_plain\": \"Do the things that scare you the most and learn to manage your fear. IMHO, managing fear and trusting your gut are the two most important personal skills to being a successful entrepreneur. \"\n                },\n                {\n                    \"id\": \"584f9e87b43401212305f065\",\n                    \"updated\": false,\n                    \"type\": \"answer\",\n                    \"user_id\": \"5799455ab43401c036028d79\",\n                    \"subject\": \"What is your best advice for first time entrepreneurs?\",\n                    \"body\": \"Use net for Guidance. Take professionals guidance where highly required. Have reasonable business plan and check points. Where there is a will there is a way. Be and remain honest and thoroughly hard working. Have reasonable no of cofounder and or professionals / assistants.\\n<div>\\n<br></div>\\n<div>Be costumer centric. Derive win win situation in practice. Be open and broad-minded and hearted too. The things within your heart and strong desire will appear around you and in your business too.</div>\\n<div>\\n<br></div>\\n<div>All the best.</div>  \\n      \",\n                    \"vote_score\": 0,\n                    \"user_editable\": true,\n                    \"user_following\": false,\n                    \"embedded_topics\": [],\n                    \"user_profile_info\": {\n                        \"first_name\": \"Narendra\",\n                        \"last_name\": \"Yagnik\",\n                        \"user_id\": \"5799455ab43401c036028d79\",\n                        \"premium_flag\": true,\n                        \"influencer_flag\": false,\n                        \"role\": \"founder\",\n                        \"responsiveness\": 79.17,\n                        \"city\": {\n                            \"label\": \"Mountain View, California, US\",\n                            \"name\": \"Mountain View\",\n                            \"region\": \"California\",\n                            \"region_code\": \"CA\",\n                            \"country\": \"United States\",\n                            \"country_code\": \"US\",\n                            \"id\": \"56cc14c588b042411c0bd263\"\n                        },\n                        \"areas\": [\n                            \"engineering\"\n                        ],\n                        \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar12.jpg\",\n                        \"avatar\": 12,\n                        \"use_avatar\": true,\n                        \"url\": \"http://10.50.50.50:8000/profile/narendra-yagnik\",\n                        \"connection_status\": \"not_existing_connection\"\n                    },\n                    \"url\": \"http://10.50.50.50:8000/discuss/what-is-your-best-advice-for-first-time-entrepreneurs\",\n                    \"created_at\": \"08/28/2016 21:50:37\",\n                    \"updated_at\": \"08/28/2016 21:50:37\",\n                    \"body_plain\": \"Use net for Guidance. Take professionals guidance where highly required. Have reasonable business plan and check points. Where there is a will there is a way. Be and remain honest and thoroughly hard working. Have reasonable no of cofounder and or professionals / assistants.\\n\\n\\nBe costumer centric. Derive win win situation in practice. Be open and broad-minded and hearted too. The things within your heart and strong desire will appear around you and in your business too.\\n\\n\\nAll the best.  \\n      \"\n                }\n            ],\n            \"meta\": {\n                \"page\": 0,\n                \"page_size\": 10,\n                \"result_count\": 180,\n                \"page_last\": 17,\n                \"order_by\": []\n            }\n        }\n    },\n    \"errors\": []\n}"}],"_postman_id":"422e389d-7141-dd78-ea19-23746c786052"},{"name":"List","id":"15be865b-35a2-79b1-79e8-345fd92cc201","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/api/v2/discuss/items","description":"<p>Gets a list of items based of the parameters selected through query parameters.</p>\n<h2 id=\"query-parameters\">Query Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>type</td>\n<td>string</td>\n<td>false</td>\n<td>Possible values: question, answer</td>\n</tr>\n<tr>\n<td>mine</td>\n<td>boolean</td>\n<td>false</td>\n<td>If true will only return questions authored by the logged in user.</td>\n</tr>\n<tr>\n<td>follow</td>\n<td>boolean</td>\n<td>false</td>\n<td>If true will only return questions followed by the logged in user.</td>\n</tr>\n<tr>\n<td>page</td>\n<td>integer</td>\n<td>false</td>\n<td>Number of the page</td>\n</tr>\n<tr>\n<td>page_size</td>\n<td>integer</td>\n<td>false</td>\n<td>Size of the page</td>\n</tr>\n<tr>\n<td>sort</td>\n<td>string</td>\n<td>false</td>\n<td>Possible values: -createdAt</td>\n</tr>\n<tr>\n<td>max_answers</td>\n<td>integer</td>\n<td>false</td>\n<td>Max number of answers that the item can have</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\">Response</h2>\n<p>Array with:</p>\n<ul>\n<li>'list': Array of Item Objects (with paginations).</li>\n<li>'ads' : Array of Promo Objects.</li>\n</ul>\n","urlObject":{"path":["api","v2","discuss","items"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"394205ab-e802-21cf-7c19-a98f86903e97","name":"New Questions Example","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{host}}/api/v2/discuss/items?page=0&type=question&mine=false&max_answers=2&sort=-createdAt","host":["{{host}}"],"path":["api","v2","discuss","items"],"query":[{"key":"page","value":"0"},{"key":"type","value":"question"},{"key":"mine","value":"false"},{"key":"max_answers","value":"2"},{"key":"sort","value":"-createdAt"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":"0","body":"{\n    \"data\": [\n        {\n            \"id\": \"598a234acf161c7c2e398e69\",\n            \"updated\": false,\n            \"type\": \"answer\",\n            \"user_id\": \"598a1e61cf161c662d398e66\",\n            \"subject\": \"What is your best advice for first time entrepreneurs?\",\n            \"body\": \"<p>- Pick a big market. Seriously. No matter how good or lucky you are, a small market will stay small and limit your growth opportunity. Investors will shy away too.</p>\\n<p>- Do something you love. The amount of pain to go from idea to success is yet so incomprehensible to you that the only chance you have to make it is if you love what you do.</p>\\n<p>- Find a co-founder: If you are lucky enough to find a co-founder (implying someone you can reliably work with for the long term), go for it. I've done it solo and it is grueling. If you get sick the boat has no captain.</p>\\n<p>- Raise funds: better to own 10% of a 100MM company than 100% of a 5MM company.</p>\\n<p>- Hassle, hassle, hassle: shyness has no place in entrepreneurship (I mean the \\\"real entrepreneurship\\\" kind).</p>\\n<p><br></p>\",\n            \"follow_count\": 0,\n            \"vote_score\": 12,\n            \"user_vote_score\": 0,\n            \"user_editable\": true,\n            \"user_following\": false,\n            \"is_anonymous\": false,\n            \"embedded_topics\": [],\n            \"user_profile_info\": {\n                \"first_name\": \"Francesco\",\n                \"last_name\": \"Lo Conte\",\n                \"user_id\": \"598a1e61cf161c662d398e66\",\n                \"role\": \"adviser\",\n                \"city\": {\n                    \"label\": \"New York, New York, US\",\n                    \"name\": \"New York\",\n                    \"region\": \"New York\",\n                    \"region_code\": \"NY\",\n                    \"country\": \"United States\",\n                    \"country_code\": \"US\",\n                    \"id\": \"597b6a13e0ab46207a8b4589\"\n                },\n                \"areas\": [],\n                \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                \"legacy_photo_url\": \"https://media.licdn.com/mpr/mprx/0_mNbgZIbattLLJb0DeXBPjoWmv1wWs9PDWXJrYE98gboEOc3_Ik6lp87IGt_\",\n                \"use_avatar\": false,\n                \"url\": \"http://10.50.50.50:8000/profile/francesco-lo-conte\",\n                \"headline\": \"Founder & CEO of Esprow, a enterprise software FinTech.\",\n                \"connection_status\": \"not_existing_connection\"\n            },\n            \"url\": \"http://10.50.50.50:8000/discuss/what-is-your-best-advice-for-first-time-entrepreneurs\",\n            \"created_at\": \"08/08/2017 20:47:06\",\n            \"updated_at\": \"08/08/2017 20:47:06\",\n            \"body_plain\": \"- Pick a big market. Seriously. No matter how good or lucky you are, a small market will stay small and limit your growth opportunity. Investors will shy away too.\\n- Do something you love. The amount of pain to go from idea to success is yet so incomprehensible to you that the only chance you have to make it is if you love what you do.\\n- Find a co-founder: If you are lucky enough to find a co-founder (implying someone you can reliably work with for the long term), go for it. I've done it solo and it is grueling. If you get sick the boat has no captain.\\n- Raise funds: better to own 10% of a 100MM company than 100% of a 5MM company.\\n- Hassle, hassle, hassle: shyness has no place in entrepreneurship (I mean the \\\"real entrepreneurship\\\" kind).\\n\"\n        },\n        {\n            \"id\": \"58ef8f227aab469716359346\",\n            \"updated\": false,\n            \"type\": \"answer\",\n            \"user_id\": \"579944cab43401c036015a76\",\n            \"subject\": \"What is your best advice for first time entrepreneurs?\",\n            \"body\": \"<p>Know your audience, both from a sales perspective as well as publicity. Whether you're looking for employees, investors, strategic partners or customers, knowing exactly who you are trying to reach will help you develop and deliver strategic messaging that gets the job done effectively.</p>\",\n            \"follow_count\": 0,\n            \"vote_score\": 10,\n            \"user_vote_score\": 0,\n            \"user_editable\": true,\n            \"user_following\": false,\n            \"is_anonymous\": false,\n            \"embedded_topics\": [],\n            \"user_profile_info\": {\n                \"first_name\": \"David\",\n                \"last_name\": \"Menzies\",\n                \"user_id\": \"579944cab43401c036015a76\",\n                \"premium_flag\": false,\n                \"influencer_flag\": false,\n                \"role\": \"adviser\",\n                \"responsiveness\": 100,\n                \"city\": {\n                    \"label\": \"Raleigh, North Carolina, US\",\n                    \"name\": \"Raleigh\",\n                    \"region\": \"North Carolina\",\n                    \"region_code\": \"NC\",\n                    \"country\": \"United States\",\n                    \"country_code\": \"US\",\n                    \"id\": \"56cc14c588b042411c0ba086\"\n                },\n                \"areas\": [\n                    \"public-relations\"\n                ],\n                \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                \"avatar\": 0,\n                \"use_avatar\": false,\n                \"url\": \"http://10.50.50.50:8000/profile/david-menzies\",\n                \"headline\": \"Award-winning PR practitioner and startup advocate\",\n                \"connection_status\": \"not_existing_connection\"\n            },\n            \"url\": \"http://10.50.50.50:8000/discuss/what-is-your-best-advice-for-first-time-entrepreneurs\",\n            \"created_at\": \"04/13/2017 14:45:54\",\n            \"updated_at\": \"04/13/2017 14:45:54\",\n            \"body_plain\": \"Know your audience, both from a sales perspective as well as publicity. Whether you're looking for employees, investors, strategic partners or customers, knowing exactly who you are trying to reach will help you develop and deliver strategic messaging that gets the job done effectively.\"\n        },\n        {\n            \"id\": \"596a7a080e131c036c6b70d8\",\n            \"updated\": false,\n            \"type\": \"answer\",\n            \"user_id\": \"58f1ed7d0a121cac5dc83b06\",\n            \"subject\": \"What is your best advice for first time entrepreneurs?\",\n            \"body\": \"<p>Don't let the questions stop her from starting.</p>\",\n            \"follow_count\": 0,\n            \"vote_score\": 10,\n            \"user_vote_score\": 0,\n            \"user_editable\": true,\n            \"user_following\": false,\n            \"is_anonymous\": false,\n            \"embedded_topics\": [],\n            \"user_profile_info\": {\n                \"first_name\": \"Jason\",\n                \"last_name\": \"Cann\",\n                \"user_id\": \"58f1ed7d0a121cac5dc83b06\",\n                \"role\": \"networker\",\n                \"responsiveness\": 100,\n                \"city\": {\n                    \"label\": \"Naperville, Illinois, US\",\n                    \"name\": \"Naperville\",\n                    \"region\": \"Illinois\",\n                    \"region_code\": \"IL\",\n                    \"country\": \"United States of America\",\n                    \"country_code\": \"US\",\n                    \"id\": \"56cc14c588b042411c0bb746\"\n                },\n                \"areas\": [\n                    \"operations\",\n                    \"engineering\",\n                    \"business-development\"\n                ],\n                \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                \"use_avatar\": false,\n                \"url\": \"http://10.50.50.50:8000/profile/jason-cann\",\n                \"headline\": \"Founder of Cahal\",\n                \"connection_status\": \"not_existing_connection\"\n            },\n            \"url\": \"http://10.50.50.50:8000/discuss/what-is-your-best-advice-for-first-time-entrepreneurs\",\n            \"created_at\": \"07/15/2017 20:24:40\",\n            \"updated_at\": \"07/15/2017 20:24:40\",\n            \"body_plain\": \"Don't let the questions stop her from starting.\"\n        },\n        {\n            \"id\": \"584f9e87b43401212305f046\",\n            \"updated\": false,\n            \"type\": \"answer\",\n            \"user_id\": \"584f9cfab434012123015d9f\",\n            \"subject\": \"What is your best advice for first time entrepreneurs?\",\n            \"body\": \"Plan on no income for the first half year to a full year.   Be flexible:  Your original business model may not work, if it doesn't, learn from that and adapt it. \",\n            \"vote_score\": 9,\n            \"user_vote_score\": 0,\n            \"user_editable\": true,\n            \"user_following\": false,\n            \"embedded_topics\": [],\n            \"user_profile_info\": {\n                \"first_name\": \"Michael\",\n                \"last_name\": \"Meinberg\",\n                \"user_id\": \"584f9cfab434012123015d9f\",\n                \"premium_flag\": true,\n                \"role\": \"founder\",\n                \"city\": {\n                    \"label\": \"San Francisco, California, US\",\n                    \"name\": \"San Francisco\",\n                    \"region\": \"California\",\n                    \"region_code\": \"CA\",\n                    \"country\": \"United States of America\",\n                    \"country_code\": \"US\",\n                    \"id\": \"56cc14c588b042411c0bd26e\"\n                },\n                \"areas\": [\n                    \"engineering\",\n                    \"design\"\n                ],\n                \"photo\": \"https://www.gravatar.com/avatar/d0c9f176d0441a1dff17fa3634819811.jpg?s=170&d=https://cofounderslab.com/img/profile_avatars/avatar0.jpg\",\n                \"legacy_photo_url\": \"https://www.gravatar.com/avatar/d0c9f176d0441a1dff17fa3634819811.jpg?s=170&d=https://cofounderslab.com/img/profile_avatars/avatar0.jpg\",\n                \"use_avatar\": false,\n                \"url\": \"http://10.50.50.50:8000/profile/engineering-michael-meinberg-san-francisco-g9m1tz\",\n                \"headline\": \"Teacher (iOS Development) at The Mobile Makers Academy (A Hack Reactor School)\",\n                \"connection_status\": \"not_existing_connection\"\n            },\n            \"url\": \"http://10.50.50.50:8000/discuss/what-is-your-best-advice-for-first-time-entrepreneurs\",\n            \"created_at\": \"08/28/2016 08:53:39\",\n            \"updated_at\": \"08/28/2016 08:53:39\",\n            \"body_plain\": \"Plan on no income for the first half year to a full year.   Be flexible:  Your original business model may not work, if it doesn't, learn from that and adapt it. \"\n        },\n        {\n            \"id\": \"5949675eb2121c1445903ae9\",\n            \"updated\": false,\n            \"type\": \"answer\",\n            \"user_id\": \"584f9dbfb43401212303f907\",\n            \"subject\": \"What is your best advice for first time entrepreneurs?\",\n            \"body\": \"<p>Don't tall in love with your idea, fall in love with your customer. This is the best way to either figure out how to solve their problem or realize that you cannot as quickly as possible.</p>\",\n            \"follow_count\": 0,\n            \"vote_score\": 9,\n            \"user_vote_score\": 0,\n            \"user_editable\": true,\n            \"user_following\": false,\n            \"is_anonymous\": false,\n            \"embedded_topics\": [],\n            \"user_profile_info\": {\n                \"first_name\": \"Bill\",\n                \"last_name\": \"Flynn\",\n                \"user_id\": \"584f9dbfb43401212303f907\",\n                \"premium_flag\": false,\n                \"influencer_flag\": false,\n                \"role\": \"founder\",\n                \"responsiveness\": 71.43,\n                \"city\": {\n                    \"label\": \"Boston, Massachusetts, US\",\n                    \"name\": \"Boston\",\n                    \"region\": \"Massachusetts\",\n                    \"region_code\": \"MA\",\n                    \"country\": \"United States\",\n                    \"country_code\": \"US\",\n                    \"id\": \"56cc14c588b042411c0bdb59\"\n                },\n                \"areas\": [\n                    \"sales\",\n                    \"growth\",\n                    \"operations\",\n                    \"business-development\",\n                    \"marketing\"\n                ],\n                \"photo\": \"https://www.gravatar.com/avatar/c7ae47ecd400995f62b82f8a2add8d2b.jpg?s=170&d=https://cofounderslab.com/img/profile_avatars/avatar0.jpg\",\n                \"legacy_photo_url\": \"https://www.gravatar.com/avatar/c7ae47ecd400995f62b82f8a2add8d2b.jpg?s=170&d=https://cofounderslab.com/img/profile_avatars/avatar0.jpg\",\n                \"use_avatar\": false,\n                \"url\": \"http://10.50.50.50:8000/profile/bill-flynn\",\n                \"headline\": \"Catalyst Growth Advisors - PREDICTABLE AND PROFITABLE BUSINESS GROWTH\",\n                \"connection_status\": \"not_existing_connection\"\n            },\n            \"url\": \"http://10.50.50.50:8000/discuss/what-is-your-best-advice-for-first-time-entrepreneurs\",\n            \"created_at\": \"06/20/2017 18:20:14\",\n            \"updated_at\": \"06/20/2017 18:20:14\",\n            \"body_plain\": \"Don't tall in love with your idea, fall in love with your customer. This is the best way to either figure out how to solve their problem or realize that you cannot as quickly as possible.\"\n        },\n        {\n            \"id\": \"584f9e87b43401212305f0a9\",\n            \"updated\": false,\n            \"type\": \"answer\",\n            \"user_id\": \"57994515b43401c03601ff48\",\n            \"subject\": \"What is your best advice for first time entrepreneurs?\",\n            \"body\": \"<ul><li><span style=\\\"font-size: 1rem;\\\">Try to convince people (preferably knowledgeable investors) to invest in your company. Not to raise money, but because they'll ask you tough questions. Their questions will bring up issues that you may have not thought of or assumptions that your had made subconsciously without giving them much thought.   </span></li><li><span style=\\\"font-size: 1rem;\\\">Don't do it alone</span></li><li><span style=\\\"font-size: 1rem;\\\">Create a business model canvas and month to month cash flow projection spreadsheet for the first two years, and then test every little assumption that comes out of them.</span></li></ul><div><br></div>\",\n            \"vote_score\": 8,\n            \"user_vote_score\": 0,\n            \"user_editable\": true,\n            \"user_following\": false,\n            \"embedded_topics\": [],\n            \"user_profile_info\": {\n                \"first_name\": \"Siarez\",\n                \"last_name\": \"\",\n                \"user_id\": \"57994515b43401c03601ff48\",\n                \"premium_flag\": true,\n                \"influencer_flag\": false,\n                \"role\": \"founder\",\n                \"responsiveness\": 66.67,\n                \"city\": {\n                    \"label\": \"Vancouver, Canada\",\n                    \"name\": \"Vancouver\",\n                    \"region\": \"British Columbia\",\n                    \"region_code\": \"BC\",\n                    \"country\": \"Canada\",\n                    \"country_code\": \"CA\",\n                    \"id\": \"56cc14c488b042411c0b5474\"\n                },\n                \"areas\": [\n                    \"marketing\",\n                    \"product-management\",\n                    \"engineering\"\n                ],\n                \"photo\": \"https://s3.amazonaws.com/cofounderslab-prod-media/user-62443_1457141058.png\",\n                \"legacy_photo_url\": \"https://s3.amazonaws.com/cofounderslab-prod-media/user-62443_1457141058.png\",\n                \"use_avatar\": false,\n                \"url\": \"http://10.50.50.50:8000/profile/siarez\",\n                \"connection_status\": \"not_existing_connection\"\n            },\n            \"url\": \"http://10.50.50.50:8000/discuss/what-is-your-best-advice-for-first-time-entrepreneurs\",\n            \"created_at\": \"08/29/2016 10:24:11\",\n            \"updated_at\": \"08/29/2016 10:24:11\",\n            \"body_plain\": \"Try to convince people (preferably knowledgeable investors) to invest in your company. Not to raise money, but because they'll ask you tough questions. Their questions will bring up issues that you may have not thought of or assumptions that your had made subconsciously without giving them much thought.   Don't do it aloneCreate a business model canvas and month to month cash flow projection spreadsheet for the first two years, and then test every little assumption that comes out of them.\"\n        },\n        {\n            \"id\": \"593d52506e121c9e7c6f7a45\",\n            \"updated\": false,\n            \"type\": \"answer\",\n            \"user_id\": \"593d47cc6e121c85796f7a45\",\n            \"subject\": \"What is your best advice for first time entrepreneurs?\",\n            \"body\": \"<p>be competitive against barriers of entry, never loose focus of why you started in the first place and gather enough resources to make you the largest shareholder of the enterprise is you are looking at partnership in the near future</p>\",\n            \"follow_count\": 0,\n            \"vote_score\": 8,\n            \"user_vote_score\": 0,\n            \"user_editable\": true,\n            \"user_following\": false,\n            \"is_anonymous\": false,\n            \"embedded_topics\": [],\n            \"user_profile_info\": {\n                \"first_name\": \"Kobby Wesley\",\n                \"last_name\": \"Okwandaho-Mensah\",\n                \"user_id\": \"593d47cc6e121c85796f7a45\",\n                \"role\": \"founder\",\n                \"city\": {\n                    \"label\": \"Cape Coast, Ghana\",\n                    \"name\": \"Cape Coast\",\n                    \"region\": \"\",\n                    \"region_code\": \"\",\n                    \"country\": \"Ghana\",\n                    \"country_code\": \"GH\",\n                    \"id\": \"56cc14c488b042411c0b5cca\"\n                },\n                \"areas\": [\n                    \"business-development\",\n                    \"public-relations\",\n                    \"strategy\"\n                ],\n                \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                \"use_avatar\": false,\n                \"url\": \"http://10.50.50.50:8000/profile/kobby-wesley-okwandaho-mensah\",\n                \"headline\": \"Vice President of Unity Hall-KNUST,Agricultural Economics,Youtuber,Business idea generation\",\n                \"connection_status\": \"not_existing_connection\"\n            },\n            \"url\": \"http://10.50.50.50:8000/discuss/what-is-your-best-advice-for-first-time-entrepreneurs\",\n            \"created_at\": \"06/11/2017 14:23:12\",\n            \"updated_at\": \"06/11/2017 14:23:12\",\n            \"body_plain\": \"be competitive against barriers of entry, never loose focus of why you started in the first place and gather enough resources to make you the largest shareholder of the enterprise is you are looking at partnership in the near future\"\n        },\n        {\n            \"id\": \"597634e9e0ab4637083e2659\",\n            \"updated\": false,\n            \"type\": \"answer\",\n            \"user_id\": \"592f32154e121ce221503b2d\",\n            \"subject\": \"What is your best advice for first time entrepreneurs?\",\n            \"body\": \"<p>Go to the Casino and put $200 on one hand of Black Jack. If you loose, and your pissed off for wasting $200.... entrepreneurship isn't for you!</p>\\n<p><br></p>\",\n            \"follow_count\": 0,\n            \"vote_score\": 8,\n            \"user_vote_score\": 0,\n            \"user_editable\": true,\n            \"user_following\": false,\n            \"is_anonymous\": false,\n            \"embedded_topics\": [],\n            \"user_profile_info\": {\n                \"first_name\": \"Gabriel\",\n                \"last_name\": \"Gervelis\",\n                \"user_id\": \"592f32154e121ce221503b2d\",\n                \"premium_flag\": true,\n                \"influencer_flag\": false,\n                \"role\": \"founder\",\n                \"responsiveness\": 88.89,\n                \"city\": {\n                    \"label\": \"Seattle, Washington, US\",\n                    \"name\": \"Seattle\",\n                    \"region\": \"Washington\",\n                    \"region_code\": \"WA\",\n                    \"country\": \"United States\",\n                    \"country_code\": \"US\",\n                    \"id\": \"56cc14c588b042411c0bc385\"\n                },\n                \"areas\": [\n                    \"business-development\",\n                    \"marketing\",\n                    \"strategy\"\n                ],\n                \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                \"use_avatar\": false,\n                \"url\": \"http://10.50.50.50:8000/profile/gabriel-gervelis-1\",\n                \"headline\": \"seeking eCommerce CTO for high revenue potential opportunity \",\n                \"connection_status\": \"not_existing_connection\"\n            },\n            \"url\": \"http://10.50.50.50:8000/discuss/what-is-your-best-advice-for-first-time-entrepreneurs\",\n            \"created_at\": \"07/24/2017 17:56:57\",\n            \"updated_at\": \"07/24/2017 17:56:57\",\n            \"body_plain\": \"Go to the Casino and put $200 on one hand of Black Jack. If you loose, and your pissed off for wasting $200.... entrepreneurship isn't for you!\\n\"\n        },\n        {\n            \"id\": \"5978813b6e121c4c56f104bc\",\n            \"updated\": false,\n            \"type\": \"answer\",\n            \"user_id\": \"593f8f0b6e121cdf35b29977\",\n            \"subject\": \"What is your best advice for first time entrepreneurs?\",\n            \"body\": \"<p>- go networking and connect with the right people</p>\\n<p>- be ready to walk the extra mile</p>\\n<p>- be passioned in what you are doing</p>\\n<p>- listen to feedback, evaluate it, improve yourself</p>\",\n            \"follow_count\": 0,\n            \"vote_score\": 8,\n            \"user_vote_score\": 0,\n            \"user_editable\": true,\n            \"user_following\": false,\n            \"is_anonymous\": false,\n            \"embedded_topics\": [],\n            \"user_profile_info\": {\n                \"first_name\": \"Leonard\",\n                \"last_name\": \"Pieper\",\n                \"user_id\": \"593f8f0b6e121cdf35b29977\",\n                \"influencer_flag\": false,\n                \"role\": \"founder\",\n                \"responsiveness\": 71.43,\n                \"city\": {\n                    \"label\": \"Münster, Germany\",\n                    \"name\": \"Münster\",\n                    \"region\": \"Nordrhein-Westfalen\",\n                    \"region_code\": \"NRW\",\n                    \"country\": \"Germany\",\n                    \"country_code\": \"DE\",\n                    \"id\": \"56cc14c488b042411c0b586c\"\n                },\n                \"areas\": [\n                    \"sales\",\n                    \"operations\"\n                ],\n                \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                \"use_avatar\": false,\n                \"url\": \"http://10.50.50.50:8000/profile/leonard-pieper-1\",\n                \"headline\": \"Startup Enthusiast & Cofounder\",\n                \"connection_status\": \"not_existing_connection\"\n            },\n            \"url\": \"http://10.50.50.50:8000/discuss/what-is-your-best-advice-for-first-time-entrepreneurs\",\n            \"created_at\": \"07/26/2017 11:47:07\",\n            \"updated_at\": \"07/26/2017 11:47:07\",\n            \"body_plain\": \"- go networking and connect with the right people\\n- be ready to walk the extra mile\\n- be passioned in what you are doing\\n- listen to feedback, evaluate it, improve yourself\"\n        },\n        {\n            \"id\": \"5985ed8dcf161cfe590e1bf4\",\n            \"updated\": false,\n            \"type\": \"answer\",\n            \"user_id\": \"58c42a083eab46c91b8b4568\",\n            \"subject\": \"What is your best advice for first time entrepreneurs?\",\n            \"body\": \"<p>Find a genuine and committed industry mentor whom you respect to guide you. The journey will be brutal but enriching.</p>\",\n            \"follow_count\": 0,\n            \"vote_score\": 8,\n            \"user_vote_score\": 0,\n            \"user_editable\": true,\n            \"user_following\": false,\n            \"is_anonymous\": false,\n            \"embedded_topics\": [],\n            \"user_profile_info\": {\n                \"first_name\": \"Wilson\",\n                \"last_name\": \"Foo\",\n                \"user_id\": \"58c42a083eab46c91b8b4568\",\n                \"influencer_flag\": false,\n                \"role\": \"networker\",\n                \"responsiveness\": 100,\n                \"city\": {\n                    \"label\": \"Singapore, Singapore\",\n                    \"name\": \"Singapore\",\n                    \"region\": \"\",\n                    \"region_code\": \"\",\n                    \"country\": \"Singapore\",\n                    \"country_code\": \"SG\",\n                    \"id\": \"56cc14c488b042411c0b70e5\"\n                },\n                \"areas\": [\n                    \"fundraising\",\n                    \"business-development\",\n                    \"management\"\n                ],\n                \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                \"avatar\": 4,\n                \"use_avatar\": false,\n                \"url\": \"http://10.50.50.50:8000/profile/wilson-foo\",\n                \"headline\": \"1 Project Per Year.\",\n                \"connection_status\": \"not_existing_connection\"\n            },\n            \"url\": \"http://10.50.50.50:8000/discuss/what-is-your-best-advice-for-first-time-entrepreneurs\",\n            \"created_at\": \"08/05/2017 16:08:45\",\n            \"updated_at\": \"08/05/2017 16:08:45\",\n            \"body_plain\": \"Find a genuine and committed industry mentor whom you respect to guide you. The journey will be brutal but enriching.\"\n        }\n    ],\n    \"meta\": {\n        \"page\": 2,\n        \"page_size\": \"10\",\n        \"result_count\": 198,\n        \"page_last\": 19,\n        \"order_by\": []\n    }\n}"},{"id":"8200a728-37d5-9d0c-25e2-2eb2d9b361c9","name":"Mine - Questions","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{host}}/api/v2/discuss/items?page=0&type=question&mine=true&sort=-createdAt","host":["{{host}}"],"path":["api","v2","discuss","items"],"query":[{"key":"page","value":"0"},{"key":"type","value":"question"},{"key":"mine","value":"true"},{"key":"sort","value":"-createdAt"}]}},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[],"responseTime":"0","body":"{\n    \"data\": [\n        {\n            \"id\": \"598a234acf161c7c2e398e69\",\n            \"updated\": false,\n            \"type\": \"answer\",\n            \"user_id\": \"598a1e61cf161c662d398e66\",\n            \"subject\": \"What is your best advice for first time entrepreneurs?\",\n            \"body\": \"<p>- Pick a big market. Seriously. No matter how good or lucky you are, a small market will stay small and limit your growth opportunity. Investors will shy away too.</p>\\n<p>- Do something you love. The amount of pain to go from idea to success is yet so incomprehensible to you that the only chance you have to make it is if you love what you do.</p>\\n<p>- Find a co-founder: If you are lucky enough to find a co-founder (implying someone you can reliably work with for the long term), go for it. I've done it solo and it is grueling. If you get sick the boat has no captain.</p>\\n<p>- Raise funds: better to own 10% of a 100MM company than 100% of a 5MM company.</p>\\n<p>- Hassle, hassle, hassle: shyness has no place in entrepreneurship (I mean the \\\"real entrepreneurship\\\" kind).</p>\\n<p><br></p>\",\n            \"follow_count\": 0,\n            \"vote_score\": 12,\n            \"user_vote_score\": 0,\n            \"user_editable\": true,\n            \"user_following\": false,\n            \"is_anonymous\": false,\n            \"embedded_topics\": [],\n            \"user_profile_info\": {\n                \"first_name\": \"Francesco\",\n                \"last_name\": \"Lo Conte\",\n                \"user_id\": \"598a1e61cf161c662d398e66\",\n                \"role\": \"adviser\",\n                \"city\": {\n                    \"label\": \"New York, New York, US\",\n                    \"name\": \"New York\",\n                    \"region\": \"New York\",\n                    \"region_code\": \"NY\",\n                    \"country\": \"United States\",\n                    \"country_code\": \"US\",\n                    \"id\": \"597b6a13e0ab46207a8b4589\"\n                },\n                \"areas\": [],\n                \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                \"legacy_photo_url\": \"https://media.licdn.com/mpr/mprx/0_mNbgZIbattLLJb0DeXBPjoWmv1wWs9PDWXJrYE98gboEOc3_Ik6lp87IGt_\",\n                \"use_avatar\": false,\n                \"url\": \"http://10.50.50.50:8000/profile/francesco-lo-conte\",\n                \"headline\": \"Founder & CEO of Esprow, a enterprise software FinTech.\",\n                \"connection_status\": \"not_existing_connection\"\n            },\n            \"url\": \"http://10.50.50.50:8000/discuss/what-is-your-best-advice-for-first-time-entrepreneurs\",\n            \"created_at\": \"08/08/2017 20:47:06\",\n            \"updated_at\": \"08/08/2017 20:47:06\",\n            \"body_plain\": \"- Pick a big market. Seriously. No matter how good or lucky you are, a small market will stay small and limit your growth opportunity. Investors will shy away too.\\n- Do something you love. The amount of pain to go from idea to success is yet so incomprehensible to you that the only chance you have to make it is if you love what you do.\\n- Find a co-founder: If you are lucky enough to find a co-founder (implying someone you can reliably work with for the long term), go for it. I've done it solo and it is grueling. If you get sick the boat has no captain.\\n- Raise funds: better to own 10% of a 100MM company than 100% of a 5MM company.\\n- Hassle, hassle, hassle: shyness has no place in entrepreneurship (I mean the \\\"real entrepreneurship\\\" kind).\\n\"\n        },\n        {\n            \"id\": \"58ef8f227aab469716359346\",\n            \"updated\": false,\n            \"type\": \"answer\",\n            \"user_id\": \"579944cab43401c036015a76\",\n            \"subject\": \"What is your best advice for first time entrepreneurs?\",\n            \"body\": \"<p>Know your audience, both from a sales perspective as well as publicity. Whether you're looking for employees, investors, strategic partners or customers, knowing exactly who you are trying to reach will help you develop and deliver strategic messaging that gets the job done effectively.</p>\",\n            \"follow_count\": 0,\n            \"vote_score\": 10,\n            \"user_vote_score\": 0,\n            \"user_editable\": true,\n            \"user_following\": false,\n            \"is_anonymous\": false,\n            \"embedded_topics\": [],\n            \"user_profile_info\": {\n                \"first_name\": \"David\",\n                \"last_name\": \"Menzies\",\n                \"user_id\": \"579944cab43401c036015a76\",\n                \"premium_flag\": false,\n                \"influencer_flag\": false,\n                \"role\": \"adviser\",\n                \"responsiveness\": 100,\n                \"city\": {\n                    \"label\": \"Raleigh, North Carolina, US\",\n                    \"name\": \"Raleigh\",\n                    \"region\": \"North Carolina\",\n                    \"region_code\": \"NC\",\n                    \"country\": \"United States\",\n                    \"country_code\": \"US\",\n                    \"id\": \"56cc14c588b042411c0ba086\"\n                },\n                \"areas\": [\n                    \"public-relations\"\n                ],\n                \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                \"avatar\": 0,\n                \"use_avatar\": false,\n                \"url\": \"http://10.50.50.50:8000/profile/david-menzies\",\n                \"headline\": \"Award-winning PR practitioner and startup advocate\",\n                \"connection_status\": \"not_existing_connection\"\n            },\n            \"url\": \"http://10.50.50.50:8000/discuss/what-is-your-best-advice-for-first-time-entrepreneurs\",\n            \"created_at\": \"04/13/2017 14:45:54\",\n            \"updated_at\": \"04/13/2017 14:45:54\",\n            \"body_plain\": \"Know your audience, both from a sales perspective as well as publicity. Whether you're looking for employees, investors, strategic partners or customers, knowing exactly who you are trying to reach will help you develop and deliver strategic messaging that gets the job done effectively.\"\n        },\n        {\n            \"id\": \"596a7a080e131c036c6b70d8\",\n            \"updated\": false,\n            \"type\": \"answer\",\n            \"user_id\": \"58f1ed7d0a121cac5dc83b06\",\n            \"subject\": \"What is your best advice for first time entrepreneurs?\",\n            \"body\": \"<p>Don't let the questions stop her from starting.</p>\",\n            \"follow_count\": 0,\n            \"vote_score\": 10,\n            \"user_vote_score\": 0,\n            \"user_editable\": true,\n            \"user_following\": false,\n            \"is_anonymous\": false,\n            \"embedded_topics\": [],\n            \"user_profile_info\": {\n                \"first_name\": \"Jason\",\n                \"last_name\": \"Cann\",\n                \"user_id\": \"58f1ed7d0a121cac5dc83b06\",\n                \"role\": \"networker\",\n                \"responsiveness\": 100,\n                \"city\": {\n                    \"label\": \"Naperville, Illinois, US\",\n                    \"name\": \"Naperville\",\n                    \"region\": \"Illinois\",\n                    \"region_code\": \"IL\",\n                    \"country\": \"United States of America\",\n                    \"country_code\": \"US\",\n                    \"id\": \"56cc14c588b042411c0bb746\"\n                },\n                \"areas\": [\n                    \"operations\",\n                    \"engineering\",\n                    \"business-development\"\n                ],\n                \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                \"use_avatar\": false,\n                \"url\": \"http://10.50.50.50:8000/profile/jason-cann\",\n                \"headline\": \"Founder of Cahal\",\n                \"connection_status\": \"not_existing_connection\"\n            },\n            \"url\": \"http://10.50.50.50:8000/discuss/what-is-your-best-advice-for-first-time-entrepreneurs\",\n            \"created_at\": \"07/15/2017 20:24:40\",\n            \"updated_at\": \"07/15/2017 20:24:40\",\n            \"body_plain\": \"Don't let the questions stop her from starting.\"\n        },\n        {\n            \"id\": \"584f9e87b43401212305f046\",\n            \"updated\": false,\n            \"type\": \"answer\",\n            \"user_id\": \"584f9cfab434012123015d9f\",\n            \"subject\": \"What is your best advice for first time entrepreneurs?\",\n            \"body\": \"Plan on no income for the first half year to a full year.   Be flexible:  Your original business model may not work, if it doesn't, learn from that and adapt it. \",\n            \"vote_score\": 9,\n            \"user_vote_score\": 0,\n            \"user_editable\": true,\n            \"user_following\": false,\n            \"embedded_topics\": [],\n            \"user_profile_info\": {\n                \"first_name\": \"Michael\",\n                \"last_name\": \"Meinberg\",\n                \"user_id\": \"584f9cfab434012123015d9f\",\n                \"premium_flag\": true,\n                \"role\": \"founder\",\n                \"city\": {\n                    \"label\": \"San Francisco, California, US\",\n                    \"name\": \"San Francisco\",\n                    \"region\": \"California\",\n                    \"region_code\": \"CA\",\n                    \"country\": \"United States of America\",\n                    \"country_code\": \"US\",\n                    \"id\": \"56cc14c588b042411c0bd26e\"\n                },\n                \"areas\": [\n                    \"engineering\",\n                    \"design\"\n                ],\n                \"photo\": \"https://www.gravatar.com/avatar/d0c9f176d0441a1dff17fa3634819811.jpg?s=170&d=https://cofounderslab.com/img/profile_avatars/avatar0.jpg\",\n                \"legacy_photo_url\": \"https://www.gravatar.com/avatar/d0c9f176d0441a1dff17fa3634819811.jpg?s=170&d=https://cofounderslab.com/img/profile_avatars/avatar0.jpg\",\n                \"use_avatar\": false,\n                \"url\": \"http://10.50.50.50:8000/profile/engineering-michael-meinberg-san-francisco-g9m1tz\",\n                \"headline\": \"Teacher (iOS Development) at The Mobile Makers Academy (A Hack Reactor School)\",\n                \"connection_status\": \"not_existing_connection\"\n            },\n            \"url\": \"http://10.50.50.50:8000/discuss/what-is-your-best-advice-for-first-time-entrepreneurs\",\n            \"created_at\": \"08/28/2016 08:53:39\",\n            \"updated_at\": \"08/28/2016 08:53:39\",\n            \"body_plain\": \"Plan on no income for the first half year to a full year.   Be flexible:  Your original business model may not work, if it doesn't, learn from that and adapt it. \"\n        },\n        {\n            \"id\": \"5949675eb2121c1445903ae9\",\n            \"updated\": false,\n            \"type\": \"answer\",\n            \"user_id\": \"584f9dbfb43401212303f907\",\n            \"subject\": \"What is your best advice for first time entrepreneurs?\",\n            \"body\": \"<p>Don't tall in love with your idea, fall in love with your customer. This is the best way to either figure out how to solve their problem or realize that you cannot as quickly as possible.</p>\",\n            \"follow_count\": 0,\n            \"vote_score\": 9,\n            \"user_vote_score\": 0,\n            \"user_editable\": true,\n            \"user_following\": false,\n            \"is_anonymous\": false,\n            \"embedded_topics\": [],\n            \"user_profile_info\": {\n                \"first_name\": \"Bill\",\n                \"last_name\": \"Flynn\",\n                \"user_id\": \"584f9dbfb43401212303f907\",\n                \"premium_flag\": false,\n                \"influencer_flag\": false,\n                \"role\": \"founder\",\n                \"responsiveness\": 71.43,\n                \"city\": {\n                    \"label\": \"Boston, Massachusetts, US\",\n                    \"name\": \"Boston\",\n                    \"region\": \"Massachusetts\",\n                    \"region_code\": \"MA\",\n                    \"country\": \"United States\",\n                    \"country_code\": \"US\",\n                    \"id\": \"56cc14c588b042411c0bdb59\"\n                },\n                \"areas\": [\n                    \"sales\",\n                    \"growth\",\n                    \"operations\",\n                    \"business-development\",\n                    \"marketing\"\n                ],\n                \"photo\": \"https://www.gravatar.com/avatar/c7ae47ecd400995f62b82f8a2add8d2b.jpg?s=170&d=https://cofounderslab.com/img/profile_avatars/avatar0.jpg\",\n                \"legacy_photo_url\": \"https://www.gravatar.com/avatar/c7ae47ecd400995f62b82f8a2add8d2b.jpg?s=170&d=https://cofounderslab.com/img/profile_avatars/avatar0.jpg\",\n                \"use_avatar\": false,\n                \"url\": \"http://10.50.50.50:8000/profile/bill-flynn\",\n                \"headline\": \"Catalyst Growth Advisors - PREDICTABLE AND PROFITABLE BUSINESS GROWTH\",\n                \"connection_status\": \"not_existing_connection\"\n            },\n            \"url\": \"http://10.50.50.50:8000/discuss/what-is-your-best-advice-for-first-time-entrepreneurs\",\n            \"created_at\": \"06/20/2017 18:20:14\",\n            \"updated_at\": \"06/20/2017 18:20:14\",\n            \"body_plain\": \"Don't tall in love with your idea, fall in love with your customer. This is the best way to either figure out how to solve their problem or realize that you cannot as quickly as possible.\"\n        },\n        {\n            \"id\": \"584f9e87b43401212305f0a9\",\n            \"updated\": false,\n            \"type\": \"answer\",\n            \"user_id\": \"57994515b43401c03601ff48\",\n            \"subject\": \"What is your best advice for first time entrepreneurs?\",\n            \"body\": \"<ul><li><span style=\\\"font-size: 1rem;\\\">Try to convince people (preferably knowledgeable investors) to invest in your company. Not to raise money, but because they'll ask you tough questions. Their questions will bring up issues that you may have not thought of or assumptions that your had made subconsciously without giving them much thought.   </span></li><li><span style=\\\"font-size: 1rem;\\\">Don't do it alone</span></li><li><span style=\\\"font-size: 1rem;\\\">Create a business model canvas and month to month cash flow projection spreadsheet for the first two years, and then test every little assumption that comes out of them.</span></li></ul><div><br></div>\",\n            \"vote_score\": 8,\n            \"user_vote_score\": 0,\n            \"user_editable\": true,\n            \"user_following\": false,\n            \"embedded_topics\": [],\n            \"user_profile_info\": {\n                \"first_name\": \"Siarez\",\n                \"last_name\": \"\",\n                \"user_id\": \"57994515b43401c03601ff48\",\n                \"premium_flag\": true,\n                \"influencer_flag\": false,\n                \"role\": \"founder\",\n                \"responsiveness\": 66.67,\n                \"city\": {\n                    \"label\": \"Vancouver, Canada\",\n                    \"name\": \"Vancouver\",\n                    \"region\": \"British Columbia\",\n                    \"region_code\": \"BC\",\n                    \"country\": \"Canada\",\n                    \"country_code\": \"CA\",\n                    \"id\": \"56cc14c488b042411c0b5474\"\n                },\n                \"areas\": [\n                    \"marketing\",\n                    \"product-management\",\n                    \"engineering\"\n                ],\n                \"photo\": \"https://s3.amazonaws.com/cofounderslab-prod-media/user-62443_1457141058.png\",\n                \"legacy_photo_url\": \"https://s3.amazonaws.com/cofounderslab-prod-media/user-62443_1457141058.png\",\n                \"use_avatar\": false,\n                \"url\": \"http://10.50.50.50:8000/profile/siarez\",\n                \"connection_status\": \"not_existing_connection\"\n            },\n            \"url\": \"http://10.50.50.50:8000/discuss/what-is-your-best-advice-for-first-time-entrepreneurs\",\n            \"created_at\": \"08/29/2016 10:24:11\",\n            \"updated_at\": \"08/29/2016 10:24:11\",\n            \"body_plain\": \"Try to convince people (preferably knowledgeable investors) to invest in your company. Not to raise money, but because they'll ask you tough questions. Their questions will bring up issues that you may have not thought of or assumptions that your had made subconsciously without giving them much thought.   Don't do it aloneCreate a business model canvas and month to month cash flow projection spreadsheet for the first two years, and then test every little assumption that comes out of them.\"\n        },\n        {\n            \"id\": \"593d52506e121c9e7c6f7a45\",\n            \"updated\": false,\n            \"type\": \"answer\",\n            \"user_id\": \"593d47cc6e121c85796f7a45\",\n            \"subject\": \"What is your best advice for first time entrepreneurs?\",\n            \"body\": \"<p>be competitive against barriers of entry, never loose focus of why you started in the first place and gather enough resources to make you the largest shareholder of the enterprise is you are looking at partnership in the near future</p>\",\n            \"follow_count\": 0,\n            \"vote_score\": 8,\n            \"user_vote_score\": 0,\n            \"user_editable\": true,\n            \"user_following\": false,\n            \"is_anonymous\": false,\n            \"embedded_topics\": [],\n            \"user_profile_info\": {\n                \"first_name\": \"Kobby Wesley\",\n                \"last_name\": \"Okwandaho-Mensah\",\n                \"user_id\": \"593d47cc6e121c85796f7a45\",\n                \"role\": \"founder\",\n                \"city\": {\n                    \"label\": \"Cape Coast, Ghana\",\n                    \"name\": \"Cape Coast\",\n                    \"region\": \"\",\n                    \"region_code\": \"\",\n                    \"country\": \"Ghana\",\n                    \"country_code\": \"GH\",\n                    \"id\": \"56cc14c488b042411c0b5cca\"\n                },\n                \"areas\": [\n                    \"business-development\",\n                    \"public-relations\",\n                    \"strategy\"\n                ],\n                \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                \"use_avatar\": false,\n                \"url\": \"http://10.50.50.50:8000/profile/kobby-wesley-okwandaho-mensah\",\n                \"headline\": \"Vice President of Unity Hall-KNUST,Agricultural Economics,Youtuber,Business idea generation\",\n                \"connection_status\": \"not_existing_connection\"\n            },\n            \"url\": \"http://10.50.50.50:8000/discuss/what-is-your-best-advice-for-first-time-entrepreneurs\",\n            \"created_at\": \"06/11/2017 14:23:12\",\n            \"updated_at\": \"06/11/2017 14:23:12\",\n            \"body_plain\": \"be competitive against barriers of entry, never loose focus of why you started in the first place and gather enough resources to make you the largest shareholder of the enterprise is you are looking at partnership in the near future\"\n        },\n        {\n            \"id\": \"597634e9e0ab4637083e2659\",\n            \"updated\": false,\n            \"type\": \"answer\",\n            \"user_id\": \"592f32154e121ce221503b2d\",\n            \"subject\": \"What is your best advice for first time entrepreneurs?\",\n            \"body\": \"<p>Go to the Casino and put $200 on one hand of Black Jack. If you loose, and your pissed off for wasting $200.... entrepreneurship isn't for you!</p>\\n<p><br></p>\",\n            \"follow_count\": 0,\n            \"vote_score\": 8,\n            \"user_vote_score\": 0,\n            \"user_editable\": true,\n            \"user_following\": false,\n            \"is_anonymous\": false,\n            \"embedded_topics\": [],\n            \"user_profile_info\": {\n                \"first_name\": \"Gabriel\",\n                \"last_name\": \"Gervelis\",\n                \"user_id\": \"592f32154e121ce221503b2d\",\n                \"premium_flag\": true,\n                \"influencer_flag\": false,\n                \"role\": \"founder\",\n                \"responsiveness\": 88.89,\n                \"city\": {\n                    \"label\": \"Seattle, Washington, US\",\n                    \"name\": \"Seattle\",\n                    \"region\": \"Washington\",\n                    \"region_code\": \"WA\",\n                    \"country\": \"United States\",\n                    \"country_code\": \"US\",\n                    \"id\": \"56cc14c588b042411c0bc385\"\n                },\n                \"areas\": [\n                    \"business-development\",\n                    \"marketing\",\n                    \"strategy\"\n                ],\n                \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                \"use_avatar\": false,\n                \"url\": \"http://10.50.50.50:8000/profile/gabriel-gervelis-1\",\n                \"headline\": \"seeking eCommerce CTO for high revenue potential opportunity \",\n                \"connection_status\": \"not_existing_connection\"\n            },\n            \"url\": \"http://10.50.50.50:8000/discuss/what-is-your-best-advice-for-first-time-entrepreneurs\",\n            \"created_at\": \"07/24/2017 17:56:57\",\n            \"updated_at\": \"07/24/2017 17:56:57\",\n            \"body_plain\": \"Go to the Casino and put $200 on one hand of Black Jack. If you loose, and your pissed off for wasting $200.... entrepreneurship isn't for you!\\n\"\n        },\n        {\n            \"id\": \"5978813b6e121c4c56f104bc\",\n            \"updated\": false,\n            \"type\": \"answer\",\n            \"user_id\": \"593f8f0b6e121cdf35b29977\",\n            \"subject\": \"What is your best advice for first time entrepreneurs?\",\n            \"body\": \"<p>- go networking and connect with the right people</p>\\n<p>- be ready to walk the extra mile</p>\\n<p>- be passioned in what you are doing</p>\\n<p>- listen to feedback, evaluate it, improve yourself</p>\",\n            \"follow_count\": 0,\n            \"vote_score\": 8,\n            \"user_vote_score\": 0,\n            \"user_editable\": true,\n            \"user_following\": false,\n            \"is_anonymous\": false,\n            \"embedded_topics\": [],\n            \"user_profile_info\": {\n                \"first_name\": \"Leonard\",\n                \"last_name\": \"Pieper\",\n                \"user_id\": \"593f8f0b6e121cdf35b29977\",\n                \"influencer_flag\": false,\n                \"role\": \"founder\",\n                \"responsiveness\": 71.43,\n                \"city\": {\n                    \"label\": \"Münster, Germany\",\n                    \"name\": \"Münster\",\n                    \"region\": \"Nordrhein-Westfalen\",\n                    \"region_code\": \"NRW\",\n                    \"country\": \"Germany\",\n                    \"country_code\": \"DE\",\n                    \"id\": \"56cc14c488b042411c0b586c\"\n                },\n                \"areas\": [\n                    \"sales\",\n                    \"operations\"\n                ],\n                \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                \"use_avatar\": false,\n                \"url\": \"http://10.50.50.50:8000/profile/leonard-pieper-1\",\n                \"headline\": \"Startup Enthusiast & Cofounder\",\n                \"connection_status\": \"not_existing_connection\"\n            },\n            \"url\": \"http://10.50.50.50:8000/discuss/what-is-your-best-advice-for-first-time-entrepreneurs\",\n            \"created_at\": \"07/26/2017 11:47:07\",\n            \"updated_at\": \"07/26/2017 11:47:07\",\n            \"body_plain\": \"- go networking and connect with the right people\\n- be ready to walk the extra mile\\n- be passioned in what you are doing\\n- listen to feedback, evaluate it, improve yourself\"\n        },\n        {\n            \"id\": \"5985ed8dcf161cfe590e1bf4\",\n            \"updated\": false,\n            \"type\": \"answer\",\n            \"user_id\": \"58c42a083eab46c91b8b4568\",\n            \"subject\": \"What is your best advice for first time entrepreneurs?\",\n            \"body\": \"<p>Find a genuine and committed industry mentor whom you respect to guide you. The journey will be brutal but enriching.</p>\",\n            \"follow_count\": 0,\n            \"vote_score\": 8,\n            \"user_vote_score\": 0,\n            \"user_editable\": true,\n            \"user_following\": false,\n            \"is_anonymous\": false,\n            \"embedded_topics\": [],\n            \"user_profile_info\": {\n                \"first_name\": \"Wilson\",\n                \"last_name\": \"Foo\",\n                \"user_id\": \"58c42a083eab46c91b8b4568\",\n                \"influencer_flag\": false,\n                \"role\": \"networker\",\n                \"responsiveness\": 100,\n                \"city\": {\n                    \"label\": \"Singapore, Singapore\",\n                    \"name\": \"Singapore\",\n                    \"region\": \"\",\n                    \"region_code\": \"\",\n                    \"country\": \"Singapore\",\n                    \"country_code\": \"SG\",\n                    \"id\": \"56cc14c488b042411c0b70e5\"\n                },\n                \"areas\": [\n                    \"fundraising\",\n                    \"business-development\",\n                    \"management\"\n                ],\n                \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                \"avatar\": 4,\n                \"use_avatar\": false,\n                \"url\": \"http://10.50.50.50:8000/profile/wilson-foo\",\n                \"headline\": \"1 Project Per Year.\",\n                \"connection_status\": \"not_existing_connection\"\n            },\n            \"url\": \"http://10.50.50.50:8000/discuss/what-is-your-best-advice-for-first-time-entrepreneurs\",\n            \"created_at\": \"08/05/2017 16:08:45\",\n            \"updated_at\": \"08/05/2017 16:08:45\",\n            \"body_plain\": \"Find a genuine and committed industry mentor whom you respect to guide you. The journey will be brutal but enriching.\"\n        }\n    ],\n    \"meta\": {\n        \"page\": 2,\n        \"page_size\": \"10\",\n        \"result_count\": 198,\n        \"page_last\": 19,\n        \"order_by\": []\n    }\n}"},{"id":"a559811b-7e72-dd42-cb83-0f2b76f41e16","name":"Mine - Answers","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{host}}/api/v2/discuss/items?page=0&type=answer&mine=true&sort=-createdAt","host":["{{host}}"],"path":["api","v2","discuss","items"],"query":[{"key":"page","value":"0"},{"key":"type","value":"answer"},{"key":"mine","value":"true"},{"key":"sort","value":"-createdAt"}]}},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[],"responseTime":"0","body":"{\n    \"data\": [\n        {\n            \"id\": \"598a234acf161c7c2e398e69\",\n            \"updated\": false,\n            \"type\": \"answer\",\n            \"user_id\": \"598a1e61cf161c662d398e66\",\n            \"subject\": \"What is your best advice for first time entrepreneurs?\",\n            \"body\": \"<p>- Pick a big market. Seriously. No matter how good or lucky you are, a small market will stay small and limit your growth opportunity. Investors will shy away too.</p>\\n<p>- Do something you love. The amount of pain to go from idea to success is yet so incomprehensible to you that the only chance you have to make it is if you love what you do.</p>\\n<p>- Find a co-founder: If you are lucky enough to find a co-founder (implying someone you can reliably work with for the long term), go for it. I've done it solo and it is grueling. If you get sick the boat has no captain.</p>\\n<p>- Raise funds: better to own 10% of a 100MM company than 100% of a 5MM company.</p>\\n<p>- Hassle, hassle, hassle: shyness has no place in entrepreneurship (I mean the \\\"real entrepreneurship\\\" kind).</p>\\n<p><br></p>\",\n            \"follow_count\": 0,\n            \"vote_score\": 12,\n            \"user_vote_score\": 0,\n            \"user_editable\": true,\n            \"user_following\": false,\n            \"is_anonymous\": false,\n            \"embedded_topics\": [],\n            \"user_profile_info\": {\n                \"first_name\": \"Francesco\",\n                \"last_name\": \"Lo Conte\",\n                \"user_id\": \"598a1e61cf161c662d398e66\",\n                \"role\": \"adviser\",\n                \"city\": {\n                    \"label\": \"New York, New York, US\",\n                    \"name\": \"New York\",\n                    \"region\": \"New York\",\n                    \"region_code\": \"NY\",\n                    \"country\": \"United States\",\n                    \"country_code\": \"US\",\n                    \"id\": \"597b6a13e0ab46207a8b4589\"\n                },\n                \"areas\": [],\n                \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                \"legacy_photo_url\": \"https://media.licdn.com/mpr/mprx/0_mNbgZIbattLLJb0DeXBPjoWmv1wWs9PDWXJrYE98gboEOc3_Ik6lp87IGt_\",\n                \"use_avatar\": false,\n                \"url\": \"http://10.50.50.50:8000/profile/francesco-lo-conte\",\n                \"headline\": \"Founder & CEO of Esprow, a enterprise software FinTech.\",\n                \"connection_status\": \"not_existing_connection\"\n            },\n            \"url\": \"http://10.50.50.50:8000/discuss/what-is-your-best-advice-for-first-time-entrepreneurs\",\n            \"created_at\": \"08/08/2017 20:47:06\",\n            \"updated_at\": \"08/08/2017 20:47:06\",\n            \"body_plain\": \"- Pick a big market. Seriously. No matter how good or lucky you are, a small market will stay small and limit your growth opportunity. Investors will shy away too.\\n- Do something you love. The amount of pain to go from idea to success is yet so incomprehensible to you that the only chance you have to make it is if you love what you do.\\n- Find a co-founder: If you are lucky enough to find a co-founder (implying someone you can reliably work with for the long term), go for it. I've done it solo and it is grueling. If you get sick the boat has no captain.\\n- Raise funds: better to own 10% of a 100MM company than 100% of a 5MM company.\\n- Hassle, hassle, hassle: shyness has no place in entrepreneurship (I mean the \\\"real entrepreneurship\\\" kind).\\n\"\n        },\n        {\n            \"id\": \"58ef8f227aab469716359346\",\n            \"updated\": false,\n            \"type\": \"answer\",\n            \"user_id\": \"579944cab43401c036015a76\",\n            \"subject\": \"What is your best advice for first time entrepreneurs?\",\n            \"body\": \"<p>Know your audience, both from a sales perspective as well as publicity. Whether you're looking for employees, investors, strategic partners or customers, knowing exactly who you are trying to reach will help you develop and deliver strategic messaging that gets the job done effectively.</p>\",\n            \"follow_count\": 0,\n            \"vote_score\": 10,\n            \"user_vote_score\": 0,\n            \"user_editable\": true,\n            \"user_following\": false,\n            \"is_anonymous\": false,\n            \"embedded_topics\": [],\n            \"user_profile_info\": {\n                \"first_name\": \"David\",\n                \"last_name\": \"Menzies\",\n                \"user_id\": \"579944cab43401c036015a76\",\n                \"premium_flag\": false,\n                \"influencer_flag\": false,\n                \"role\": \"adviser\",\n                \"responsiveness\": 100,\n                \"city\": {\n                    \"label\": \"Raleigh, North Carolina, US\",\n                    \"name\": \"Raleigh\",\n                    \"region\": \"North Carolina\",\n                    \"region_code\": \"NC\",\n                    \"country\": \"United States\",\n                    \"country_code\": \"US\",\n                    \"id\": \"56cc14c588b042411c0ba086\"\n                },\n                \"areas\": [\n                    \"public-relations\"\n                ],\n                \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                \"avatar\": 0,\n                \"use_avatar\": false,\n                \"url\": \"http://10.50.50.50:8000/profile/david-menzies\",\n                \"headline\": \"Award-winning PR practitioner and startup advocate\",\n                \"connection_status\": \"not_existing_connection\"\n            },\n            \"url\": \"http://10.50.50.50:8000/discuss/what-is-your-best-advice-for-first-time-entrepreneurs\",\n            \"created_at\": \"04/13/2017 14:45:54\",\n            \"updated_at\": \"04/13/2017 14:45:54\",\n            \"body_plain\": \"Know your audience, both from a sales perspective as well as publicity. Whether you're looking for employees, investors, strategic partners or customers, knowing exactly who you are trying to reach will help you develop and deliver strategic messaging that gets the job done effectively.\"\n        },\n        {\n            \"id\": \"596a7a080e131c036c6b70d8\",\n            \"updated\": false,\n            \"type\": \"answer\",\n            \"user_id\": \"58f1ed7d0a121cac5dc83b06\",\n            \"subject\": \"What is your best advice for first time entrepreneurs?\",\n            \"body\": \"<p>Don't let the questions stop her from starting.</p>\",\n            \"follow_count\": 0,\n            \"vote_score\": 10,\n            \"user_vote_score\": 0,\n            \"user_editable\": true,\n            \"user_following\": false,\n            \"is_anonymous\": false,\n            \"embedded_topics\": [],\n            \"user_profile_info\": {\n                \"first_name\": \"Jason\",\n                \"last_name\": \"Cann\",\n                \"user_id\": \"58f1ed7d0a121cac5dc83b06\",\n                \"role\": \"networker\",\n                \"responsiveness\": 100,\n                \"city\": {\n                    \"label\": \"Naperville, Illinois, US\",\n                    \"name\": \"Naperville\",\n                    \"region\": \"Illinois\",\n                    \"region_code\": \"IL\",\n                    \"country\": \"United States of America\",\n                    \"country_code\": \"US\",\n                    \"id\": \"56cc14c588b042411c0bb746\"\n                },\n                \"areas\": [\n                    \"operations\",\n                    \"engineering\",\n                    \"business-development\"\n                ],\n                \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                \"use_avatar\": false,\n                \"url\": \"http://10.50.50.50:8000/profile/jason-cann\",\n                \"headline\": \"Founder of Cahal\",\n                \"connection_status\": \"not_existing_connection\"\n            },\n            \"url\": \"http://10.50.50.50:8000/discuss/what-is-your-best-advice-for-first-time-entrepreneurs\",\n            \"created_at\": \"07/15/2017 20:24:40\",\n            \"updated_at\": \"07/15/2017 20:24:40\",\n            \"body_plain\": \"Don't let the questions stop her from starting.\"\n        },\n        {\n            \"id\": \"584f9e87b43401212305f046\",\n            \"updated\": false,\n            \"type\": \"answer\",\n            \"user_id\": \"584f9cfab434012123015d9f\",\n            \"subject\": \"What is your best advice for first time entrepreneurs?\",\n            \"body\": \"Plan on no income for the first half year to a full year.   Be flexible:  Your original business model may not work, if it doesn't, learn from that and adapt it. \",\n            \"vote_score\": 9,\n            \"user_vote_score\": 0,\n            \"user_editable\": true,\n            \"user_following\": false,\n            \"embedded_topics\": [],\n            \"user_profile_info\": {\n                \"first_name\": \"Michael\",\n                \"last_name\": \"Meinberg\",\n                \"user_id\": \"584f9cfab434012123015d9f\",\n                \"premium_flag\": true,\n                \"role\": \"founder\",\n                \"city\": {\n                    \"label\": \"San Francisco, California, US\",\n                    \"name\": \"San Francisco\",\n                    \"region\": \"California\",\n                    \"region_code\": \"CA\",\n                    \"country\": \"United States of America\",\n                    \"country_code\": \"US\",\n                    \"id\": \"56cc14c588b042411c0bd26e\"\n                },\n                \"areas\": [\n                    \"engineering\",\n                    \"design\"\n                ],\n                \"photo\": \"https://www.gravatar.com/avatar/d0c9f176d0441a1dff17fa3634819811.jpg?s=170&d=https://cofounderslab.com/img/profile_avatars/avatar0.jpg\",\n                \"legacy_photo_url\": \"https://www.gravatar.com/avatar/d0c9f176d0441a1dff17fa3634819811.jpg?s=170&d=https://cofounderslab.com/img/profile_avatars/avatar0.jpg\",\n                \"use_avatar\": false,\n                \"url\": \"http://10.50.50.50:8000/profile/engineering-michael-meinberg-san-francisco-g9m1tz\",\n                \"headline\": \"Teacher (iOS Development) at The Mobile Makers Academy (A Hack Reactor School)\",\n                \"connection_status\": \"not_existing_connection\"\n            },\n            \"url\": \"http://10.50.50.50:8000/discuss/what-is-your-best-advice-for-first-time-entrepreneurs\",\n            \"created_at\": \"08/28/2016 08:53:39\",\n            \"updated_at\": \"08/28/2016 08:53:39\",\n            \"body_plain\": \"Plan on no income for the first half year to a full year.   Be flexible:  Your original business model may not work, if it doesn't, learn from that and adapt it. \"\n        },\n        {\n            \"id\": \"5949675eb2121c1445903ae9\",\n            \"updated\": false,\n            \"type\": \"answer\",\n            \"user_id\": \"584f9dbfb43401212303f907\",\n            \"subject\": \"What is your best advice for first time entrepreneurs?\",\n            \"body\": \"<p>Don't tall in love with your idea, fall in love with your customer. This is the best way to either figure out how to solve their problem or realize that you cannot as quickly as possible.</p>\",\n            \"follow_count\": 0,\n            \"vote_score\": 9,\n            \"user_vote_score\": 0,\n            \"user_editable\": true,\n            \"user_following\": false,\n            \"is_anonymous\": false,\n            \"embedded_topics\": [],\n            \"user_profile_info\": {\n                \"first_name\": \"Bill\",\n                \"last_name\": \"Flynn\",\n                \"user_id\": \"584f9dbfb43401212303f907\",\n                \"premium_flag\": false,\n                \"influencer_flag\": false,\n                \"role\": \"founder\",\n                \"responsiveness\": 71.43,\n                \"city\": {\n                    \"label\": \"Boston, Massachusetts, US\",\n                    \"name\": \"Boston\",\n                    \"region\": \"Massachusetts\",\n                    \"region_code\": \"MA\",\n                    \"country\": \"United States\",\n                    \"country_code\": \"US\",\n                    \"id\": \"56cc14c588b042411c0bdb59\"\n                },\n                \"areas\": [\n                    \"sales\",\n                    \"growth\",\n                    \"operations\",\n                    \"business-development\",\n                    \"marketing\"\n                ],\n                \"photo\": \"https://www.gravatar.com/avatar/c7ae47ecd400995f62b82f8a2add8d2b.jpg?s=170&d=https://cofounderslab.com/img/profile_avatars/avatar0.jpg\",\n                \"legacy_photo_url\": \"https://www.gravatar.com/avatar/c7ae47ecd400995f62b82f8a2add8d2b.jpg?s=170&d=https://cofounderslab.com/img/profile_avatars/avatar0.jpg\",\n                \"use_avatar\": false,\n                \"url\": \"http://10.50.50.50:8000/profile/bill-flynn\",\n                \"headline\": \"Catalyst Growth Advisors - PREDICTABLE AND PROFITABLE BUSINESS GROWTH\",\n                \"connection_status\": \"not_existing_connection\"\n            },\n            \"url\": \"http://10.50.50.50:8000/discuss/what-is-your-best-advice-for-first-time-entrepreneurs\",\n            \"created_at\": \"06/20/2017 18:20:14\",\n            \"updated_at\": \"06/20/2017 18:20:14\",\n            \"body_plain\": \"Don't tall in love with your idea, fall in love with your customer. This is the best way to either figure out how to solve their problem or realize that you cannot as quickly as possible.\"\n        },\n        {\n            \"id\": \"584f9e87b43401212305f0a9\",\n            \"updated\": false,\n            \"type\": \"answer\",\n            \"user_id\": \"57994515b43401c03601ff48\",\n            \"subject\": \"What is your best advice for first time entrepreneurs?\",\n            \"body\": \"<ul><li><span style=\\\"font-size: 1rem;\\\">Try to convince people (preferably knowledgeable investors) to invest in your company. Not to raise money, but because they'll ask you tough questions. Their questions will bring up issues that you may have not thought of or assumptions that your had made subconsciously without giving them much thought.   </span></li><li><span style=\\\"font-size: 1rem;\\\">Don't do it alone</span></li><li><span style=\\\"font-size: 1rem;\\\">Create a business model canvas and month to month cash flow projection spreadsheet for the first two years, and then test every little assumption that comes out of them.</span></li></ul><div><br></div>\",\n            \"vote_score\": 8,\n            \"user_vote_score\": 0,\n            \"user_editable\": true,\n            \"user_following\": false,\n            \"embedded_topics\": [],\n            \"user_profile_info\": {\n                \"first_name\": \"Siarez\",\n                \"last_name\": \"\",\n                \"user_id\": \"57994515b43401c03601ff48\",\n                \"premium_flag\": true,\n                \"influencer_flag\": false,\n                \"role\": \"founder\",\n                \"responsiveness\": 66.67,\n                \"city\": {\n                    \"label\": \"Vancouver, Canada\",\n                    \"name\": \"Vancouver\",\n                    \"region\": \"British Columbia\",\n                    \"region_code\": \"BC\",\n                    \"country\": \"Canada\",\n                    \"country_code\": \"CA\",\n                    \"id\": \"56cc14c488b042411c0b5474\"\n                },\n                \"areas\": [\n                    \"marketing\",\n                    \"product-management\",\n                    \"engineering\"\n                ],\n                \"photo\": \"https://s3.amazonaws.com/cofounderslab-prod-media/user-62443_1457141058.png\",\n                \"legacy_photo_url\": \"https://s3.amazonaws.com/cofounderslab-prod-media/user-62443_1457141058.png\",\n                \"use_avatar\": false,\n                \"url\": \"http://10.50.50.50:8000/profile/siarez\",\n                \"connection_status\": \"not_existing_connection\"\n            },\n            \"url\": \"http://10.50.50.50:8000/discuss/what-is-your-best-advice-for-first-time-entrepreneurs\",\n            \"created_at\": \"08/29/2016 10:24:11\",\n            \"updated_at\": \"08/29/2016 10:24:11\",\n            \"body_plain\": \"Try to convince people (preferably knowledgeable investors) to invest in your company. Not to raise money, but because they'll ask you tough questions. Their questions will bring up issues that you may have not thought of or assumptions that your had made subconsciously without giving them much thought.   Don't do it aloneCreate a business model canvas and month to month cash flow projection spreadsheet for the first two years, and then test every little assumption that comes out of them.\"\n        },\n        {\n            \"id\": \"593d52506e121c9e7c6f7a45\",\n            \"updated\": false,\n            \"type\": \"answer\",\n            \"user_id\": \"593d47cc6e121c85796f7a45\",\n            \"subject\": \"What is your best advice for first time entrepreneurs?\",\n            \"body\": \"<p>be competitive against barriers of entry, never loose focus of why you started in the first place and gather enough resources to make you the largest shareholder of the enterprise is you are looking at partnership in the near future</p>\",\n            \"follow_count\": 0,\n            \"vote_score\": 8,\n            \"user_vote_score\": 0,\n            \"user_editable\": true,\n            \"user_following\": false,\n            \"is_anonymous\": false,\n            \"embedded_topics\": [],\n            \"user_profile_info\": {\n                \"first_name\": \"Kobby Wesley\",\n                \"last_name\": \"Okwandaho-Mensah\",\n                \"user_id\": \"593d47cc6e121c85796f7a45\",\n                \"role\": \"founder\",\n                \"city\": {\n                    \"label\": \"Cape Coast, Ghana\",\n                    \"name\": \"Cape Coast\",\n                    \"region\": \"\",\n                    \"region_code\": \"\",\n                    \"country\": \"Ghana\",\n                    \"country_code\": \"GH\",\n                    \"id\": \"56cc14c488b042411c0b5cca\"\n                },\n                \"areas\": [\n                    \"business-development\",\n                    \"public-relations\",\n                    \"strategy\"\n                ],\n                \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                \"use_avatar\": false,\n                \"url\": \"http://10.50.50.50:8000/profile/kobby-wesley-okwandaho-mensah\",\n                \"headline\": \"Vice President of Unity Hall-KNUST,Agricultural Economics,Youtuber,Business idea generation\",\n                \"connection_status\": \"not_existing_connection\"\n            },\n            \"url\": \"http://10.50.50.50:8000/discuss/what-is-your-best-advice-for-first-time-entrepreneurs\",\n            \"created_at\": \"06/11/2017 14:23:12\",\n            \"updated_at\": \"06/11/2017 14:23:12\",\n            \"body_plain\": \"be competitive against barriers of entry, never loose focus of why you started in the first place and gather enough resources to make you the largest shareholder of the enterprise is you are looking at partnership in the near future\"\n        },\n        {\n            \"id\": \"597634e9e0ab4637083e2659\",\n            \"updated\": false,\n            \"type\": \"answer\",\n            \"user_id\": \"592f32154e121ce221503b2d\",\n            \"subject\": \"What is your best advice for first time entrepreneurs?\",\n            \"body\": \"<p>Go to the Casino and put $200 on one hand of Black Jack. If you loose, and your pissed off for wasting $200.... entrepreneurship isn't for you!</p>\\n<p><br></p>\",\n            \"follow_count\": 0,\n            \"vote_score\": 8,\n            \"user_vote_score\": 0,\n            \"user_editable\": true,\n            \"user_following\": false,\n            \"is_anonymous\": false,\n            \"embedded_topics\": [],\n            \"user_profile_info\": {\n                \"first_name\": \"Gabriel\",\n                \"last_name\": \"Gervelis\",\n                \"user_id\": \"592f32154e121ce221503b2d\",\n                \"premium_flag\": true,\n                \"influencer_flag\": false,\n                \"role\": \"founder\",\n                \"responsiveness\": 88.89,\n                \"city\": {\n                    \"label\": \"Seattle, Washington, US\",\n                    \"name\": \"Seattle\",\n                    \"region\": \"Washington\",\n                    \"region_code\": \"WA\",\n                    \"country\": \"United States\",\n                    \"country_code\": \"US\",\n                    \"id\": \"56cc14c588b042411c0bc385\"\n                },\n                \"areas\": [\n                    \"business-development\",\n                    \"marketing\",\n                    \"strategy\"\n                ],\n                \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                \"use_avatar\": false,\n                \"url\": \"http://10.50.50.50:8000/profile/gabriel-gervelis-1\",\n                \"headline\": \"seeking eCommerce CTO for high revenue potential opportunity \",\n                \"connection_status\": \"not_existing_connection\"\n            },\n            \"url\": \"http://10.50.50.50:8000/discuss/what-is-your-best-advice-for-first-time-entrepreneurs\",\n            \"created_at\": \"07/24/2017 17:56:57\",\n            \"updated_at\": \"07/24/2017 17:56:57\",\n            \"body_plain\": \"Go to the Casino and put $200 on one hand of Black Jack. If you loose, and your pissed off for wasting $200.... entrepreneurship isn't for you!\\n\"\n        },\n        {\n            \"id\": \"5978813b6e121c4c56f104bc\",\n            \"updated\": false,\n            \"type\": \"answer\",\n            \"user_id\": \"593f8f0b6e121cdf35b29977\",\n            \"subject\": \"What is your best advice for first time entrepreneurs?\",\n            \"body\": \"<p>- go networking and connect with the right people</p>\\n<p>- be ready to walk the extra mile</p>\\n<p>- be passioned in what you are doing</p>\\n<p>- listen to feedback, evaluate it, improve yourself</p>\",\n            \"follow_count\": 0,\n            \"vote_score\": 8,\n            \"user_vote_score\": 0,\n            \"user_editable\": true,\n            \"user_following\": false,\n            \"is_anonymous\": false,\n            \"embedded_topics\": [],\n            \"user_profile_info\": {\n                \"first_name\": \"Leonard\",\n                \"last_name\": \"Pieper\",\n                \"user_id\": \"593f8f0b6e121cdf35b29977\",\n                \"influencer_flag\": false,\n                \"role\": \"founder\",\n                \"responsiveness\": 71.43,\n                \"city\": {\n                    \"label\": \"Münster, Germany\",\n                    \"name\": \"Münster\",\n                    \"region\": \"Nordrhein-Westfalen\",\n                    \"region_code\": \"NRW\",\n                    \"country\": \"Germany\",\n                    \"country_code\": \"DE\",\n                    \"id\": \"56cc14c488b042411c0b586c\"\n                },\n                \"areas\": [\n                    \"sales\",\n                    \"operations\"\n                ],\n                \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                \"use_avatar\": false,\n                \"url\": \"http://10.50.50.50:8000/profile/leonard-pieper-1\",\n                \"headline\": \"Startup Enthusiast & Cofounder\",\n                \"connection_status\": \"not_existing_connection\"\n            },\n            \"url\": \"http://10.50.50.50:8000/discuss/what-is-your-best-advice-for-first-time-entrepreneurs\",\n            \"created_at\": \"07/26/2017 11:47:07\",\n            \"updated_at\": \"07/26/2017 11:47:07\",\n            \"body_plain\": \"- go networking and connect with the right people\\n- be ready to walk the extra mile\\n- be passioned in what you are doing\\n- listen to feedback, evaluate it, improve yourself\"\n        },\n        {\n            \"id\": \"5985ed8dcf161cfe590e1bf4\",\n            \"updated\": false,\n            \"type\": \"answer\",\n            \"user_id\": \"58c42a083eab46c91b8b4568\",\n            \"subject\": \"What is your best advice for first time entrepreneurs?\",\n            \"body\": \"<p>Find a genuine and committed industry mentor whom you respect to guide you. The journey will be brutal but enriching.</p>\",\n            \"follow_count\": 0,\n            \"vote_score\": 8,\n            \"user_vote_score\": 0,\n            \"user_editable\": true,\n            \"user_following\": false,\n            \"is_anonymous\": false,\n            \"embedded_topics\": [],\n            \"user_profile_info\": {\n                \"first_name\": \"Wilson\",\n                \"last_name\": \"Foo\",\n                \"user_id\": \"58c42a083eab46c91b8b4568\",\n                \"influencer_flag\": false,\n                \"role\": \"networker\",\n                \"responsiveness\": 100,\n                \"city\": {\n                    \"label\": \"Singapore, Singapore\",\n                    \"name\": \"Singapore\",\n                    \"region\": \"\",\n                    \"region_code\": \"\",\n                    \"country\": \"Singapore\",\n                    \"country_code\": \"SG\",\n                    \"id\": \"56cc14c488b042411c0b70e5\"\n                },\n                \"areas\": [\n                    \"fundraising\",\n                    \"business-development\",\n                    \"management\"\n                ],\n                \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                \"avatar\": 4,\n                \"use_avatar\": false,\n                \"url\": \"http://10.50.50.50:8000/profile/wilson-foo\",\n                \"headline\": \"1 Project Per Year.\",\n                \"connection_status\": \"not_existing_connection\"\n            },\n            \"url\": \"http://10.50.50.50:8000/discuss/what-is-your-best-advice-for-first-time-entrepreneurs\",\n            \"created_at\": \"08/05/2017 16:08:45\",\n            \"updated_at\": \"08/05/2017 16:08:45\",\n            \"body_plain\": \"Find a genuine and committed industry mentor whom you respect to guide you. The journey will be brutal but enriching.\"\n        }\n    ],\n    \"meta\": {\n        \"page\": 2,\n        \"page_size\": \"10\",\n        \"result_count\": 198,\n        \"page_last\": 19,\n        \"order_by\": []\n    }\n}"},{"id":"b76119ea-1ee6-bc46-b9f5-11e6465ab37c","name":"Mine - Following questions","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{host}}/api/v2/discuss/items?page=0&type=question&mine=false&follow=true&sort=-createdAt","host":["{{host}}"],"path":["api","v2","discuss","items"],"query":[{"key":"page","value":"0"},{"key":"type","value":"question"},{"key":"mine","value":"false"},{"key":"follow","value":"true"},{"key":"sort","value":"-createdAt"}]}},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[],"responseTime":"0","body":"{\n    \"data\": [\n        {\n            \"id\": \"598a234acf161c7c2e398e69\",\n            \"updated\": false,\n            \"type\": \"answer\",\n            \"user_id\": \"598a1e61cf161c662d398e66\",\n            \"subject\": \"What is your best advice for first time entrepreneurs?\",\n            \"body\": \"<p>- Pick a big market. Seriously. No matter how good or lucky you are, a small market will stay small and limit your growth opportunity. Investors will shy away too.</p>\\n<p>- Do something you love. The amount of pain to go from idea to success is yet so incomprehensible to you that the only chance you have to make it is if you love what you do.</p>\\n<p>- Find a co-founder: If you are lucky enough to find a co-founder (implying someone you can reliably work with for the long term), go for it. I've done it solo and it is grueling. If you get sick the boat has no captain.</p>\\n<p>- Raise funds: better to own 10% of a 100MM company than 100% of a 5MM company.</p>\\n<p>- Hassle, hassle, hassle: shyness has no place in entrepreneurship (I mean the \\\"real entrepreneurship\\\" kind).</p>\\n<p><br></p>\",\n            \"follow_count\": 0,\n            \"vote_score\": 12,\n            \"user_vote_score\": 0,\n            \"user_editable\": true,\n            \"user_following\": false,\n            \"is_anonymous\": false,\n            \"embedded_topics\": [],\n            \"user_profile_info\": {\n                \"first_name\": \"Francesco\",\n                \"last_name\": \"Lo Conte\",\n                \"user_id\": \"598a1e61cf161c662d398e66\",\n                \"role\": \"adviser\",\n                \"city\": {\n                    \"label\": \"New York, New York, US\",\n                    \"name\": \"New York\",\n                    \"region\": \"New York\",\n                    \"region_code\": \"NY\",\n                    \"country\": \"United States\",\n                    \"country_code\": \"US\",\n                    \"id\": \"597b6a13e0ab46207a8b4589\"\n                },\n                \"areas\": [],\n                \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                \"legacy_photo_url\": \"https://media.licdn.com/mpr/mprx/0_mNbgZIbattLLJb0DeXBPjoWmv1wWs9PDWXJrYE98gboEOc3_Ik6lp87IGt_\",\n                \"use_avatar\": false,\n                \"url\": \"http://10.50.50.50:8000/profile/francesco-lo-conte\",\n                \"headline\": \"Founder & CEO of Esprow, a enterprise software FinTech.\",\n                \"connection_status\": \"not_existing_connection\"\n            },\n            \"url\": \"http://10.50.50.50:8000/discuss/what-is-your-best-advice-for-first-time-entrepreneurs\",\n            \"created_at\": \"08/08/2017 20:47:06\",\n            \"updated_at\": \"08/08/2017 20:47:06\",\n            \"body_plain\": \"- Pick a big market. Seriously. No matter how good or lucky you are, a small market will stay small and limit your growth opportunity. Investors will shy away too.\\n- Do something you love. The amount of pain to go from idea to success is yet so incomprehensible to you that the only chance you have to make it is if you love what you do.\\n- Find a co-founder: If you are lucky enough to find a co-founder (implying someone you can reliably work with for the long term), go for it. I've done it solo and it is grueling. If you get sick the boat has no captain.\\n- Raise funds: better to own 10% of a 100MM company than 100% of a 5MM company.\\n- Hassle, hassle, hassle: shyness has no place in entrepreneurship (I mean the \\\"real entrepreneurship\\\" kind).\\n\"\n        },\n        {\n            \"id\": \"58ef8f227aab469716359346\",\n            \"updated\": false,\n            \"type\": \"answer\",\n            \"user_id\": \"579944cab43401c036015a76\",\n            \"subject\": \"What is your best advice for first time entrepreneurs?\",\n            \"body\": \"<p>Know your audience, both from a sales perspective as well as publicity. Whether you're looking for employees, investors, strategic partners or customers, knowing exactly who you are trying to reach will help you develop and deliver strategic messaging that gets the job done effectively.</p>\",\n            \"follow_count\": 0,\n            \"vote_score\": 10,\n            \"user_vote_score\": 0,\n            \"user_editable\": true,\n            \"user_following\": false,\n            \"is_anonymous\": false,\n            \"embedded_topics\": [],\n            \"user_profile_info\": {\n                \"first_name\": \"David\",\n                \"last_name\": \"Menzies\",\n                \"user_id\": \"579944cab43401c036015a76\",\n                \"premium_flag\": false,\n                \"influencer_flag\": false,\n                \"role\": \"adviser\",\n                \"responsiveness\": 100,\n                \"city\": {\n                    \"label\": \"Raleigh, North Carolina, US\",\n                    \"name\": \"Raleigh\",\n                    \"region\": \"North Carolina\",\n                    \"region_code\": \"NC\",\n                    \"country\": \"United States\",\n                    \"country_code\": \"US\",\n                    \"id\": \"56cc14c588b042411c0ba086\"\n                },\n                \"areas\": [\n                    \"public-relations\"\n                ],\n                \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                \"avatar\": 0,\n                \"use_avatar\": false,\n                \"url\": \"http://10.50.50.50:8000/profile/david-menzies\",\n                \"headline\": \"Award-winning PR practitioner and startup advocate\",\n                \"connection_status\": \"not_existing_connection\"\n            },\n            \"url\": \"http://10.50.50.50:8000/discuss/what-is-your-best-advice-for-first-time-entrepreneurs\",\n            \"created_at\": \"04/13/2017 14:45:54\",\n            \"updated_at\": \"04/13/2017 14:45:54\",\n            \"body_plain\": \"Know your audience, both from a sales perspective as well as publicity. Whether you're looking for employees, investors, strategic partners or customers, knowing exactly who you are trying to reach will help you develop and deliver strategic messaging that gets the job done effectively.\"\n        },\n        {\n            \"id\": \"596a7a080e131c036c6b70d8\",\n            \"updated\": false,\n            \"type\": \"answer\",\n            \"user_id\": \"58f1ed7d0a121cac5dc83b06\",\n            \"subject\": \"What is your best advice for first time entrepreneurs?\",\n            \"body\": \"<p>Don't let the questions stop her from starting.</p>\",\n            \"follow_count\": 0,\n            \"vote_score\": 10,\n            \"user_vote_score\": 0,\n            \"user_editable\": true,\n            \"user_following\": false,\n            \"is_anonymous\": false,\n            \"embedded_topics\": [],\n            \"user_profile_info\": {\n                \"first_name\": \"Jason\",\n                \"last_name\": \"Cann\",\n                \"user_id\": \"58f1ed7d0a121cac5dc83b06\",\n                \"role\": \"networker\",\n                \"responsiveness\": 100,\n                \"city\": {\n                    \"label\": \"Naperville, Illinois, US\",\n                    \"name\": \"Naperville\",\n                    \"region\": \"Illinois\",\n                    \"region_code\": \"IL\",\n                    \"country\": \"United States of America\",\n                    \"country_code\": \"US\",\n                    \"id\": \"56cc14c588b042411c0bb746\"\n                },\n                \"areas\": [\n                    \"operations\",\n                    \"engineering\",\n                    \"business-development\"\n                ],\n                \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                \"use_avatar\": false,\n                \"url\": \"http://10.50.50.50:8000/profile/jason-cann\",\n                \"headline\": \"Founder of Cahal\",\n                \"connection_status\": \"not_existing_connection\"\n            },\n            \"url\": \"http://10.50.50.50:8000/discuss/what-is-your-best-advice-for-first-time-entrepreneurs\",\n            \"created_at\": \"07/15/2017 20:24:40\",\n            \"updated_at\": \"07/15/2017 20:24:40\",\n            \"body_plain\": \"Don't let the questions stop her from starting.\"\n        },\n        {\n            \"id\": \"584f9e87b43401212305f046\",\n            \"updated\": false,\n            \"type\": \"answer\",\n            \"user_id\": \"584f9cfab434012123015d9f\",\n            \"subject\": \"What is your best advice for first time entrepreneurs?\",\n            \"body\": \"Plan on no income for the first half year to a full year.   Be flexible:  Your original business model may not work, if it doesn't, learn from that and adapt it. \",\n            \"vote_score\": 9,\n            \"user_vote_score\": 0,\n            \"user_editable\": true,\n            \"user_following\": false,\n            \"embedded_topics\": [],\n            \"user_profile_info\": {\n                \"first_name\": \"Michael\",\n                \"last_name\": \"Meinberg\",\n                \"user_id\": \"584f9cfab434012123015d9f\",\n                \"premium_flag\": true,\n                \"role\": \"founder\",\n                \"city\": {\n                    \"label\": \"San Francisco, California, US\",\n                    \"name\": \"San Francisco\",\n                    \"region\": \"California\",\n                    \"region_code\": \"CA\",\n                    \"country\": \"United States of America\",\n                    \"country_code\": \"US\",\n                    \"id\": \"56cc14c588b042411c0bd26e\"\n                },\n                \"areas\": [\n                    \"engineering\",\n                    \"design\"\n                ],\n                \"photo\": \"https://www.gravatar.com/avatar/d0c9f176d0441a1dff17fa3634819811.jpg?s=170&d=https://cofounderslab.com/img/profile_avatars/avatar0.jpg\",\n                \"legacy_photo_url\": \"https://www.gravatar.com/avatar/d0c9f176d0441a1dff17fa3634819811.jpg?s=170&d=https://cofounderslab.com/img/profile_avatars/avatar0.jpg\",\n                \"use_avatar\": false,\n                \"url\": \"http://10.50.50.50:8000/profile/engineering-michael-meinberg-san-francisco-g9m1tz\",\n                \"headline\": \"Teacher (iOS Development) at The Mobile Makers Academy (A Hack Reactor School)\",\n                \"connection_status\": \"not_existing_connection\"\n            },\n            \"url\": \"http://10.50.50.50:8000/discuss/what-is-your-best-advice-for-first-time-entrepreneurs\",\n            \"created_at\": \"08/28/2016 08:53:39\",\n            \"updated_at\": \"08/28/2016 08:53:39\",\n            \"body_plain\": \"Plan on no income for the first half year to a full year.   Be flexible:  Your original business model may not work, if it doesn't, learn from that and adapt it. \"\n        },\n        {\n            \"id\": \"5949675eb2121c1445903ae9\",\n            \"updated\": false,\n            \"type\": \"answer\",\n            \"user_id\": \"584f9dbfb43401212303f907\",\n            \"subject\": \"What is your best advice for first time entrepreneurs?\",\n            \"body\": \"<p>Don't tall in love with your idea, fall in love with your customer. This is the best way to either figure out how to solve their problem or realize that you cannot as quickly as possible.</p>\",\n            \"follow_count\": 0,\n            \"vote_score\": 9,\n            \"user_vote_score\": 0,\n            \"user_editable\": true,\n            \"user_following\": false,\n            \"is_anonymous\": false,\n            \"embedded_topics\": [],\n            \"user_profile_info\": {\n                \"first_name\": \"Bill\",\n                \"last_name\": \"Flynn\",\n                \"user_id\": \"584f9dbfb43401212303f907\",\n                \"premium_flag\": false,\n                \"influencer_flag\": false,\n                \"role\": \"founder\",\n                \"responsiveness\": 71.43,\n                \"city\": {\n                    \"label\": \"Boston, Massachusetts, US\",\n                    \"name\": \"Boston\",\n                    \"region\": \"Massachusetts\",\n                    \"region_code\": \"MA\",\n                    \"country\": \"United States\",\n                    \"country_code\": \"US\",\n                    \"id\": \"56cc14c588b042411c0bdb59\"\n                },\n                \"areas\": [\n                    \"sales\",\n                    \"growth\",\n                    \"operations\",\n                    \"business-development\",\n                    \"marketing\"\n                ],\n                \"photo\": \"https://www.gravatar.com/avatar/c7ae47ecd400995f62b82f8a2add8d2b.jpg?s=170&d=https://cofounderslab.com/img/profile_avatars/avatar0.jpg\",\n                \"legacy_photo_url\": \"https://www.gravatar.com/avatar/c7ae47ecd400995f62b82f8a2add8d2b.jpg?s=170&d=https://cofounderslab.com/img/profile_avatars/avatar0.jpg\",\n                \"use_avatar\": false,\n                \"url\": \"http://10.50.50.50:8000/profile/bill-flynn\",\n                \"headline\": \"Catalyst Growth Advisors - PREDICTABLE AND PROFITABLE BUSINESS GROWTH\",\n                \"connection_status\": \"not_existing_connection\"\n            },\n            \"url\": \"http://10.50.50.50:8000/discuss/what-is-your-best-advice-for-first-time-entrepreneurs\",\n            \"created_at\": \"06/20/2017 18:20:14\",\n            \"updated_at\": \"06/20/2017 18:20:14\",\n            \"body_plain\": \"Don't tall in love with your idea, fall in love with your customer. This is the best way to either figure out how to solve their problem or realize that you cannot as quickly as possible.\"\n        },\n        {\n            \"id\": \"584f9e87b43401212305f0a9\",\n            \"updated\": false,\n            \"type\": \"answer\",\n            \"user_id\": \"57994515b43401c03601ff48\",\n            \"subject\": \"What is your best advice for first time entrepreneurs?\",\n            \"body\": \"<ul><li><span style=\\\"font-size: 1rem;\\\">Try to convince people (preferably knowledgeable investors) to invest in your company. Not to raise money, but because they'll ask you tough questions. Their questions will bring up issues that you may have not thought of or assumptions that your had made subconsciously without giving them much thought.   </span></li><li><span style=\\\"font-size: 1rem;\\\">Don't do it alone</span></li><li><span style=\\\"font-size: 1rem;\\\">Create a business model canvas and month to month cash flow projection spreadsheet for the first two years, and then test every little assumption that comes out of them.</span></li></ul><div><br></div>\",\n            \"vote_score\": 8,\n            \"user_vote_score\": 0,\n            \"user_editable\": true,\n            \"user_following\": false,\n            \"embedded_topics\": [],\n            \"user_profile_info\": {\n                \"first_name\": \"Siarez\",\n                \"last_name\": \"\",\n                \"user_id\": \"57994515b43401c03601ff48\",\n                \"premium_flag\": true,\n                \"influencer_flag\": false,\n                \"role\": \"founder\",\n                \"responsiveness\": 66.67,\n                \"city\": {\n                    \"label\": \"Vancouver, Canada\",\n                    \"name\": \"Vancouver\",\n                    \"region\": \"British Columbia\",\n                    \"region_code\": \"BC\",\n                    \"country\": \"Canada\",\n                    \"country_code\": \"CA\",\n                    \"id\": \"56cc14c488b042411c0b5474\"\n                },\n                \"areas\": [\n                    \"marketing\",\n                    \"product-management\",\n                    \"engineering\"\n                ],\n                \"photo\": \"https://s3.amazonaws.com/cofounderslab-prod-media/user-62443_1457141058.png\",\n                \"legacy_photo_url\": \"https://s3.amazonaws.com/cofounderslab-prod-media/user-62443_1457141058.png\",\n                \"use_avatar\": false,\n                \"url\": \"http://10.50.50.50:8000/profile/siarez\",\n                \"connection_status\": \"not_existing_connection\"\n            },\n            \"url\": \"http://10.50.50.50:8000/discuss/what-is-your-best-advice-for-first-time-entrepreneurs\",\n            \"created_at\": \"08/29/2016 10:24:11\",\n            \"updated_at\": \"08/29/2016 10:24:11\",\n            \"body_plain\": \"Try to convince people (preferably knowledgeable investors) to invest in your company. Not to raise money, but because they'll ask you tough questions. Their questions will bring up issues that you may have not thought of or assumptions that your had made subconsciously without giving them much thought.   Don't do it aloneCreate a business model canvas and month to month cash flow projection spreadsheet for the first two years, and then test every little assumption that comes out of them.\"\n        },\n        {\n            \"id\": \"593d52506e121c9e7c6f7a45\",\n            \"updated\": false,\n            \"type\": \"answer\",\n            \"user_id\": \"593d47cc6e121c85796f7a45\",\n            \"subject\": \"What is your best advice for first time entrepreneurs?\",\n            \"body\": \"<p>be competitive against barriers of entry, never loose focus of why you started in the first place and gather enough resources to make you the largest shareholder of the enterprise is you are looking at partnership in the near future</p>\",\n            \"follow_count\": 0,\n            \"vote_score\": 8,\n            \"user_vote_score\": 0,\n            \"user_editable\": true,\n            \"user_following\": false,\n            \"is_anonymous\": false,\n            \"embedded_topics\": [],\n            \"user_profile_info\": {\n                \"first_name\": \"Kobby Wesley\",\n                \"last_name\": \"Okwandaho-Mensah\",\n                \"user_id\": \"593d47cc6e121c85796f7a45\",\n                \"role\": \"founder\",\n                \"city\": {\n                    \"label\": \"Cape Coast, Ghana\",\n                    \"name\": \"Cape Coast\",\n                    \"region\": \"\",\n                    \"region_code\": \"\",\n                    \"country\": \"Ghana\",\n                    \"country_code\": \"GH\",\n                    \"id\": \"56cc14c488b042411c0b5cca\"\n                },\n                \"areas\": [\n                    \"business-development\",\n                    \"public-relations\",\n                    \"strategy\"\n                ],\n                \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                \"use_avatar\": false,\n                \"url\": \"http://10.50.50.50:8000/profile/kobby-wesley-okwandaho-mensah\",\n                \"headline\": \"Vice President of Unity Hall-KNUST,Agricultural Economics,Youtuber,Business idea generation\",\n                \"connection_status\": \"not_existing_connection\"\n            },\n            \"url\": \"http://10.50.50.50:8000/discuss/what-is-your-best-advice-for-first-time-entrepreneurs\",\n            \"created_at\": \"06/11/2017 14:23:12\",\n            \"updated_at\": \"06/11/2017 14:23:12\",\n            \"body_plain\": \"be competitive against barriers of entry, never loose focus of why you started in the first place and gather enough resources to make you the largest shareholder of the enterprise is you are looking at partnership in the near future\"\n        },\n        {\n            \"id\": \"597634e9e0ab4637083e2659\",\n            \"updated\": false,\n            \"type\": \"answer\",\n            \"user_id\": \"592f32154e121ce221503b2d\",\n            \"subject\": \"What is your best advice for first time entrepreneurs?\",\n            \"body\": \"<p>Go to the Casino and put $200 on one hand of Black Jack. If you loose, and your pissed off for wasting $200.... entrepreneurship isn't for you!</p>\\n<p><br></p>\",\n            \"follow_count\": 0,\n            \"vote_score\": 8,\n            \"user_vote_score\": 0,\n            \"user_editable\": true,\n            \"user_following\": false,\n            \"is_anonymous\": false,\n            \"embedded_topics\": [],\n            \"user_profile_info\": {\n                \"first_name\": \"Gabriel\",\n                \"last_name\": \"Gervelis\",\n                \"user_id\": \"592f32154e121ce221503b2d\",\n                \"premium_flag\": true,\n                \"influencer_flag\": false,\n                \"role\": \"founder\",\n                \"responsiveness\": 88.89,\n                \"city\": {\n                    \"label\": \"Seattle, Washington, US\",\n                    \"name\": \"Seattle\",\n                    \"region\": \"Washington\",\n                    \"region_code\": \"WA\",\n                    \"country\": \"United States\",\n                    \"country_code\": \"US\",\n                    \"id\": \"56cc14c588b042411c0bc385\"\n                },\n                \"areas\": [\n                    \"business-development\",\n                    \"marketing\",\n                    \"strategy\"\n                ],\n                \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                \"use_avatar\": false,\n                \"url\": \"http://10.50.50.50:8000/profile/gabriel-gervelis-1\",\n                \"headline\": \"seeking eCommerce CTO for high revenue potential opportunity \",\n                \"connection_status\": \"not_existing_connection\"\n            },\n            \"url\": \"http://10.50.50.50:8000/discuss/what-is-your-best-advice-for-first-time-entrepreneurs\",\n            \"created_at\": \"07/24/2017 17:56:57\",\n            \"updated_at\": \"07/24/2017 17:56:57\",\n            \"body_plain\": \"Go to the Casino and put $200 on one hand of Black Jack. If you loose, and your pissed off for wasting $200.... entrepreneurship isn't for you!\\n\"\n        },\n        {\n            \"id\": \"5978813b6e121c4c56f104bc\",\n            \"updated\": false,\n            \"type\": \"answer\",\n            \"user_id\": \"593f8f0b6e121cdf35b29977\",\n            \"subject\": \"What is your best advice for first time entrepreneurs?\",\n            \"body\": \"<p>- go networking and connect with the right people</p>\\n<p>- be ready to walk the extra mile</p>\\n<p>- be passioned in what you are doing</p>\\n<p>- listen to feedback, evaluate it, improve yourself</p>\",\n            \"follow_count\": 0,\n            \"vote_score\": 8,\n            \"user_vote_score\": 0,\n            \"user_editable\": true,\n            \"user_following\": false,\n            \"is_anonymous\": false,\n            \"embedded_topics\": [],\n            \"user_profile_info\": {\n                \"first_name\": \"Leonard\",\n                \"last_name\": \"Pieper\",\n                \"user_id\": \"593f8f0b6e121cdf35b29977\",\n                \"influencer_flag\": false,\n                \"role\": \"founder\",\n                \"responsiveness\": 71.43,\n                \"city\": {\n                    \"label\": \"Münster, Germany\",\n                    \"name\": \"Münster\",\n                    \"region\": \"Nordrhein-Westfalen\",\n                    \"region_code\": \"NRW\",\n                    \"country\": \"Germany\",\n                    \"country_code\": \"DE\",\n                    \"id\": \"56cc14c488b042411c0b586c\"\n                },\n                \"areas\": [\n                    \"sales\",\n                    \"operations\"\n                ],\n                \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                \"use_avatar\": false,\n                \"url\": \"http://10.50.50.50:8000/profile/leonard-pieper-1\",\n                \"headline\": \"Startup Enthusiast & Cofounder\",\n                \"connection_status\": \"not_existing_connection\"\n            },\n            \"url\": \"http://10.50.50.50:8000/discuss/what-is-your-best-advice-for-first-time-entrepreneurs\",\n            \"created_at\": \"07/26/2017 11:47:07\",\n            \"updated_at\": \"07/26/2017 11:47:07\",\n            \"body_plain\": \"- go networking and connect with the right people\\n- be ready to walk the extra mile\\n- be passioned in what you are doing\\n- listen to feedback, evaluate it, improve yourself\"\n        },\n        {\n            \"id\": \"5985ed8dcf161cfe590e1bf4\",\n            \"updated\": false,\n            \"type\": \"answer\",\n            \"user_id\": \"58c42a083eab46c91b8b4568\",\n            \"subject\": \"What is your best advice for first time entrepreneurs?\",\n            \"body\": \"<p>Find a genuine and committed industry mentor whom you respect to guide you. The journey will be brutal but enriching.</p>\",\n            \"follow_count\": 0,\n            \"vote_score\": 8,\n            \"user_vote_score\": 0,\n            \"user_editable\": true,\n            \"user_following\": false,\n            \"is_anonymous\": false,\n            \"embedded_topics\": [],\n            \"user_profile_info\": {\n                \"first_name\": \"Wilson\",\n                \"last_name\": \"Foo\",\n                \"user_id\": \"58c42a083eab46c91b8b4568\",\n                \"influencer_flag\": false,\n                \"role\": \"networker\",\n                \"responsiveness\": 100,\n                \"city\": {\n                    \"label\": \"Singapore, Singapore\",\n                    \"name\": \"Singapore\",\n                    \"region\": \"\",\n                    \"region_code\": \"\",\n                    \"country\": \"Singapore\",\n                    \"country_code\": \"SG\",\n                    \"id\": \"56cc14c488b042411c0b70e5\"\n                },\n                \"areas\": [\n                    \"fundraising\",\n                    \"business-development\",\n                    \"management\"\n                ],\n                \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                \"avatar\": 4,\n                \"use_avatar\": false,\n                \"url\": \"http://10.50.50.50:8000/profile/wilson-foo\",\n                \"headline\": \"1 Project Per Year.\",\n                \"connection_status\": \"not_existing_connection\"\n            },\n            \"url\": \"http://10.50.50.50:8000/discuss/what-is-your-best-advice-for-first-time-entrepreneurs\",\n            \"created_at\": \"08/05/2017 16:08:45\",\n            \"updated_at\": \"08/05/2017 16:08:45\",\n            \"body_plain\": \"Find a genuine and committed industry mentor whom you respect to guide you. The journey will be brutal but enriching.\"\n        }\n    ],\n    \"meta\": {\n        \"page\": 2,\n        \"page_size\": \"10\",\n        \"result_count\": 198,\n        \"page_last\": 19,\n        \"order_by\": []\n    }\n}"}],"_postman_id":"15be865b-35a2-79b1-79e8-345fd92cc201"},{"name":"Top stories","id":"2d3ac0c7-fdf3-197a-7c73-c5318e4fa28f","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/api/v2/discuss/items","description":"<p>Gets a list of items based of the parameters selected through query parameters.</p>\n<h2 id=\"query-parameters\">Query Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>type</td>\n<td>string</td>\n<td>false</td>\n<td>Possible values: question, answer</td>\n</tr>\n<tr>\n<td>mine</td>\n<td>boolean</td>\n<td>false</td>\n<td>If true will only return questions authored by the logged in user.</td>\n</tr>\n<tr>\n<td>follow</td>\n<td>boolean</td>\n<td>false</td>\n<td>If true will only return questions followed by the logged in user.</td>\n</tr>\n<tr>\n<td>page</td>\n<td>integer</td>\n<td>false</td>\n<td>Number of the page</td>\n</tr>\n<tr>\n<td>page_size</td>\n<td>integer</td>\n<td>false</td>\n<td>Size of the page</td>\n</tr>\n<tr>\n<td>sort</td>\n<td>string</td>\n<td>false</td>\n<td>Possible values: -createdAt</td>\n</tr>\n<tr>\n<td>max_answers</td>\n<td>integer</td>\n<td>false</td>\n<td>Max number of answers that the item can have</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\">Response</h2>\n<p>Array with:</p>\n<ul>\n<li>'list': Array of Item Objects (with paginations).</li>\n<li>'ads' : Array of Promo Objects.</li>\n</ul>\n","urlObject":{"path":["api","v2","discuss","items"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"04ecc54b-0c4d-051b-2cd6-73090ea69ff6","name":"Top Stories Example","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{host}}/api/v2/discuss/top_stories?page=0&page_size=10","host":["{{host}}"],"path":["api","v2","discuss","top_stories"],"query":[{"key":"page","value":"0"},{"key":"page_size","value":"10"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":"0","body":"{\n    \"data\": [\n        {\n            \"id\": \"5a2cbfa8cc161ca54be1e1d4\",\n            \"updated\": true,\n            \"type\": \"answer\",\n            \"user_id\": \"57994539b43401c036026812\",\n            \"subject\": \"I'm mentally stuck to start a business, what can I do?\",\n            \"body\": \"<p>These are all great answers. Let me add my two cents partially derived from the books The One Thing and 7 Habits of Highly Effective People:</p>\\n<p><br></p>\\n<p>1) Define your life goals</p>\\n<p>2) Define your interests/passions</p>\\n<p>3) List your ideas and cross-reference against your interests and passions.</p>\\n<p>4) Filter out ones that <em>absolutely</em> don't conform to your life goals.</p>\\n<p>5) Plan 80%</p>\\n<p>6) Execute 20% (pareto principle)</p>\\n<p><br></p>\\n<p>For more free information and resources, please visit <a href=\\\"http://myinvenst.com\\\" rel=\\\"nofollow\\\" target=\\\"_blank\\\">Invenst</a></p>\\n<p><br></p>\\n<p><ins>Our Mission</ins></p>\\n<p>We provide entrepreneurs and artists the tools they need to turn their idea or talent into a business, including an infrastructure for freelancers to find work and join teams all over the world. We&rsquo;re a business that focuses on delivering the most value to our customers so that they can create amazing things.<br><br></p>\",\n            \"follow_count\": 0,\n            \"vote_score\": 0,\n            \"user_editable\": true,\n            \"user_following\": false,\n            \"is_anonymous\": false,\n            \"embedded_topics\": [],\n            \"user_profile_info\": {\n                \"first_name\": \"Josh\",\n                \"last_name\": \"Aguirre\",\n                \"user_id\": \"57994539b43401c036026812\",\n                \"premium_flag\": false,\n                \"role\": \"founder\",\n                \"responsiveness\": 88.24,\n                \"city\": {\n                    \"label\": \"Charlotte, North Carolina, US\",\n                    \"name\": \"Charlotte\",\n                    \"region\": \"North Carolina\",\n                    \"region_code\": \"NC\",\n                    \"country\": \"United States\",\n                    \"country_code\": \"US\",\n                    \"id\": \"56cc14c588b042411c0ba16e\"\n                },\n                \"areas\": [\n                    \"design\",\n                    \"programming-development\",\n                    \"business-development\"\n                ],\n                \"photo\": \"https://s3.amazonaws.com/cofounderslab-prod-media/user-72657_1441486934.jpeg\",\n                \"legacy_photo_url\": \"https://s3.amazonaws.com/cofounderslab-prod-media/user-72657_1441486934.jpeg\",\n                \"use_avatar\": false,\n                \"url\": \"http://10.50.50.50:8000/profile/josh-aguirre\",\n                \"connection_status\": \"not_existing_connection\"\n            },\n            \"url\": \"http://10.50.50.50:8000/discuss/im-mentally-stuck-to-start-a-business-what-can-i-do\",\n            \"created_at\": \"12/10/2017 05:01:27\",\n            \"updated_at\": \"12/10/2017 05:01:57\",\n            \"body_plain\": \"These are all great answers. Let me add my two cents partially derived from the books The One Thing and 7 Habits of Highly Effective People:\\n\\n1) Define your life goals\\n2) Define your interests/passions\\n3) List your ideas and cross-reference against your interests and passions.\\n4) Filter out ones that absolutely don't conform to your life goals.\\n5) Plan 80%\\n6) Execute 20% (pareto principle)\\n\\nFor more free information and resources, please visit Invenst\\n\\nOur Mission\\nWe provide entrepreneurs and artists the tools they need to turn their idea or talent into a business, including an infrastructure for freelancers to find work and join teams all over the world. We&rsquo;re a business that focuses on delivering the most value to our customers so that they can create amazing things.\"\n        },\n        {\n            \"id\": \"5a2c7e69cc161cd83724dc89\",\n            \"updated\": false,\n            \"type\": \"question\",\n            \"user_id\": \"59ebe043d2161c941cca360a\",\n            \"subject\": \"How to attract a technical cofounder to a B2C startup (female audience)? \",\n            \"body\": \"<p>I'm in a startup accelerator, one month away from graduation. My business is targeted at solo female travelers, and I'd love for a technical cofounder to join me. What's the best way to find/attract one? Are technical cofounders more likely to want to join once the MVP has already been built? Are they put off by lack of funding?</p>\",\n            \"follow_count\": 15,\n            \"vote_score\": 15,\n            \"user_editable\": true,\n            \"user_following\": false,\n            \"child_updated\": \"2017-12-10T07:44:54+0000\",\n            \"is_anonymous\": false,\n            \"embedded_topics\": [\n                {\n                    \"topic_id\": \"584f9c8eb434012123004787\",\n                    \"created_at\": \"2014-10-03T00:45:54+0000\",\n                    \"name\": \"Entrepreneurship\",\n                    \"description\": \"Entrepreneurship is the process of setting up a business, including deciding the business model, acquiring and organizing the necessary factors of production such as funding and human resources. The entrepreneur takes the overall responsibility over the new business.\",\n                    \"item_count\": 0,\n                    \"question_count\": 600,\n                    \"answer_count\": 0,\n                    \"view_count\": 0,\n                    \"follow_count\": 76033,\n                    \"share_count\": 0,\n                    \"url\": \"entrepreneurship\"\n                }\n            ],\n            \"user_profile_info\": {\n                \"first_name\": \"Fernanda\",\n                \"last_name\": \"Silveira\",\n                \"user_id\": \"59ebe043d2161c941cca360a\",\n                \"premium_flag\": false,\n                \"role\": \"founder\",\n                \"city\": {\n                    \"label\": \"Vancouver, Canada\",\n                    \"name\": \"Vancouver\",\n                    \"region\": \"British Columbia\",\n                    \"region_code\": \"BC\",\n                    \"country\": \"Canada\",\n                    \"country_code\": \"CA\",\n                    \"id\": \"56cc14c488b042411c0b5474\"\n                },\n                \"areas\": [],\n                \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                \"use_avatar\": false,\n                \"url\": \"http://10.50.50.50:8000/profile/fernanda-silveira\",\n                \"headline\": \"Founder & CEO @Wanderherco, avid solo traveler. Looking for an amazing technical co-founder!\",\n                \"connection_status\": \"not_existing_connection\"\n            },\n            \"url\": \"http://10.50.50.50:8000/discuss/how-to-attract-a-technical-cofounder-to-a-b2c-startup-female-audience\",\n            \"created_at\": \"12/10/2017 00:23:05\",\n            \"updated_at\": \"12/10/2017 01:30:01\",\n            \"answer_count\": 5,\n            \"body_plain\": \"I'm in a startup accelerator, one month away from graduation. My business is targeted at solo female travelers, and I'd love for a technical cofounder to join me. What's the best way to find/attract one? Are technical cofounders more likely to want to join once the MVP has already been built? Are they put off by lack of funding?\"\n        },\n        {\n            \"id\": \"5a2c221ecc161cc61b24dc89\",\n            \"updated\": false,\n            \"type\": \"answer\",\n            \"user_id\": \"5a2c0d4ad2161c5d07d70e0c\",\n            \"subject\": \"Do you see any need for basic finance/accounting training targeted at entrepreneurs?\",\n            \"body\": \"<p>Definitely</p>\",\n            \"follow_count\": 0,\n            \"vote_score\": 0,\n            \"user_editable\": true,\n            \"user_following\": false,\n            \"is_anonymous\": false,\n            \"embedded_topics\": [],\n            \"user_profile_info\": {\n                \"first_name\": \"W\",\n                \"last_name\": \"Worster\",\n                \"user_id\": \"5a2c0d4ad2161c5d07d70e0c\",\n                \"premium_flag\": false,\n                \"role\": \"networker\",\n                \"city\": {\n                    \"label\": \"Vancouver, Canada\",\n                    \"name\": \"Vancouver\",\n                    \"region\": \"British Columbia\",\n                    \"region_code\": \"BC\",\n                    \"country\": \"Canada\",\n                    \"country_code\": \"CA\",\n                    \"id\": \"56cc14c488b042411c0b5474\"\n                },\n                \"areas\": [],\n                \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                \"use_avatar\": false,\n                \"url\": \"http://10.50.50.50:8000/profile/w-worster\",\n                \"headline\": \"Entrepeneur\",\n                \"connection_status\": \"not_existing_connection\"\n            },\n            \"url\": \"http://10.50.50.50:8000/discuss/do-you-see-any-need-for-basic-finance-accounting-training-targeted-at-entrepreneurs\",\n            \"created_at\": \"12/09/2017 17:49:18\",\n            \"updated_at\": \"12/09/2017 17:49:18\",\n            \"body_plain\": \"Definitely\"\n        },\n        {\n            \"id\": \"5a2bd922d2161c5578d70e08\",\n            \"updated\": false,\n            \"type\": \"answer\",\n            \"user_id\": \"5a23a417cc161c620950baaf\",\n            \"subject\": \"A billionaire is interested in my early stage company. Should I offer a Term Sheet or a Board Seat?\",\n            \"body\": \"<p>Congratulations</p>\",\n            \"follow_count\": 0,\n            \"vote_score\": 0,\n            \"user_editable\": true,\n            \"user_following\": false,\n            \"is_anonymous\": false,\n            \"embedded_topics\": [],\n            \"user_profile_info\": {\n                \"first_name\": \"Sterlin\",\n                \"last_name\": \"Refinery LLC\",\n                \"user_id\": \"5a23a417cc161c620950baaf\",\n                \"premium_flag\": false,\n                \"role\": \"networker\",\n                \"city\": {\n                    \"label\": \"Port-au-Prince, Haiti\",\n                    \"name\": \"Port-au-Prince\",\n                    \"region\": \"\",\n                    \"region_code\": \"\",\n                    \"country\": \"Haiti\",\n                    \"country_code\": \"HT\",\n                    \"id\": \"56cc14c488b042411c0b5f55\"\n                },\n                \"areas\": [],\n                \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                \"legacy_photo_url\": \"https://media.licdn.com/mpr/mprx/0_1TQjoQjCkIwUIhSCNbURR3DbFkR4s8i3iKsxOZ2C5qUZIuhGQeUMu9uFq4R4IuhIK1UUm2DCFAcZdlgmkoctjgSkKAc4dlA3ioc0eQlXLIQAd68eimFOmT6sRH\",\n                \"use_avatar\": false,\n                \"url\": \"http://10.50.50.50:8000/profile/sterlin-refinery-llc\",\n                \"headline\": \"CEO, Founder\",\n                \"connection_status\": \"not_existing_connection\"\n            },\n            \"url\": \"http://10.50.50.50:8000/discuss/a-billionaire-is-interested-in-my-early-stage-company-should-i-offer-a-term-sheet-or-a-board-seat\",\n            \"created_at\": \"12/09/2017 12:37:54\",\n            \"updated_at\": \"12/09/2017 12:37:54\",\n            \"body_plain\": \"Congratulations\"\n        },\n        {\n            \"id\": \"5a2b97293eab46b659b9cb85\",\n            \"updated\": false,\n            \"type\": \"answer\",\n            \"user_id\": \"5a2b85cf3eab46ab54b9cb85\",\n            \"subject\": \"When you started your business, what was the first sales strategy you used to sell intangible services?\",\n            \"body\": \"<p>Do thorough research about similar security companies in the US, adapt their strategies adjust it with yours, compare to current and future trends.After that conclude on your </p>\",\n            \"follow_count\": 0,\n            \"vote_score\": 1,\n            \"user_editable\": true,\n            \"user_following\": false,\n            \"is_anonymous\": false,\n            \"embedded_topics\": [],\n            \"user_profile_info\": {\n                \"first_name\": \"Bizgro\",\n                \"last_name\": \"Net\",\n                \"user_id\": \"5a2b85cf3eab46ab54b9cb85\",\n                \"premium_flag\": false,\n                \"role\": \"adviser\",\n                \"city\": {\n                    \"label\": \"Lapaz, Ghana\",\n                    \"name\": \"Lapaz\",\n                    \"region\": \"Greater Accra Region\",\n                    \"region_code\": \"Greater Accra Region\",\n                    \"country\": \"Ghana\",\n                    \"country_code\": \"GH\",\n                    \"id\": \"5a2b8df0cc161cd96ffef074\"\n                },\n                \"areas\": [],\n                \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                \"legacy_photo_url\": \"https://lh6.googleusercontent.com/-_wjuSvCjwGQ/AAAAAAAAAAI/AAAAAAAAAB0/YLb10YaNhVg/photo.jpg?sz=200\",\n                \"use_avatar\": false,\n                \"url\": \"http://10.50.50.50:8000/profile/bizgro-net\",\n                \"headline\": \"Founder at bizgronet\",\n                \"connection_status\": \"not_existing_connection\"\n            },\n            \"url\": \"http://10.50.50.50:8000/discuss/when-you-started-your-business-what-was-the-first-sales-strategy-you-used-to-sell-intangible-services\",\n            \"created_at\": \"12/09/2017 07:56:25\",\n            \"updated_at\": \"12/09/2017 07:56:25\",\n            \"body_plain\": \"Do thorough research about similar security companies in the US, adapt their strategies adjust it with yours, compare to current and future trends.After that conclude on your \"\n        },\n        {\n            \"id\": \"5a2b322acc161ca456fef071\",\n            \"updated\": false,\n            \"type\": \"answer\",\n            \"user_id\": \"59b880ab68deeade17ee102b\",\n            \"subject\": \"A F500 negotiating a contract with me seems to be acting in bad faith. What should I do?\",\n            \"body\": \"<p>This is a situation where emotion can easily overrule objective business sense. We&rsquo;re all human, no one wants to feel taken advantage of. Especially around something of so much value to you. My input:</p>\\n<p><br></p>\\n<p>First. It&rsquo;s not possible to give real advice on what you should do here; you give an excellent headline summation, but the devil, I&rsquo;m sure, is in the details. Weigh any advice you receive (here or elsewhere) carefully. Watch that you are not weighting what you want to hear over what you don&rsquo;t. Given the summary of the situation I (you, others) can circle discussion around both ends of the matter; each supported by sound business logic. Either way it goes, hindsight will have had excellent supporting logic.</p>\\n<p><br></p>\\n<p>Consider this approach to your thoughts: You are the CEO reporting to a board. You&rsquo;ll have to present and convince them of your plan of action &ndash; whatever it is. Proceeding as if a plan requires review by a third party helps me think with sound business logic, maybe it will help you.</p>\\n<p><br></p>\\n<p>As a matter of process, please write your decision factors down on paper. I know that you know them in your head (where they revolve at 2am every morning &ndash; as least if you&rsquo;re me). Nothing formal, but something that reflects the options, probabilities, economic value and timing on the matter. 1) It&rsquo;ll keep you from mentally circling the horses (somewhat). 2) It will help flush out details of your options. 3) If you do &lsquo;legal-up&rsquo;, having this on paper will save on billable hours.</p>\\n<p><br></p>\\n<p>Their urgency to close this deal would frame my decision:</p>\\n<p></p>\\n<p>F500&rsquo;s economics. I&rsquo;ll skip the volume on the economic pushes and pulls here. I would think in terms of &lsquo;turns&rsquo;: Given the ($ money) size of this proposed transaction and the overall financial strength of F500, how many transactions of this size need to happen (per year) to appreciably affect EPS. The answer, either &ldquo;few&rdquo; or &ldquo;many&rdquo;, speaks to their motivations, effort, urgency, level in the organization, due diligence, gravy vs mission critical, more. My sense is this has little to do with the size of the check (they&rsquo;re big boys with Amex Black Cards). &ldquo;Few&rdquo; means EPS-up, which means important and urgent and therefore quick to a conclusion. &ldquo;Many&rdquo;, would mean a lack of urgency &ndash; unless it&rsquo;s part of a strategic program.</p>\\n<p><br></p>\\n<p>Marketing. What&rsquo;s the shelf life of what you have? You write that you&rsquo;re into this for a year so I&rsquo;m leery. Launching an LOI and sitting on it might keep you on the sidelines, but buying you (or your IP) is a more effective way to keep you out of the market. Buying a technology (or company) and sitting on it is a known part of the play book. If I were &lsquo;F500 mid-management deal person&rsquo;, I would not tell my superior that my strategy for keeping you out of your competitions hands was &ldquo;Sign LOI, do nothing&rdquo;</p>\\n<p><br></p>\\n<p>That LOI. Whether the LOI is still in play or &ldquo;seemed like a good idea at the time&rdquo; doesn&rsquo;t seem to matter to me. It&rsquo;s an LOI.</p>\\n<p><br></p>\\n<p>So here is what I would do:</p>\\n<p><br></p>\\n<p>I would absolutely write things out to the level I discussed above. (Business goes to the prepared.) I would focus on how I&rsquo;d pursue other opportunities - you might need that soon.</p>\\n<p><br></p>\\n<p>I would first assume the lack of progress was not strategic on the part of F500. I would arrange a visit with higher level personnel and ask for official confirmation of their position and anticipated timing whatever it may be. Not being granted such a meeting would be a deal killer &ndash; I would make that known politely yet firmly. Same goes for not getting confirmation of their position. Maybe the root of the problem is in the job performance of your F500 contact point and not the company.</p>\\n<p><br></p>\\n<p>I would not break the &lsquo;agreement&rsquo; not to pursue others (whether real or implied) right now because resolution of the previous step should not take long.</p>\\n<p><br></p>\\n<p>The &lsquo;lawyer-up&rsquo; option seems like a non-starter to me. I can see this thing must be very frustrating, but it&rsquo;s not a legal case. (But I am not a lawyer.)</p>\\n<p></p>\\n<p>Bottom line, a year is a long time. Anything is possible, but a year is a long time.</p>\\n<p><br></p>\\n<p>Last, we all make mistakes. For me the mistakes of not listening to myself are the ones that bother me the most. Prepare objectively so that you can listen to your gut.</p>\\n<p><br></p>\\n<p>Hope this helps. It's got to be frustrating. Let me know if I can help with questions. steve@strategythink.com www.strategythink.com</p>\\n<p><br></p>\\n<p>Steve</p>\",\n            \"follow_count\": 0,\n            \"vote_score\": 0,\n            \"user_editable\": true,\n            \"user_following\": false,\n            \"is_anonymous\": false,\n            \"embedded_topics\": [],\n            \"user_profile_info\": {\n                \"first_name\": \"Steve\",\n                \"last_name\": \"Lawrence\",\n                \"user_id\": \"59b880ab68deeade17ee102b\",\n                \"premium_flag\": false,\n                \"role\": \"networker\",\n                \"responsiveness\": 100,\n                \"city\": {\n                    \"label\": \"Palm Desert, California, US\",\n                    \"name\": \"Palm Desert\",\n                    \"region\": \"California\",\n                    \"region_code\": \"CA\",\n                    \"country\": \"United States\",\n                    \"country_code\": \"US\",\n                    \"id\": \"56cc14c588b042411c0bd0d5\"\n                },\n                \"areas\": [],\n                \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                \"legacy_photo_url\": \"https://media.licdn.com/mpr/mprx/0_1Yh7plKcoUUgKDLHPpjdDKpNoJcZKT5In2p22fpAoJFOKSHHFRjojg3tsIBgK3kmC7j2jS8tWmwUtK6IkzlhIEhAOmwRtKJIFzlSYlplwNV-tFeCFlTu441gEi\",\n                \"use_avatar\": false,\n                \"url\": \"http://10.50.50.50:8000/profile/steve-lawrence\",\n                \"headline\": \"Launch and operation of companies to $15 mil. for investors/owners, US and Asia, BSEng, MBA Wharton\",\n                \"connection_status\": \"not_existing_connection\"\n            },\n            \"url\": \"http://10.50.50.50:8000/discuss/a-f500-negotiating-a-contract-with-me-seems-to-be-acting-in-bad-faith-what-should-i-do\",\n            \"created_at\": \"12/09/2017 00:45:30\",\n            \"updated_at\": \"12/09/2017 00:45:30\",\n            \"body_plain\": \"This is a situation where emotion can easily overrule objective business sense. We&rsquo;re all human, no one wants to feel taken advantage of. Especially around something of so much value to you. My input:\\n\\nFirst. It&rsquo;s not possible to give real advice on what you should do here; you give an excellent headline summation, but the devil, I&rsquo;m sure, is in the details. Weigh any advice you receive (here or elsewhere) carefully. Watch that you are not weighting what you want to hear over what you don&rsquo;t. Given the summary of the situation I (you, others) can circle discussion around both ends of the matter; each supported by sound business logic. Either way it goes, hindsight will have had excellent supporting logic.\\n\\nConsider this approach to your thoughts: You are the CEO reporting to a board. You&rsquo;ll have to present and convince them of your plan of action &ndash; whatever it is. Proceeding as if a plan requires review by a third party helps me think with sound business logic, maybe it will help you.\\n\\nAs a matter of process, please write your decision factors down on paper. I know that you know them in your head (where they revolve at 2am every morning &ndash; as least if you&rsquo;re me). Nothing formal, but something that reflects the options, probabilities, economic value and timing on the matter. 1) It&rsquo;ll keep you from mentally circling the horses (somewhat). 2) It will help flush out details of your options. 3) If you do &lsquo;legal-up&rsquo;, having this on paper will save on billable hours.\\n\\nTheir urgency to close this deal would frame my decision:\\n\\nF500&rsquo;s economics. I&rsquo;ll skip the volume on the economic pushes and pulls here. I would think in terms of &lsquo;turns&rsquo;: Given the ($ money) size of this proposed transaction and the overall financial strength of F500, how many transactions of this size need to happen (per year) to appreciably affect EPS. The answer, either &ldquo;few&rdquo; or &ldquo;many&rdquo;, speaks to their motivations, effort, urgency, level in the organization, due diligence, gravy vs mission critical, more. My sense is this has little to do with the size of the check (they&rsquo;re big boys with Amex Black Cards). &ldquo;Few&rdquo; means EPS-up, which means important and urgent and therefore quick to a conclusion. &ldquo;Many&rdquo;, would mean a lack of urgency &ndash; unless it&rsquo;s part of a strategic program.\\n\\nMarketing. What&rsquo;s the shelf life of what you have? You write that you&rsquo;re into this for a year so I&rsquo;m leery. Launching an LOI and sitting on it might keep you on the sidelines, but buying you (or your IP) is a more effective way to keep you out of the market. Buying a technology (or company) and sitting on it is a known part of the play book. If I were &lsquo;F500 mid-management deal person&rsquo;, I would not tell my superior that my strategy for keeping you out of your competitions hands was &ldquo;Sign LOI, do nothing&rdquo;\\n\\nThat LOI. Whether the LOI is still in play or &ldquo;seemed like a good idea at the time&rdquo; doesn&rsquo;t seem to matter to me. It&rsquo;s an LOI.\\n\\nSo here is what I would do:\\n\\nI would absolutely write things out to the level I discussed above. (Business goes to the prepared.) I would focus on how I&rsquo;d pursue other opportunities - you might need that soon.\\n\\nI would first assume the lack of progress was not strategic on the part of F500. I would arrange a visit with higher level personnel and ask for official confirmation of their position and anticipated timing whatever it may be. Not being granted such a meeting would be a deal killer &ndash; I would make that known politely yet firmly. Same goes for not getting confirmation of their position. Maybe the root of the problem is in the job performance of your F500 contact point and not the company.\\n\\nI would not break the &lsquo;agreement&rsquo; not to pursue others (whether real or implied) right now because resolution of the previous step should not take long.\\n\\nThe &lsquo;lawyer-up&rsquo; option seems like a non-starter to me. I can see this thing must be very frustrating, but it&rsquo;s not a legal case. (But I am not a lawyer.)\\n\\nBottom line, a year is a long time. Anything is possible, but a year is a long time.\\n\\nLast, we all make mistakes. For me the mistakes of not listening to myself are the ones that bother me the most. Prepare objectively so that you can listen to your gut.\\n\\nHope this helps. It's got to be frustrating. Let me know if I can help with questions. steve@strategythink.com www.strategythink.com\\n\\nSteve\"\n        },\n        {\n            \"id\": \"5a2b1a293eab462636848182\",\n            \"updated\": false,\n            \"type\": \"answer\",\n            \"user_id\": \"5799446fb43401c036004d5c\",\n            \"subject\": \"How to Get Meetings?\",\n            \"body\": \"<p>https://youtu.be/IQKxs4-PQdY</p>\",\n            \"follow_count\": 0,\n            \"vote_score\": 0,\n            \"user_editable\": true,\n            \"user_following\": false,\n            \"is_anonymous\": false,\n            \"embedded_topics\": [],\n            \"user_profile_info\": {\n                \"first_name\": \"Robert\",\n                \"last_name\": \"DiLoreto\",\n                \"user_id\": \"5799446fb43401c036004d5c\",\n                \"premium_flag\": true,\n                \"role\": \"founder\",\n                \"responsiveness\": 48.78,\n                \"city\": {\n                    \"label\": \"Cambridge, Massachusetts, US\",\n                    \"name\": \"Cambridge\",\n                    \"region\": \"Massachusetts\",\n                    \"region_code\": \"MA\",\n                    \"country\": \"United States\",\n                    \"country_code\": \"US\",\n                    \"id\": \"56cc14c588b042411c0bc277\"\n                },\n                \"areas\": [\n                    \"marketing\",\n                    \"business-development\",\n                    \"sales\"\n                ],\n                \"photo\": \"https://s3.amazonaws.com/cofounderslab-prod-media/user-user_2889.jpg\",\n                \"legacy_photo_url\": \"https://s3.amazonaws.com/cofounderslab-prod-media/user-user_2889.jpg\",\n                \"use_avatar\": false,\n                \"url\": \"http://10.50.50.50:8000/profile/robert-diloreto\",\n                \"headline\": \"Accelerating Innovation into C-Suites of large corporate enterprises...\\\"Special-Ops\\\" role\",\n                \"connection_status\": \"not_existing_connection\"\n            },\n            \"url\": \"http://10.50.50.50:8000/discuss/how-to-get-meetings\",\n            \"created_at\": \"12/08/2017 23:03:05\",\n            \"updated_at\": \"12/08/2017 23:03:05\",\n            \"body_plain\": \"https://youtu.be/IQKxs4-PQdY\"\n        },\n        {\n            \"id\": \"5a2ac8a93eab46b3183f4a6d\",\n            \"updated\": false,\n            \"type\": \"answer\",\n            \"user_id\": \"59b2ccfcce121cfe560672fb\",\n            \"subject\": \"Best email design template sources?\",\n            \"body\": \"<p>Hi,</p>\\n<p><br></p>\\n<p>We build lot of templates into Mailchimp. We had also use another templates specially when responsive to stimulation is a great deal.</p>\\n<p><br></p>\\n<p>If there is any requirement we design the websites PSD to HTML and development as well. We use TheHTMLCoder.com We have worked with them lot of thousands of projects and the code is clean and Commented.</p>\\n<p><br></p>\\n<p>Regards</p>\\n<p><br></p>\\n<p>Web Team</p>\",\n            \"follow_count\": 0,\n            \"vote_score\": 0,\n            \"user_editable\": true,\n            \"user_following\": false,\n            \"is_anonymous\": false,\n            \"embedded_topics\": [],\n            \"user_profile_info\": {\n                \"first_name\": \"TheHTML\",\n                \"last_name\": \"Coder.com\",\n                \"user_id\": \"59b2ccfcce121cfe560672fb\",\n                \"premium_flag\": false,\n                \"role\": \"networker\",\n                \"city\": {\n                    \"label\": \"U.S. Air Force Academy, Colorado, US\",\n                    \"name\": \"U.S. Air Force Academy\",\n                    \"region\": \"Colorado\",\n                    \"region_code\": \"CO\",\n                    \"country\": \"United States\",\n                    \"country_code\": \"US\",\n                    \"id\": \"599b6dfbcf161cf11e03c526\"\n                },\n                \"areas\": [],\n                \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                \"use_avatar\": false,\n                \"url\": \"http://10.50.50.50:8000/profile/thehtml-coder-com\",\n                \"headline\": \"Director\",\n                \"connection_status\": \"not_existing_connection\"\n            },\n            \"url\": \"http://10.50.50.50:8000/discuss/best-email-design-template-sources\",\n            \"created_at\": \"12/08/2017 17:15:21\",\n            \"updated_at\": \"12/08/2017 17:15:21\",\n            \"body_plain\": \"Hi,\\n\\nWe build lot of templates into Mailchimp. We had also use another templates specially when responsive to stimulation is a great deal.\\n\\nIf there is any requirement we design the websites PSD to HTML and development as well. We use TheHTMLCoder.com We have worked with them lot of thousands of projects and the code is clean and Commented.\\n\\nRegards\\n\\nWeb Team\"\n        },\n        {\n            \"id\": \"5a2ac952d2161ce825a4aeda\",\n            \"updated\": true,\n            \"type\": \"question\",\n            \"user_id\": \"5799450fb43401c03601f6f5\",\n            \"subject\": \"A F500 negotiating a contract with me seems to be acting in bad faith. What should I do?\",\n            \"body\": \"<p>They issued a LOI and verbally promised contract assignments so I'd walk away from their competitors, but no definitive agreement has come to fruition in over a year. Talks are continuing, but we're past the point 'wait patiently, they're a big company' because there are clear inconsistencies in what they're saying.</p>\\n<p><br></p>\\n<p>If you're response is going to be 'walk away from them,' don't bother, not helpful.</p>\\n<p><br></p>\\n<p>What kind of lawyer would I need to dig into this? What would the potential case be - bad faith negotiation? Gross negligence? What is the professional way to put the F500 on notice about going nuclear if they don't become more transparent?</p>\",\n            \"follow_count\": 5,\n            \"vote_score\": 5,\n            \"user_editable\": true,\n            \"user_following\": false,\n            \"child_updated\": \"2017-12-09T00:45:30+0000\",\n            \"is_anonymous\": true,\n            \"embedded_topics\": [\n                {\n                    \"topic_id\": \"584f9c8eb43401212300432f\",\n                    \"created_at\": \"2013-07-26T15:49:45+0000\",\n                    \"name\": \"Contract negotiation\",\n                    \"item_count\": 0,\n                    \"question_count\": 22,\n                    \"answer_count\": 0,\n                    \"view_count\": 0,\n                    \"follow_count\": 12233,\n                    \"share_count\": 0,\n                    \"url\": \"contract-negotiation\"\n                },\n                {\n                    \"topic_id\": \"584f9c8eb4340121230046f5\",\n                    \"created_at\": \"2014-10-03T00:45:54+0000\",\n                    \"name\": \"Corporate law\",\n                    \"item_count\": 0,\n                    \"question_count\": 15,\n                    \"answer_count\": 0,\n                    \"view_count\": 0,\n                    \"follow_count\": 828,\n                    \"share_count\": 0,\n                    \"url\": \"corporate-law\"\n                }\n            ],\n            \"user_profile_info\": {\n                \"first_name\": \"Ayan\",\n                \"last_name\": \"Roy (as Anonymous)\",\n                \"user_id\": \"5799450fb43401c03601f6f5\",\n                \"premium_flag\": false,\n                \"role\": \"founder\",\n                \"responsiveness\": 98.97,\n                \"city\": {\n                    \"label\": \"New York, New York, US\",\n                    \"name\": \"New York\",\n                    \"region\": \"New York\",\n                    \"region_code\": \"NY\",\n                    \"country\": \"United States\",\n                    \"country_code\": \"US\",\n                    \"id\": \"56cc14c588b042411c0bab51\"\n                },\n                \"areas\": [\n                    \"business-development\"\n                ],\n                \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n                \"avatar\": 0,\n                \"use_avatar\": true,\n                \"url\": \"http://10.50.50.50:8000/profile/ayan-roy\",\n                \"connection_status\": \"not_existing_connection\"\n            },\n            \"url\": \"http://10.50.50.50:8000/discuss/a-f500-negotiating-a-contract-with-me-seems-to-be-acting-in-bad-faith-what-should-i-do\",\n            \"created_at\": \"12/08/2017 17:18:10\",\n            \"updated_at\": \"12/08/2017 18:00:02\",\n            \"answer_count\": 2,\n            \"body_plain\": \"They issued a LOI and verbally promised contract assignments so I'd walk away from their competitors, but no definitive agreement has come to fruition in over a year. Talks are continuing, but we're past the point 'wait patiently, they're a big company' because there are clear inconsistencies in what they're saying.\\n\\nIf you're response is going to be 'walk away from them,' don't bother, not helpful.\\n\\nWhat kind of lawyer would I need to dig into this? What would the potential case be - bad faith negotiation? Gross negligence? What is the professional way to put the F500 on notice about going nuclear if they don't become more transparent?\"\n        },\n        {\n            \"id\": \"5a2ab09acc161ce829d56da2\",\n            \"updated\": false,\n            \"type\": \"answer\",\n            \"user_id\": \"5799446fb43401c036004d5c\",\n            \"subject\": \"How to Get Meetings?\",\n            \"body\": \"<p>https://youtu.be/IQKxs4-PQdY</p>\",\n            \"follow_count\": 0,\n            \"vote_score\": 0,\n            \"user_editable\": true,\n            \"user_following\": false,\n            \"is_anonymous\": false,\n            \"embedded_topics\": [],\n            \"user_profile_info\": {\n                \"first_name\": \"Robert\",\n                \"last_name\": \"DiLoreto\",\n                \"user_id\": \"5799446fb43401c036004d5c\",\n                \"premium_flag\": true,\n                \"influencer_flag\": false,\n                \"role\": \"founder\",\n                \"responsiveness\": 48.78,\n                \"city\": {\n                    \"label\": \"Cambridge, Massachusetts, US\",\n                    \"name\": \"Cambridge\",\n                    \"region\": \"Massachusetts\",\n                    \"region_code\": \"MA\",\n                    \"country\": \"United States\",\n                    \"country_code\": \"US\",\n                    \"id\": \"56cc14c588b042411c0bc277\"\n                },\n                \"areas\": [\n                    \"marketing\",\n                    \"business-development\",\n                    \"sales\"\n                ],\n                \"photo\": \"https://s3.amazonaws.com/cofounderslab-prod-media/user-user_2889.jpg\",\n                \"legacy_photo_url\": \"https://s3.amazonaws.com/cofounderslab-prod-media/user-user_2889.jpg\",\n                \"use_avatar\": false,\n                \"url\": \"http://10.50.50.50:8000/profile/robert-diloreto\",\n                \"headline\": \"Accelerating Innovation into C-Suites of large corporate enterprises...\\\"Special-Ops\\\" role\",\n                \"connection_status\": \"not_existing_connection\"\n            },\n            \"url\": \"http://10.50.50.50:8000/discuss/how-to-get-meetings\",\n            \"created_at\": \"12/08/2017 15:32:42\",\n            \"updated_at\": \"12/08/2017 15:32:42\",\n            \"body_plain\": \"https://youtu.be/IQKxs4-PQdY\"\n        }\n    ],\n    \"meta\": {\n        \"page\": 0,\n        \"page_size\": \"10\",\n        \"result_count\": 895,\n        \"page_last\": 89,\n        \"order_by\": []\n    }\n}"}],"_postman_id":"2d3ac0c7-fdf3-197a-7c73-c5318e4fa28f"},{"name":"Upvote","id":"24a96041-788f-deb7-7abc-0f4abb4382d4","request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/api/v2/discuss/items/{{itemId}}/upvote","urlObject":{"path":["api","v2","discuss","items","{{itemId}}","upvote"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"992823c7-8ac1-4d0c-fcd5-ac79ebad3588","name":"200: Success","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/api/v2/discuss/items/{{itemId}}/upvote"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[],"responseTime":"0","body":"{\n    \"data\": \"\",\n    \"errors\": []\n}"}],"_postman_id":"24a96041-788f-deb7-7abc-0f4abb4382d4"},{"name":"Answer","id":"c764f880-f9d5-ec68-4e54-28ac4ebf0d3b","request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/api/v2/discuss/items/{{itemId}}/answer","description":"<p>Creates an answer in a Item</p>\n<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>body</td>\n<td>string</td>\n<td>true</td>\n<td>Text with the answer</td>\n</tr>\n<tr>\n<td>is_anonymous</td>\n<td>bool</td>\n<td>false</td>\n<td>Set it to true if the user want to be displayed as anonymous</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\">Response</h2>\n<p>Item Object with the Answer just created.</p>\n","urlObject":{"path":["api","v2","discuss","items","{{itemId}}","answer"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"1658cac2-26e2-ea6d-e6bf-3113e0c78a06","name":"200: Success","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/api/v2/discuss/items/{{itemId}}/answers"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[],"responseTime":"0","body":"{\n    \"data\": {\n        \"id\": \"5a4d1f8727987147048b4567\",\n        \"updated\": false,\n        \"type\": \"answer\",\n        \"user_id\": \"57994537b43401c036026583\",\n        \"subject\": \"What is your best advice for first time entrepreneurs?\",\n        \"body\": \"Here is an answer\",\n        \"follow_count\": 0,\n        \"vote_score\": 0,\n        \"user_editable\": true,\n        \"user_following\": false,\n        \"is_anonymous\": 1,\n        \"user_profile_info\": {\n            \"first_name\": \"Cristian\",\n            \"last_name\": \"Gonzalez (as Anonymous)\",\n            \"user_id\": \"57994537b43401c036026583\",\n            \"premium_flag\": true,\n            \"role\": \"founder\",\n            \"responsiveness\": 34.62,\n            \"city\": {\n                \"label\": \"Barcelona, Spain\",\n                \"name\": \"Barcelona\",\n                \"region\": \"Catalunya\",\n                \"region_code\": \"CT\",\n                \"country\": \"Spain\",\n                \"country_code\": \"ES\",\n                \"coordinates\": {\n                    \"latitude\": 41.3888426,\n                    \"longitude\": 2.1590437\n                },\n                \"id\": \"56cc14c488b042411c0b5a28\"\n            },\n            \"areas\": [\n                \"engineering\"\n            ],\n            \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n            \"legacy_photo_url\": \"https://s3.amazonaws.com/cofounderslab-prod-media/user-71946_1441355485.jpg\",\n            \"use_avatar\": false,\n            \"url\": \"http://10.50.50.50:8000/profile/cristian-gonzalez-2\",\n            \"headline\": \"CTO at CoFoundersLab\",\n            \"connection_status\": \"accepted\"\n        },\n        \"url\": \"http://10.50.50.50:8000/discuss/what-is-your-best-advice-for-first-time-entrepreneurs\",\n        \"created_at\": \"01/03/2018 18:23:02\",\n        \"updated_at\": \"01/03/2018 18:23:02\",\n        \"parent_id\": \"584f9e71b434012123054ef4\",\n        \"body_plain\": \"Here is an answer\"\n    },\n    \"errors\": []\n}"}],"_postman_id":"c764f880-f9d5-ec68-4e54-28ac4ebf0d3b"},{"name":"Create Question","id":"2e5c2254-d4af-da99-5a8a-13a3581e574a","request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/api/v2/discuss/items","description":"<p>Creates an answer in a Item</p>\n<h2 id=\"parameters\">Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>subject</td>\n<td>string</td>\n<td>true</td>\n<td>Title of the question</td>\n</tr>\n<tr>\n<td>body</td>\n<td>string</td>\n<td>true</td>\n<td>Text with the question</td>\n</tr>\n<tr>\n<td>is_anonymous</td>\n<td>bool</td>\n<td>false</td>\n<td>Set it to true if the user want to be displayed as anonymous</td>\n</tr>\n<tr>\n<td>topics</td>\n<td>array</td>\n<td>true</td>\n<td>Array of topic id's that will be attached to the questions</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\">Response</h2>\n<p>Item Object with the Question just created.</p>\n","urlObject":{"path":["api","v2","discuss","items"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"1bbb01aa-665d-1a04-4034-7fc6f38fe3d1","name":"200: Success","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/api/v2/discuss/items"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[],"responseTime":"0","body":"{\n    \"data\": {\n        \"id\": \"5a4d1f8727987147048b4567\",\n        \"updated\": false,\n        \"type\": \"answer\",\n        \"user_id\": \"57994537b43401c036026583\",\n        \"subject\": \"What is your best advice for first time entrepreneurs?\",\n        \"body\": \"Here is an answer\",\n        \"follow_count\": 0,\n        \"vote_score\": 0,\n        \"user_editable\": true,\n        \"user_following\": false,\n        \"is_anonymous\": 1,\n        \"user_profile_info\": {\n            \"first_name\": \"Cristian\",\n            \"last_name\": \"Gonzalez (as Anonymous)\",\n            \"user_id\": \"57994537b43401c036026583\",\n            \"premium_flag\": true,\n            \"role\": \"founder\",\n            \"responsiveness\": 34.62,\n            \"city\": {\n                \"label\": \"Barcelona, Spain\",\n                \"name\": \"Barcelona\",\n                \"region\": \"Catalunya\",\n                \"region_code\": \"CT\",\n                \"country\": \"Spain\",\n                \"country_code\": \"ES\",\n                \"coordinates\": {\n                    \"latitude\": 41.3888426,\n                    \"longitude\": 2.1590437\n                },\n                \"id\": \"56cc14c488b042411c0b5a28\"\n            },\n            \"areas\": [\n                \"engineering\"\n            ],\n            \"photo\": \"https://s3.amazonaws.com/cofounderslab-production/static/avatars/avatar0.jpg\",\n            \"legacy_photo_url\": \"https://s3.amazonaws.com/cofounderslab-prod-media/user-71946_1441355485.jpg\",\n            \"use_avatar\": false,\n            \"url\": \"http://10.50.50.50:8000/profile/cristian-gonzalez-2\",\n            \"headline\": \"CTO at CoFoundersLab\",\n            \"connection_status\": \"accepted\"\n        },\n        \"url\": \"http://10.50.50.50:8000/discuss/what-is-your-best-advice-for-first-time-entrepreneurs\",\n        \"created_at\": \"01/03/2018 18:23:02\",\n        \"updated_at\": \"01/03/2018 18:23:02\",\n        \"parent_id\": \"584f9e71b434012123054ef4\",\n        \"body_plain\": \"Here is an answer\"\n    },\n    \"errors\": []\n}"}],"_postman_id":"2e5c2254-d4af-da99-5a8a-13a3581e574a"},{"name":"Downvote","id":"49affd89-5181-a63b-2806-3e7c09ff7e73","request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/api/v2/discuss/items/{{itemId}}/downvote","urlObject":{"path":["api","v2","discuss","items","{{itemId}}","downvote"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"678e1042-3d2f-9d48-4c41-b643bd3cf3e9","name":"200: Success","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/api/v2/discuss/items/{{itemId}}/downvote"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[],"responseTime":"0","body":"{\n    \"data\": \"\",\n    \"errors\": []\n}"}],"_postman_id":"49affd89-5181-a63b-2806-3e7c09ff7e73"}],"id":"67e744a4-f94a-a7ff-fd7e-30f4a52ce50c","description":"<h2 id=\"item--object\">Item  Object</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>id</td>\n<td>String</td>\n<td>Item ID</td>\n</tr>\n<tr>\n<td>updated</td>\n<td>Boolean</td>\n<td>States if the item has been updated</td>\n</tr>\n<tr>\n<td>type</td>\n<td>String</td>\n<td>Item´s type. Possible values: question, answer</td>\n</tr>\n<tr>\n<td>user_id</td>\n<td>String</td>\n<td>Item´s author ID</td>\n</tr>\n<tr>\n<td>subject</td>\n<td>String</td>\n<td>Item´s subject</td>\n</tr>\n<tr>\n<td>body</td>\n<td>String</td>\n<td>Item´s body</td>\n</tr>\n<tr>\n<td>follow_count</td>\n<td>Integer</td>\n<td>Number of followers. Only for questions</td>\n</tr>\n<tr>\n<td>vote_score</td>\n<td>Integer</td>\n<td>Number of votes received by the question</td>\n</tr>\n<tr>\n<td>user_vote_score</td>\n<td>Integer</td>\n<td>Votes given by the user</td>\n</tr>\n<tr>\n<td>user_editable</td>\n<td>Boolean</td>\n<td>Votes given by the user</td>\n</tr>\n<tr>\n<td>user_following</td>\n<td>Boolean</td>\n<td>States if the user is following the item</td>\n</tr>\n<tr>\n<td>child_updated</td>\n<td>DateTime</td>\n<td>States when the item children (answers) has been updated</td>\n</tr>\n<tr>\n<td>is_anonymous</td>\n<td>Boolean</td>\n<td>States if the item was created as Anonymous</td>\n</tr>\n<tr>\n<td>embedded_topics\"</td>\n<td>Array</td>\n<td>Array of Topic objects assigned to the item</td>\n</tr>\n<tr>\n<td>user_profile_info</td>\n<td>Profile Object</td>\n<td>Profile info of the author of the item</td>\n</tr>\n<tr>\n<td>url</td>\n<td>String</td>\n<td>Discuss url</td>\n</tr>\n<tr>\n<td>created_at</td>\n<td>DateTime</td>\n<td>Date when the Item object was created</td>\n</tr>\n<tr>\n<td>updated_at</td>\n<td>DateTime</td>\n<td>Date when the Item object was updated</td>\n</tr>\n<tr>\n<td>answer_count</td>\n<td>Integer</td>\n<td>Number of answers that the Item has received. Only for Questions</td>\n</tr>\n</tbody>\n</table>\n</div><pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">{\n     \"id\":\"584f9e71b434012123054f06\",\n         \"updated\":false,\n         \"type\":\"question\",\n         \"user_id\":\"57994539b43401c036026872\",\n         \"subject\":\"Where do most entrepreneurs get their ideas from?\",\n         \"body\":\"I understand that it is all about execution but the idea is still important. Looking forward to hearing your perspective.\",\n         \"follow_count\":24,\n         \"vote_score\":24,\n         \"user_vote_score\":0,\n         \"user_editable\":true,\n         \"user_following\":true,\n         \"child_updated\":\"2017-04-21T04:05:49+0000\",\n         \"is_anonymous\":false,\n         \"embedded_topics\":[  \n            {  \n               \"topic_id\":\"584f9c8eb4340121230044db\",\n               \"created_at\":\"2014-03-01T16:51:51+0000\",\n               \"name\":\"Ideation\",\n               \"description\":null,\n               \"status\":null,\n               \"item_count\":0,\n               \"question_count\":11,\n               \"answer_count\":0,\n               \"view_count\":0,\n               \"follow_count\":434,\n               \"share_count\":0,\n               \"related_topics\":null,\n               \"image\":null,\n               \"image_filename\":null,\n               \"url\":\"ideation\"\n            },\n            {  \n               \"topic_id\":\"584f9c8eb4340121230044b5\",\n               \"created_at\":\"2014-02-14T17:48:22+0000\",\n               \"name\":\"Idea validation\",\n               \"description\":null,\n               \"status\":null,\n               \"item_count\":0,\n               \"question_count\":20,\n               \"answer_count\":0,\n               \"view_count\":0,\n               \"follow_count\":257,\n               \"share_count\":0,\n               \"related_topics\":null,\n               \"image\":null,\n               \"image_filename\":null,\n               \"url\":\"idea-validation\"\n            }\n         ],\n         \"user_profile_info\":{  \n            \"first_name\":\"Cristian\",\n            \"last_name\":\"Gonzalez\",\n            \"user_id\":\"57994539b43401c036026872\",\n            \"premium_flag\":false,\n            \"influencer_flag\":false,\n            \"role\":\"founder\",\n            \"responsiveness\":100,\n            \"city\":{  \n               \"label\":\"Barcelona, Spain\",\n               \"name\":\"Barcelona\",\n               \"region\":\"Catalunya\",\n               \"region_code\":\"CT\",\n               \"country\":\"Spain\",\n               \"country_code\":\"ES\",\n               \"id\":\"56cc14c488b042411c0b5a28\"\n            },\n            \"areas\":[  \n               \"product-management\",\n               \"engineering\"\n            ],\n            \"photo\":\"https:\\/\\/s3.amazonaws.com\\/cofounderslab-production\\/static\\/avatars\\/avatar2.jpg\",\n            \"legacy_photo_url\":null,\n            \"avatar\":2,\n            \"use_avatar\":true,\n            \"url\":\"http:\\/\\/10.50.50.50:8000\\/profile\\/cristian-gonzalez-3\",\n            \"headline\":null,\n            \"connection_status\":\"accepted\"\n         },\n         \"url\":\"http:\\/\\/10.50.50.50:8000\\/discuss\\/where-do-most-entrepreneurs-get-their-ideas-from\",\n         \"created_at\":\"08\\/31\\/2016 01:27:21\",\n         \"updated_at\":\"08\\/31\\/2016 01:27:21\",\n         \"answer_count\":13\n      }\n</code></pre>\n","event":[{"listen":"prerequest","script":{"id":"0335df4c-9cfd-485c-8751-14d5343dccd4","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"df77185e-0f27-490f-a90c-72633511f2ee","type":"text/javascript","exec":[""]}}],"_postman_id":"67e744a4-f94a-a7ff-fd7e-30f4a52ce50c"},{"name":"Follow","item":[{"name":"Follow Question","id":"b586abe4-e59c-9967-c406-f385baa294b8","request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/api/v2/follow/question/{{itemId}}","urlObject":{"path":["api","v2","follow","question","{{itemId}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"776a04ad-0a8a-1ef0-c16c-e61807371175","name":"200: Success","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/api/v2/discuss/items/{{itemId}}/upvote"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[],"responseTime":"0","body":"{\n    \"data\": \"\",\n    \"errors\": []\n}"}],"_postman_id":"b586abe4-e59c-9967-c406-f385baa294b8"},{"name":"Unfollow question","id":"47b527b5-bbf2-e9ee-a304-3461f3154bfa","request":{"method":"DELETE","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/api/v2/follow/question/{{itemId}}","urlObject":{"path":["api","v2","follow","question","{{itemId}}"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"d74581c4-7968-c07d-52da-4c342b3610dc","name":"200: Success","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/api/v2/discuss/items/{{itemId}}/upvote"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[],"responseTime":"0","body":"{\n    \"data\": \"\",\n    \"errors\": []\n}"}],"_postman_id":"47b527b5-bbf2-e9ee-a304-3461f3154bfa"}],"id":"703b7b5f-1b83-76fb-4ca7-8a4e77f0f7d6","_postman_id":"703b7b5f-1b83-76fb-4ca7-8a4e77f0f7d6","description":""},{"name":"Promos","item":[{"name":"List","id":"496de31a-a530-dfae-3900-bcccdec8cc4d","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/api/v2/discuss/items","description":"<p>Gets a list of items based of the parameters selected through query parameters.</p>\n<h2 id=\"query-parameters\">Query Parameters</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>type</td>\n<td>string</td>\n<td>false</td>\n<td>Possible values: question, answer</td>\n</tr>\n<tr>\n<td>mine</td>\n<td>boolean</td>\n<td>false</td>\n<td>If true will only return questions authored by the logged in user.</td>\n</tr>\n<tr>\n<td>follow</td>\n<td>boolean</td>\n<td>false</td>\n<td>If true will only return questions followed by the logged in user.</td>\n</tr>\n<tr>\n<td>page</td>\n<td>integer</td>\n<td>false</td>\n<td>Number of the page</td>\n</tr>\n<tr>\n<td>page_size</td>\n<td>integer</td>\n<td>false</td>\n<td>Size of the page</td>\n</tr>\n<tr>\n<td>sort</td>\n<td>string</td>\n<td>false</td>\n<td>Possible values: -createdAt</td>\n</tr>\n<tr>\n<td>max_answers</td>\n<td>integer</td>\n<td>false</td>\n<td>Max number of answers that the item can have</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"response\">Response</h2>\n<p>Array with:</p>\n<ul>\n<li>'list': Array of Item Objects (with paginations).</li>\n<li>'ads' : Array of Promo Objects.</li>\n</ul>\n","urlObject":{"path":["api","v2","discuss","items"],"host":["{{host}}"],"query":[],"variable":[]}},"response":[{"id":"a076a349-9d69-3a4d-a752-c48caf7e0950","name":"Promos","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{host}}/api/v2/promos"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":"0","body":"{\n    \"data\": [\n        {\n            \"version_id\": \"59aa848acf161c9721fba189\",\n            \"type\": \"external\",\n            \"title\": \"Launch Your Website with Squarespace\",\n            \"body\": \"Don’t wait for someone to hand you your next career or passion project, take control of your own ambitions and make it yourself. Get started with a Squarespace website today and use code \\\"COFOUNDER\\\" for 10% your first purchase.\",\n            \"call_to_action\": \"Learn more\",\n            \"url\": \"https://ad.doubleclick.net/ddm/trackclk/N718679.3108765COFOUNDERSLAB/B20258164.208129759;dc_trk_aid=407881486;dc_trk_cid=94575254;dc_lat=;dc_rdid=;tag_for_child_directed_treatment=\",\n            \"version_tracking_id\": \"title\",\n            \"campaign_tracking_id\": \"squarespace\",\n            \"promoter\": \"Squarespace\"\n        },\n        {\n            \"version_id\": \"59afa7f948fde2d334c0e795\",\n            \"type\": \"external\",\n            \"title\": \"Accepting payments for your business?\",\n            \"body\": \"Ready to get paid? Don’t use a payment processor that doesn’t work as hard as you do. Ask these 10 questions before you commit.\",\n            \"call_to_action\": \"Get the 10 Questions ebook\",\n            \"url\": \"http://bit.ly/2imEPZ6\",\n            \"version_tracking_id\": \"title\",\n            \"campaign_tracking_id\": \"bluesnap\",\n            \"promoter\": \"BlueSnap\"\n        }\n    ],\n    \"errors\": []\n}"}],"_postman_id":"496de31a-a530-dfae-3900-bcccdec8cc4d"}],"id":"d4d7b2ba-5d79-c38d-1f91-1b1e6856a8af","description":"<h2 id=\"promo--object\">Promo  Object</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>version_id</td>\n<td>String</td>\n<td>ID of the ad.</td>\n</tr>\n<tr>\n<td>type</td>\n<td>String</td>\n<td>Type of the promo. It can be 'external' o 'internal'</td>\n</tr>\n<tr>\n<td>title</td>\n<td>String</td>\n<td>Title for the ad</td>\n</tr>\n<tr>\n<td>body</td>\n<td>String</td>\n<td>Body text for the ad.</td>\n</tr>\n<tr>\n<td>call_to_action</td>\n<td>String</td>\n<td>Text to be displayed in the ad button.</td>\n</tr>\n<tr>\n<td>url</td>\n<td>String</td>\n<td>URL that the user is sent if clicks the ad.</td>\n</tr>\n<tr>\n<td>version_tracking_id</td>\n<td>String</td>\n<td>Id for tracking the campaign version on Kissmetrics</td>\n</tr>\n<tr>\n<td>campaign_tracking_id</td>\n<td>String</td>\n<td>Id for tracking the campaign on Kissmetrics</td>\n</tr>\n<tr>\n<td>promoter</td>\n<td>String</td>\n<td>Name of the ad promoter.</td>\n</tr>\n</tbody>\n</table>\n</div><pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">            {\n                \"version_id\": \"59aa848acf161c9731fbc178\",\n                \"type\": \"external\",\n                \"title\": \"Execute and manage your startup with this must-have tool\",\n                \"body\": \"To create a successful business you’ll have to build a roadmap, define your product, create a marketing plan, raise money, hire talented people, etc. Dapulse helps you make those processes easier. Receive a 20% discount with promo code FoundingMadeEasy.\",\n                \"call_to_action\": \"Learn more\",\n                \"url\": \"https://dapulse.com/landings/not-project-management-vid/?utm_source=Partner&amp;utm_medium=discussion&amp;utm_campaign=CoFoundersLab\",\n                \"version_tracking_id\": \"title\",\n                \"campaign_tracking_id\": \"dapulse\",\n                \"promoter\": \"Dapulse\"\n            }\n</code></pre>\n","event":[{"listen":"prerequest","script":{"id":"a269eb1e-8f77-4944-9629-596a1962ae33","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"582fb10c-7f8e-483c-9eb5-e7ab01decafb","type":"text/javascript","exec":[""]}}],"_postman_id":"d4d7b2ba-5d79-c38d-1f91-1b1e6856a8af"}]}